mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs-ghub: Update to 4.3.0.
* gnu/packages/emacs-xyz.scm (emacs-ghub): Update to 4.3.0. Change-Id: I5aed2f53f9de8b116148b69cf572a75135be7cab Signed-off-by: Ian Eure <ian@retrospec.tv>
This commit is contained in:
parent
5b528fd307
commit
01ddd47a0b
1 changed files with 10 additions and 17 deletions
|
@ -2761,7 +2761,7 @@ organizing remote Go repository clones.")
|
||||||
(define-public emacs-ghub
|
(define-public emacs-ghub
|
||||||
(package
|
(package
|
||||||
(name "emacs-ghub")
|
(name "emacs-ghub")
|
||||||
(version "4.2.2")
|
(version "4.3.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -2770,33 +2770,26 @@ organizing remote Go repository clones.")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1bd8lnhv50brfxqwyk7jmgrig0cahkam7ggwaifaz8vb8m456yar"))))
|
(base32 "00xc8957j700zfjcazbp2mcwk6gj8jyrw017864sw47j50p83wy7"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
#:tests? #f ; there are no tests
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-before 'install 'make-info
|
(add-after 'unpack 'build-info-manual
|
||||||
(lambda _
|
(lambda _
|
||||||
(invoke "make" "info")))
|
(invoke "make" "info")
|
||||||
(add-after 'make-info 'enter-lisp-directory
|
;; Move the info file to lisp so that it gets installed by the
|
||||||
|
;; emacs-build-system.
|
||||||
|
(rename-file "docs/ghub.info" "lisp/ghub.info")))
|
||||||
|
(add-after 'build-info-manual 'chdir-lisp
|
||||||
(lambda _
|
(lambda _
|
||||||
(chdir "lisp")))
|
(chdir "lisp"))))))
|
||||||
(add-after 'expand-load-path 'add-el-dir-to-emacs-load-path
|
|
||||||
(lambda _
|
|
||||||
(setenv "EMACSLOADPATH"
|
|
||||||
(string-append (getcwd)
|
|
||||||
"/lisp:"
|
|
||||||
(getenv "EMACSLOADPATH")))))
|
|
||||||
(add-after 'install 'install-info
|
|
||||||
(lambda _
|
|
||||||
(let ((info (string-append #$output "/share/info")))
|
|
||||||
(install-file "../docs/ghub.info" info)))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list texinfo))
|
(list texinfo))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list emacs-compat
|
(list emacs-compat
|
||||||
emacs-dash
|
|
||||||
emacs-llama
|
emacs-llama
|
||||||
emacs-let-alist
|
emacs-let-alist
|
||||||
emacs-treepy))
|
emacs-treepy))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue