summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorCayetano Santos <csantosb@inventati.org>2026-04-07 12:22:29 +0200
committerCayetano Santos <csantosb@inventati.org>2026-04-07 12:22:56 +0200
commit71ef4a05ad795c3ed97ec933588152a2b363f93c (patch)
tree86fef177ed3f56eb8cc5f5e8c5b66f7659d1296f /gnu
parent7410c79a1cd8bda6564ce062a94d336082f8ba24 (diff)
gnu: emacs-greader: Update to 0.19.0.
* gnu/packages/emacs-xyz.scm (emacs-greader): Update to 0.19.0. [arguments]: Add ’make-info #:phase. [native-inputs]: Add texinfo. Change-Id: I50e4dde1b983396dbc1f8ddc06461e556cfa8fcf
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/emacs-xyz.scm51
1 files changed, 28 insertions, 23 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index e8babb127de..afd9c7e0c5c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -9435,35 +9435,40 @@ column by drawing a thin line down the length of the editing window.")
(license license:gpl3+)))
(define-public emacs-greader
- (let ((commit "b25974aeae49f11b91bb78d94ab51913fdfcdc05")) ;version bump
- (package
- (name "emacs-greader")
- (version "0.13.1")
- (source
- (origin
- (uri (git-reference
- (url "https://gitlab.com/michelangelo-rodriguez/greader")
- (commit commit)))
- (method git-fetch)
- (file-name (git-file-name name version))
- (sha256
- (base32 "1qkszb4yrfnzb2rqkf6vmzca53w68p78zb58frcxslxn7s5l7ih1"))))
- (build-system emacs-build-system)
- (arguments
- (list #:tests? #f)) ;no tests
- (inputs (list emacs-compat espeak-ng))
- (home-page "https://gitlab.com/michelangelo-rodriguez/greader")
- (synopsis
- "Gnamù Reader, or Greader, sends buffer contents to a speech engine")
- (description
- "Greader is a module that sends any Emacs buffer to a @acronym{TTS,
+ (package
+ (name "emacs-greader")
+ (version "0.19.0")
+ (source
+ (origin
+ (uri (git-reference
+ (url "https://gitlab.com/michelangelo-rodriguez/greader")
+ (commit (string-append "v" version))))
+ (method git-fetch)
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "08c4i5qbr0ndbbps6y5kpp0lzfmxnwifrxssqkd9qdzj068k69k3"))))
+ (build-system emacs-build-system)
+ (arguments
+ (list #:tests? #f ;no tests
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'make-info
+ (lambda _
+ (invoke "makeinfo" "--no-split" "greader.texi"))))))
+ (inputs (list emacs-compat espeak-ng))
+ (native-inputs (list texinfo))
+ (home-page "https://gitlab.com/michelangelo-rodriguez/greader")
+ (synopsis
+ "Gnamù Reader, or Greader, sends buffer contents to a speech engine")
+ (description
+ "Greader is a module that sends any Emacs buffer to a @acronym{TTS,
Text To Speech} engine, such as Espeak-NG or Speech Dispatcher.
The mode supports timer reading, automatic scrolling of buffers in modes like
Info mode, and repeating reading of regions or the whole buffer. It also
includes a feature to facilitate the compilation of Espeak-NG
pronunciations.")
- (license license:gpl3+))))
+ (license license:gpl3+)))
(define-public emacs-grep-a-lot
(package