guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 8bd9ee54d94c03706c5577b6c6d547e4e3439d1c
Author: Aaron Covrig <[email protected]>
AuthorDate: Wed Mar 4 23:43:13 2026 -0500
gnu: Add ruby-hoe-git2.
* gnu/packages/ruby-xyz.scm (ruby-hoe-git2): New variable.
Change-Id: I9aaa37d5b2847a75b74dddda802aec77bae05a48
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/ruby-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/ruby-xyz.scm b/gnu/packages/ruby-xyz.scm
index a9fee73d53..0e11e0b5ff 100644
--- a/gnu/packages/ruby-xyz.scm
+++ b/gnu/packages/ruby-xyz.scm
@@ -11972,6 +11972,31 @@ or JRuby.")
(home-page "https://puma.io/")
(license license:expat)))
+(define-public ruby-hoe-git2
+ (package
+ (name "ruby-hoe-git2")
+ (version "1.8.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/halostatue/hoe-git2")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "15gpidgba1xx038srgnnh0dgfjpdq00vhmkl7kmnxl7awf9qldpx"))))
+ (build-system ruby-build-system)
+ (inputs (list git-minimal))
+ (propagated-inputs
+ (list ruby-hoe-3))
+ (synopsis "Hoe plugins for tighter Git integration")
+ (description
+ "This package provides a set of Hoe plugins for tighter Git integration.
+It provides tasks to automate release tagging and pushing and changelog
+generation.")
+ (home-page "https://github.com/halostatue/hoe-git2")
+ (license license:expat)))
+
(define-public ruby-hoe-git
(package
(name "ruby-hoe-git")