gnu: emacs-beframe: Update to 1.4.0.

* gnu/packages/emacs-xyz.scm (emacs-beframe): Update to 1.4.0.
[arguments]: Set #:tests? to #f.
<#:phases>: Run makeinfo phase before check; remove install-file.

Change-Id: I1dd1eff120355a80b4e8dd23af0a41b1c55d8ad0
Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
Cayetano Santos 2025-08-04 14:05:37 +02:00 committed by jgart
parent 00570227b7
commit c47707ddb6
No known key found for this signature in database
GPG key ID: A52AA2B477B6DD35

View file

@ -20660,7 +20660,7 @@ using a convenient notation.")
(let ((commit "c3f4583b0767e7f8c38c83ed29af40af8ba3bdfa")) ;version bump
(package
(name "emacs-beframe")
(version "1.3.0")
(version "1.4.0")
(source (origin
(method git-fetch)
(uri (git-reference
@ -20673,17 +20673,16 @@ using a convenient notation.")
(build-system emacs-build-system)
(arguments
(list
#:tests? #f ;no tests
#:phases
#~(modify-phases %standard-phases
(add-after 'install 'makeinfo
(add-before 'install 'makeinfo
(lambda _
(invoke "emacs"
"--batch"
"--eval=(require 'ox-texinfo)"
"--eval=(find-file \"README.org\")"
"--eval=(org-texinfo-export-to-info)")
(install-file "beframe.info"
(string-append #$output "/share/info")))))))
"--eval=(org-texinfo-export-to-info)"))))))
(native-inputs
(list texinfo))
(home-page "https://protesilaos.com/emacs/beframe")