guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: emacs-git-timemachine: Update to 4.11-0-1376


From: guix-commits
Subject: branch master updated: gnu: emacs-git-timemachine: Update to 4.11-0-13769fb6.
Date: Mon, 24 Apr 2023 14:05:42 -0400

This is an automated email from the git hooks/post-receive script.

janneke pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new c7cdd4a6c7 gnu: emacs-git-timemachine: Update to 4.11-0-13769fb6.
c7cdd4a6c7 is described below

commit c7cdd4a6c7e795575c1baf6a655cb317f56fcf81
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Tue Apr 18 16:50:02 2023 +0200

    gnu: emacs-git-timemachine: Update to 4.11-0-13769fb6.
    
    This fixes #62932;
    
        command-execute: Symbol’s function definition is void: 
define-transient-command
    
    * gnu/packages/emacs-xyz.scm (emacs-git-timemachine)[source]: Update 
outdated
    source URI.  Update to commit "13769fb603ae88c64566529eae4525ce88026e86".  
The
    4.11 latest release is four years old.
---
 gnu/packages/emacs-xyz.scm | 41 ++++++++++++++++++++++-------------------
 1 file changed, 22 insertions(+), 19 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 234b0f6868..f46ccde1e8 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -25,7 +25,7 @@
 ;;; Copyright © 2017 Kei Kebreau <kkebreau@posteo.net>
 ;;; Copyright © 2017 George Clemmer <myglc2@gmail.com>
 ;;; Copyright © 2017, 2018 Feng Shu <tumashu@163.com>
-;;; Copyright © 2017, 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
+;;; Copyright © 2017, 2020, 2023 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
 ;;; Copyright © 2017, 2018, 2019, 2020 Oleg Pykhalov <go.wigust@gmail.com>
 ;;; Copyright © 2017 Mekeor Melire <mekeor.melire@gmail.com>
 ;;; Copyright © 2017 Peter Mikkelsen <petermikkelsen10@gmail.com>
@@ -5812,25 +5812,28 @@ saving won't move point back to the beginning of the 
buffer.")
     (license license:gpl3+)))
 
 (define-public emacs-git-timemachine
-  (package
-    (name "emacs-git-timemachine")
-    (version "4.11")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://gitlab.com/pidu/git-timemachine.git";)
-             (commit version)))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32
-         "1pz4l1xnq6s67w5yq9107vm8dg7rqf8n9dmbn90jys97c722g70n"))))
-    (build-system emacs-build-system)
-    (home-page "https://gitlab.com/pidu/git-timemachine";)
-    (synopsis "Step through historic versions of Git-controlled files")
-    (description "This package enables you to step through historic versions
+  (let ((version "4.11")
+        (revision "0")
+        (commit "13769fb603ae88c64566529eae4525ce88026e86"))
+    (package
+      (name "emacs-git-timemachine")
+      (version (git-version version revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/pidu/git-timemachine.git";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "0d1aj9xhcyksg115xl2yw0rd62hp53ig06y54jvii1l8vavb94jy"))))
+      (build-system emacs-build-system)
+      (home-page "https://gitlab.com/pidu/git-timemachine";)
+      (synopsis "Step through historic versions of Git-controlled files")
+      (description "This package enables you to step through historic versions
 of files under Git version control from within Emacs.")
-    (license license:gpl3+)))
+      (license license:gpl3+))))
 
 (define-public emacs-minitest
   (package



reply via email to

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