guix_mirror_bot pushed a commit to branch master
in repository guix.
commit f8ead410128e9b582c523bae8904a0184799ff10
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun May 18 10:16:36 2025 +0200
gnu: emacs-cargo-el: Rename package to emacs-cargo.
* gnu/packages/emacs-xyz.scm (emacs-cargo-el): Define in terms of
'deprecated-package'.
(emacs-cargo): New variable, formerly known as "emacs-cargo-el".
Signed-off-by: Ian Eure <[email protected]>
---
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 9a268c3ea3..f55a5dd7df 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31911,12 +31911,12 @@ In addition to its predecessor, it offers the
following features:
(license (list license:expat
license:asl2.0))))
-(define-public emacs-cargo-el
+(define-public emacs-cargo
;; No tags since 2017, use latest commit.
(let ((commit "7f8466063381eed05d4e222ce822b1dd44e3bf17")
(revision "0"))
(package
- (name "emacs-cargo-el")
+ (name "emacs-cargo")
(version (git-version "0.4.1" revision commit))
(source
(origin
@@ -31945,6 +31945,9 @@ In addition to its predecessor, it offers the following
features:
combinations to perform Cargo tasks within Rust projects.")
(license license:gpl3+))))
+(define-deprecated/public emacs-cargo-el emacs-cargo
+ (deprecated-package "emacs-cargo-el" emacs-cargo))
+
(define-public emacs-ztree
;; Upstream provides no tag, but the commit below matches latest release.
(let ((commit "c9ad9136d52ca5a81475693864e255d29448f43f"))