summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnderson Torres <anderson.torres.8519@gmail.com>2026-07-27 19:10:32 -0300
committerLiliana Marie Prikler <liliana.prikler@gmail.com>2026-08-06 18:17:32 +0200
commit9331c208d5b2dca0e73e1d7a18119794309787c3 (patch)
tree9d0f74c1613fa2daf659a028021b91c16a77e536
parentd650c7d229333a01e318f807995c5606e2a9c8ef (diff)
gnu: Add emacs-git-bug.
* gnu/packages/emacs-xyz.scm (emacs-git-bug): New variable. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
-rw-r--r--gnu/packages/emacs-xyz.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a612583d5c0..55840a5124f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -27283,6 +27283,33 @@ created by @code{git format-patch}, from @code{magit}, @code{dired} and
27283@code{ibuffer} buffers.") 27283@code{ibuffer} buffers.")
27284 (license license:gpl3+))) 27284 (license license:gpl3+)))
27285 27285
27286(define-public emacs-git-bug
27287 ;; No public release. Version string taken from source code.
27288 (let ((commit "e5ad432e9e0441a1be81bb93ed80ba57a5408023")
27289 (revision "1"))
27290 (package
27291 (name "emacs-git-bug")
27292 (version (git-version "1.0.0" revision commit))
27293 (source
27294 (origin
27295 (method git-fetch)
27296 (uri (git-reference
27297 (url "https://github.com/WillForan/emacs-git-bug")
27298 (commit commit)))
27299 (file-name (git-file-name name version))
27300 (sha256
27301 (base32 "1825h2bgb2yi81calq1v91dv8qchhadyzshphcvrz91pwv8ib28h"))))
27302 (build-system emacs-build-system)
27303 (arguments
27304 (list
27305 #:tests? #f)) ; No tests.
27306 (home-page "https://github.com/WillForan/emacs-git-bug")
27307 (synopsis "Minimal interface to @code{git-bug}")
27308 (description
27309 "This package provides a @code{completing-read} menu to match existing
27310bugs and another menu to act on a bug.")
27311 (license license:gpl3+))))
27312
27286(define-public emacs-git-email 27313(define-public emacs-git-email
27287 (package 27314 (package
27288 (name "emacs-git-email") 27315 (name "emacs-git-email")