[bug#77608] gnu: emacs-cape: Update to 2.0.
Commit Message
* gnu/packages/emacs-xyz.scm (emacs-cape): Update to 2.0.
[arguments]<#:phases>: No need to install info file explicitely in makeinfo.
Change-Id: I46abd7feb31ded4acc5769b1288393cb4f4f32d4
---
gnu/packages/emacs-xyz.scm | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
base-commit: 6408ad2464dc778a609ffcfb29e2f6026bc4f27e
Comments
On Mon, 07 Apr 2025 20:22:30 +0800,
Cayetano Santos wrote:
>
> * gnu/packages/emacs-xyz.scm (emacs-cape): Update to 2.0.
>
> [arguments]<#:phases>: No need to install info file explicitely in makeinfo.
>
> Change-Id: I46abd7feb31ded4acc5769b1288393cb4f4f32d4
> ---
> gnu/packages/emacs-xyz.scm | 10 ++++------
> 1 file changed, 4 insertions(+), 6 deletions(-)
Applied as d052452a7f51aa83032947745467d4be1bf33f13, thanks!
@@ -5690,7 +5690,7 @@ (define-public emacs-corfu-candidate-overlay
(define-public emacs-cape
(package
(name "emacs-cape")
- (version "1.9")
+ (version "2.0")
(source
(origin
(method git-fetch)
@@ -5699,21 +5699,19 @@ (define-public emacs-cape
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "0pcgxv011z0gl0g38yh2dr09sx17pwpbvydz2dzvm730k9lbyikh"))))
+ (base32 "0wm0y982zrfzzbdizpvr39c55bhp9y7l7w1sp8ps1b4ijbmgd0r9"))))
(build-system emacs-build-system)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
- (add-after 'install 'makeinfo
+ (add-after 'unpack 'makeinfo
(lambda _
(invoke "emacs"
"--batch"
"--eval=(require 'ox-texinfo)"
"--eval=(find-file \"README.org\")"
- "--eval=(org-texinfo-export-to-info)")
- (install-file "cape.info"
- (string-append #$output "/share/info")))))))
+ "--eval=(org-texinfo-export-to-info)"))))))
(native-inputs (list texinfo))
(propagated-inputs (list emacs-compat))
(home-page "https://github.com/minad/cape")