[bug#78646,emacs-team] gnu: emacs-show-font: Update to 0.3.0.
Commit Message
* gnu/packages/emacs-xyz.scm (emacs-show-font): Update to 0.3.0.
[arguments] <#:phases> {makeinfo}: New phase.
Change-Id: If0bdc71417e79892cb182b1364bb4f5eb050a17e
---
gnu/packages/emacs-xyz.scm | 17 +++++++++++++++--
1 file changed, 15 insertions(+), 2 deletions(-)
base-commit: e3b189854c957c9aa2a68d903d268fcf984d7c23
@@ -1481,7 +1481,7 @@ (define-public emacs-pug-mode
(define-public emacs-show-font
(package
(name "emacs-show-font")
- (version "0.2.0")
+ (version "0.3.0")
(source
(origin
(method git-fetch)
@@ -1490,8 +1490,21 @@ (define-public emacs-show-font
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "0bvd1jw5x623zh0ga8hvq7mdmijlvlwk478adlvg1k1a6s371wss"))))
+ (base32 "0nn7yqc0zsl0kxk17k0hd9dxd65lslj24fd83fych1jla4hd93jc"))))
(build-system emacs-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'install 'makeinfo
+ (lambda _
+ (invoke "emacs"
+ "--batch"
+ "--eval=(require 'ox-texinfo)"
+ "--eval=(find-file \"README.org\")"
+ "--eval=(org-texinfo-export-to-info)"))))))
+ (native-inputs
+ (list texinfo))
(home-page "https://github.com/protesilaos/show-font")
(synopsis "Show font features in a buffer")
(description