mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs-with-editor: Update to 3.1.0.
* gnu/packages/emacs-xyz.scm (emacs-with-editor): Update to 3.1.0. [arguments]<#:phases>: Add phases to mirror upstream directory layout modification.
This commit is contained in:
parent
a655d731e2
commit
66f86ebb74
1 changed files with 9 additions and 4 deletions
|
@ -674,7 +674,7 @@ configuration files, such as @file{.gitattributes}, @file{.gitignore}, and
|
||||||
(define-public emacs-with-editor
|
(define-public emacs-with-editor
|
||||||
(package
|
(package
|
||||||
(name "emacs-with-editor")
|
(name "emacs-with-editor")
|
||||||
(version "3.0.5")
|
(version "3.1.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -683,15 +683,20 @@ configuration files, such as @file{.gitattributes}, @file{.gitignore}, and
|
||||||
(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 "1pynm4ng4rki2b2ka5dz01p66ygghk69mldsfbxs81d52jqfnx8f"))))
|
(base32 "0m4ckp2ljnkws0bhg1wxlhqdln8kq33qg00qmhhik8ihh02sywnl"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'install 'enter-lisp-directory
|
||||||
|
(lambda _
|
||||||
|
(chdir "lisp")))
|
||||||
(add-before 'install 'make-info
|
(add-before 'install 'make-info
|
||||||
(lambda _
|
(lambda _
|
||||||
(invoke "makeinfo" "--no-split"
|
(with-directory-excursion "../docs"
|
||||||
"-o" "with-editor.info" "with-editor.texi"))))))
|
(invoke "makeinfo" "--no-split"
|
||||||
|
"-o" "with-editor.info" "with-editor.texi")
|
||||||
|
(install-file "with-editor.info" "../lisp")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list texinfo))
|
(list texinfo))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue