guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 80d6fec50fbeb5f1b411cf3a201c864ae5a8c775
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun May 18 10:16:45 2025 +0200
gnu: emacs-straight-el: Rename package to emacs-straight.
* gnu/packages/emacs-xyz.scm (emacs-straight-el): Define in terms of
'deprecated-package'.
(emacs-straight): New variable, formerly known as "emacs-straight-el".
Signed-off-by: Ian Eure <[email protected]>
---
gnu/packages/emacs-xyz.scm | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index fdb384fca0..94e5c3c49c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -43656,11 +43656,11 @@ on the chosen style."))))
"@code{emacs-pyimport} manages python imports from Emacs via
@code{python-pyflakes}.")
(license license:gpl3+)))) ; License is in pyimport.el
-(define-public emacs-straight-el
+(define-public emacs-straight
(let ((commit "44a866f28f3ded6bcd8bc79ddc73b8b5044de835")
(revision "4"))
(package
- (name "emacs-straight-el")
+ (name "emacs-straight")
(version (git-version "0" revision commit))
(source
(origin
@@ -43697,10 +43697,13 @@ on the chosen style."))))
(home-page "https://github.com/radian-software/straight.el/")
(synopsis "Purely functional package manager for the Emacs hacker")
(description
- "@code{emacs-straight-el} is a purely functional package manager for
the Emacs
+ "@code{emacs-straight} is a purely functional package manager for the
Emacs
hacker.")
(license license:expat))))
+(define-deprecated/public emacs-straight-el emacs-straight
+ (deprecated-package "emacs-straight-el" emacs-straight))
+
(define-public emacs-osm
(package
(name "emacs-osm")