guix_mirror_bot pushed a commit to branch master
in repository guix.

commit c071c3feb883743898484659afdfde1a733b1c46
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun May 18 10:16:30 2025 +0200

    gnu: emacs-undohist-el: Rename package to emacs-undohist.
    
    * gnu/packages/emacs-xyz.scm (emacs-undohist-el): Define in terms of
    'deprecated-package'.  Fix home-page redirection lint.
    (emacs-undohist): New variable, formerly known as "emacs-undohist-el".
    
    Signed-off-by: Ian Eure <[email protected]>
---
 gnu/packages/emacs-xyz.scm | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 29d602772b..54ada206e1 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -16267,15 +16267,15 @@ makes unique buffer names.  Only if you want to 
programmatically generate
 unique file names you need this package here.")
     (license license:gpl3+)))
 
-(define-public emacs-undohist-el
+(define-public emacs-undohist
   (package
-    (name "emacs-undohist-el")
+    (name "emacs-undohist")
     (version "0.3.0")
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
-             (url "https://github.com/m2ym/undohist-el";)
+             (url "https://github.com/emacsorphanage/undohist";)
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
@@ -16283,12 +16283,15 @@ unique file names you need this package here.")
     (build-system emacs-build-system)
     (arguments
      (list #:tests? #f))  ; No tests.
-    (home-page "https://github.com/m2ym/undohist-el";)
+    (home-page "https://github.com/emacsorphanage/undohist";)
     (synopsis "Save undo history between sessions")
     (description "This package allows persistent use of undo history for
 individual file buffers.")
     (license license:gpl3+)))
 
+(define-deprecated/public emacs-undohist-el emacs-undohist
+  (deprecated-package "emacs-undohist-el" emacs-undohist))
+
 (define-public emacs-eprime
   (let ((commit "17a481af26496be91c07139a9bfc05cfe722506f"))
     (package

Reply via email to