gnu: emacs-transient: Update to 0.3.4.
* gnu/packages/emacs-xyz.scm (emacs-transient): Update to 0.3.4. [arguments]<#:phases>: Don’t return #t, this will be redundant once core-updates gets merged. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
a5c9843cfe
commit
bc251bc7e2
1 changed files with 4 additions and 6 deletions
|
@ -22921,7 +22921,7 @@ as Emacs Lisp.")
|
||||||
(define-public emacs-transient
|
(define-public emacs-transient
|
||||||
(package
|
(package
|
||||||
(name "emacs-transient")
|
(name "emacs-transient")
|
||||||
(version "0.3.2")
|
(version "0.3.4")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -22930,7 +22930,7 @@ as Emacs Lisp.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1766hdqzg95k62nqhadfv502mpnjlx1l59ppqmc6r0las82dc6a8"))))
|
"16z0j69sk7k51sd1vri3y2v0xjj0w7wpf5mmwnsxp8y6d3m0yjbv"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;no test suite
|
`(#:tests? #f ;no test suite
|
||||||
|
@ -22941,12 +22941,10 @@ as Emacs Lisp.")
|
||||||
(invoke "make" "info")
|
(invoke "make" "info")
|
||||||
;; Move the info file to lisp so that it gets installed by the
|
;; Move the info file to lisp so that it gets installed by the
|
||||||
;; emacs-build-system.
|
;; emacs-build-system.
|
||||||
(rename-file "docs/transient.info" "lisp/transient.info")
|
(rename-file "docs/transient.info" "lisp/transient.info")))
|
||||||
#t))
|
|
||||||
(add-after 'build-info-manual 'enter-lisp-directory
|
(add-after 'build-info-manual 'enter-lisp-directory
|
||||||
(lambda _
|
(lambda _
|
||||||
(chdir "lisp")
|
(chdir "lisp"))))))
|
||||||
#t)))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("texinfo" ,texinfo)))
|
`(("texinfo" ,texinfo)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
|
Reference in a new issue