guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/08: gnu: emacs-compat: Update to 29.1.1.0.


From: guix-commits
Subject: 01/08: gnu: emacs-compat: Update to 29.1.1.0.
Date: Sun, 8 Jan 2023 06:22:02 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit b59a42918a42fc6c6f401562a29383e110522ba9
Author: Feng Shu <tumashu@163.com>
AuthorDate: Sun Jan 8 11:32:07 2023 +0100

    gnu: emacs-compat: Update to 29.1.1.0.
    
    * gnu/packages/emacs-xyz.scm (emacs-compat): Update to 29.1.1.0.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/emacs-xyz.scm | 29 +++++++++++++----------------
 1 file changed, 13 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 466fb65fd3..2948228caf 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -7794,24 +7794,21 @@ variables, and so on.  The mode also allows you to 
execute Tup commands.")
     (license license:gpl3+)))
 
 (define-public emacs-compat
-  (let ((commit "8a32564247ad3baee571252a2004c3d347962d01")) ;version bump
-    (package
-     (name "emacs-compat")
-     (version "29.1.0.1")
-     (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://git.sr.ht/~pkal/compat";)
-                    (commit commit)))
-              (file-name (git-file-name name version))
+  (package
+    (name "emacs-compat")
+    (version "29.1.1.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://elpa.gnu.org/packages/";
+                                  "compat-" version ".tar"))
               (sha256
                (base32
-                "0wxv63cqrw7pd5vg5hwh48bf326766x6mzz1qw8shhkrycr43fks"))))
-     (build-system emacs-build-system)
-     (home-page "https://git.sr.ht/~pkal/compat";)
-     (synopsis "Emacs Lisp Compatibility Library")
-     (description
-      "To allow for the usage of Emacs functions and macros that are defined
+                "0b371rilcbkjmb1fdaib7fnrngkm1q7xdmv15a3xvmpalvfwmrwc"))))
+    (build-system emacs-build-system)
+    (home-page "https://git.sr.ht/~pkal/compat";)
+    (synopsis "Emacs Lisp Compatibility Library")
+    (description
+     "To allow for the usage of Emacs functions and macros that are defined
 in newer versions of Emacs, @code{compat.el} provides definitions that
 are installed ONLY if necessary.  These reimplementations of functions
 and macros are at least subsets of the actual implementations.  Be



reply via email to

[Prev in Thread] Current Thread [Next in Thread]