diff options
author | Cayetano Santos <csantosb@inventati.org> | 2025-04-03 14:06:49 +0200 |
---|---|---|
committer | Ian Eure <ian@retrospec.tv> | 2025-04-05 11:53:09 -0700 |
commit | 86e8c179da819c921c40f0107f0ef5296359c0a1 (patch) | |
tree | 8dcd4067f16fa9f95641fa908ada1f4cbdb3aeca | |
parent | f7e0bf9e5776244fe8b90fff0afbc34565e50b2e (diff) | |
download | guix-86e8c179da819c921c40f0107f0ef5296359c0a1.tar.gz guix-86e8c179da819c921c40f0107f0ef5296359c0a1.zip |
gnu: emacs-forge: Update to 0.5.0.
* gnu/packages/emacs-xyz.scm (emacs-forge): Update to 0.5.0.
Change-Id: I188508fd234b2b3081aed11026b4f2a83588febb
Signed-off-by: Ian Eure <ian@retrospec.tv>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 79 |
1 files changed, 40 insertions, 39 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 3c799e2578..5f8f5f2458 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -34363,46 +34363,47 @@ commands (a prefix and a suffix) we prefer to call it just a \"transient\".") (define-public emacs-forge (package - (name "emacs-forge") - (version "0.4.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/magit/forge") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ps1xwpxhb9vn6bf0wxy8bdba72f973spys0xw1k686swczrb225")))) - (build-system emacs-build-system) - (arguments - `(#:tests? #f ;no tests - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'build-info-manual - (lambda _ - (invoke "make" "info") - ;; Move the info file to lisp so that it gets installed by the - ;; emacs-build-system. - (rename-file "docs/forge.info" "lisp/forge.info"))) - (add-after 'build-info-manual 'chdir-lisp - (lambda _ - (chdir "lisp")))))) - (native-inputs - (list texinfo)) - (propagated-inputs - (list emacs-closql - emacs-emacsql - emacs-ghub - emacs-let-alist - emacs-magit - emacs-markdown-mode - emacs-yaml)) - (home-page "https://github.com/magit/forge/") - (synopsis "Access Git forges from Magit") - (description "Work with Git forges, such as Github and Gitlab, from the + (name "emacs-forge") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/magit/forge") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02ks8zc3nqqqqfq2picf0pxsw7wygb5hv9abnva1cv44x091w6zw")))) + (build-system emacs-build-system) + (arguments + `(#:tests? #f ;no tests + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'build-info-manual + (lambda _ + (invoke "make" "info") + ;; Move the info file to lisp so that it gets installed by the + ;; emacs-build-system. + (rename-file "docs/forge.info" "lisp/forge.info"))) + (add-after 'build-info-manual 'chdir-lisp + (lambda _ + (chdir "lisp")))))) + (native-inputs + (list texinfo)) + (propagated-inputs + (list emacs-closql + emacs-emacsql + emacs-ghub + emacs-llama + emacs-let-alist + emacs-magit + emacs-markdown-mode + emacs-yaml)) + (home-page "https://github.com/magit/forge/") + (synopsis "Access Git forges from Magit") + (description "Work with Git forges, such as Github and Gitlab, from the comfort of Magit and the rest of Emacs.") - (license license:gpl3+))) + (license license:gpl3+))) (define-public emacs-matcha (let ((commit "dc4a940b3360aadeb2d9eaab7bd0c85e1e85ab76")) |