guix_mirror_bot pushed a commit to branch emacs-team in repository guix. commit 8a31f1add414e4b02089ee0299305c9949282df1 Author: Nicolas Graves <ngra...@ngraves.fr> AuthorDate: Sun May 18 10:16:31 2025 +0200
gnu: emacs-scratch-el: Rename package to emacs-scratch. * gnu/packages/emacs-xyz.scm (emacs-scratch-el): Define in terms of 'deprecated-package'. (emacs-scratch): New variable, formerly known as "emacs-scratch-el". Signed-off-by: Ian Eure <i...@retrospec.tv> --- gnu/packages/emacs-xyz.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 7d2ab98a16..23035b14c7 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -25417,9 +25417,9 @@ org header line at the top of the window--no matter how far down you scrolled.") (home-page "https://github.com/alphapapa/org-sticky-header") (license license:gpl3+))) -(define-public emacs-scratch-el +(define-public emacs-scratch (package - (name "emacs-scratch-el") + (name "emacs-scratch") (version "1.4") (source (origin @@ -25452,6 +25452,9 @@ scratch buffer, and, by virtue of this extension, do so using the Emacs formatting rules for that language.") (license license:bsd-2))) +(define-deprecated/public emacs-scratch-el emacs-scratch + (deprecated-package "emacs-scratch-el" emacs-scratch)) + (define-public emacs-kv (package (name "emacs-kv")