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 <andreas@enge.fr>
This commit is contained in:
Yuval Langer 2025-07-19 13:18:15 +03:00 committed by Andreas Enge
parent c8ed1cd30e
commit 8121cdd1aa
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -8490,29 +8490,23 @@ column by drawing a thin line down the length of the editing window.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-greader (define-public emacs-greader
(let ((commit "d58c1ee051afe384e23455b7c8b72ee1eae4850f")) ;version bump (let ((commit "07266f027f9e3d4b690142f525b5bbde2cb4b19e")) ;version bump
(package (package
(name "emacs-greader") (name "emacs-greader")
(version "0.12.5") (version "0.12.7")
(source (source
(origin (origin
(uri (git-reference (uri (git-reference
(url "https://gitlab.com/michelangelo-rodriguez/greader") (url "https://gitlab.com/michelangelo-rodriguez/greader")
(commit commit))) (commit commit)))
(method git-fetch) (method git-fetch)
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "1wh9xbz4az4b90m2r2ffmrvwlv2ig75bxycmkqghaz4hhx2gkvaz")))) (base32 "1qg9a3msnh95rj4jmih2j48r8dsisiqd8nlrj1qf3mfl4xr1kb7c"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(arguments (arguments
(list (list #:tests? #f)) ;no tests
#:phases #~(modify-phases %standard-phases (inputs (list emacs-compat espeak-ng))
(add-after 'unpack 'add-requires
(lambda _
(substitute* "greader-dict.el"
((";;; Code:")
";;; Code:\n(require 'greader)\n")))))))
(inputs (list espeak-ng))
(home-page "https://gitlab.com/michelangelo-rodriguez/greader") (home-page "https://gitlab.com/michelangelo-rodriguez/greader")
(synopsis (synopsis
"Gnamù Reader, or Greader, sends buffer contents to a speech engine") "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. Text To Speech} engine, such as Espeak-NG or Speech Dispatcher.
The mode supports timer reading, automatic scrolling of buffers in modes like 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 includes a feature to facilitate the compilation of Espeak-NG
pronunciations.") pronunciations.")
(license license:gpl3+)))) (license license:gpl3+))))