diff options
| author | Liam Hupfer <liam@hpfr.net> | 2026-04-16 21:55:52 -0500 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-05-01 07:23:15 +0200 |
| commit | 7292bc7f34b9c133c38258876e02dacf9924a48e (patch) | |
| tree | 05658adb7a73d0ca860422889f265bb67543c3a6 | |
| parent | 26c5577abb9afc953371dbfaa000363b78940184 (diff) | |
gnu: emacs-nov-el: Rename package to emacs-nov.
The rename aligns with MELPA and fixes package descriptor
generation. ‘package-load-descriptor’ expects the directory name, which
comes from the Guix package name, to match the package descriptor name,
which normally comes from find-root-library-file. emacs-nov-el would
correspond to nov-el.el.
* gnu/packages/emacs-xyz.scm (emacs-nov-el): Define in terms of
'deprecated-package'. Move old definition…
(emacs-nov): … here.
(emacs-org-noter)[native-inputs]: Adjust accordingly.
Change-Id: I5ededfd6eebeef5a45d7133e69f3bb286a4955a5
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 7d846f1880..507f45c890 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -27921,9 +27921,9 @@ included within Emacs. See @code{esxml-to-xml} for a concise description of the format.") (license license:gpl3+))) -(define-public emacs-nov-el +(define-public emacs-nov (package - (name "emacs-nov-el") + (name "emacs-nov") (version "0.5.0") (source (origin @@ -27952,6 +27952,9 @@ the format.") "@code{nov.el} provides a major mode for reading EPUB documents.") (license license:gpl3+))) +(define-deprecated-package emacs-nov-el + emacs-nov) + (define-public epipe (package (name "epipe") @@ -41044,7 +41047,7 @@ text-property translator.") (native-inputs (list emacs-buttercup emacs-djvu emacs-log4e - emacs-nov-el + emacs-nov emacs-org-roam emacs-pdf-tools emacs-with-simulated-input)) |
