guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 8121cdd1aa001d93202cbdba5a4a8304421a2dde
Author: Yuval Langer <[email protected]>
AuthorDate: Sat Jul 19 13:18:15 2025 +0300
gnu: emacs-greader: Update to 0.12.7.
* gnu/packages/emacs-xyz.scm (emacs-greader): Update to 0.12.7.
[arguments]<#:phases>: Remove.
<#:tests>: Set to #f.
[inputs]: Add emacs-compat.
[description]: Use two spaces between sentences.
Change-Id: Ibc7a42674ea51d861aee62ec1d5b6996fa3322a9
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/emacs-xyz.scm | 22 ++++++++--------------
1 file changed, 8 insertions(+), 14 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 86ab5354f6..81779e7ff2 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8490,29 +8490,23 @@ column by drawing a thin line down the length of the
editing window.")
(license license:gpl3+)))
(define-public emacs-greader
- (let ((commit "d58c1ee051afe384e23455b7c8b72ee1eae4850f")) ;version bump
+ (let ((commit "07266f027f9e3d4b690142f525b5bbde2cb4b19e")) ;version bump
(package
(name "emacs-greader")
- (version "0.12.5")
+ (version "0.12.7")
(source
(origin
(uri (git-reference
- (url "https://gitlab.com/michelangelo-rodriguez/greader")
- (commit commit)))
+ (url "https://gitlab.com/michelangelo-rodriguez/greader")
+ (commit commit)))
(method git-fetch)
(file-name (git-file-name name version))
(sha256
- (base32 "1wh9xbz4az4b90m2r2ffmrvwlv2ig75bxycmkqghaz4hhx2gkvaz"))))
+ (base32 "1qg9a3msnh95rj4jmih2j48r8dsisiqd8nlrj1qf3mfl4xr1kb7c"))))
(build-system emacs-build-system)
(arguments
- (list
- #:phases #~(modify-phases %standard-phases
- (add-after 'unpack 'add-requires
- (lambda _
- (substitute* "greader-dict.el"
- ((";;; Code:")
- ";;; Code:\n(require 'greader)\n")))))))
- (inputs (list espeak-ng))
+ (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")
@@ -8521,7 +8515,7 @@ column by drawing a thin line down the length of the
editing window.")
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
+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+))))