GNU bug report logs - #77673
[PATCH] gnu: emacs-vundo: Update to 2.4.0.

Previous Next

Package: guix-patches;

Reported by: Cayetano Santos <csantosb <at> inventati.org>

Date: Wed, 9 Apr 2025 09:18:02 UTC

Severity: normal

Tags: patch

Done: Christopher Baines <mail <at> cbaines.net>

To reply to this bug, email your comments to 77673 AT debbugs.gnu.org.
There is no need to reopen the bug first.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to andrew <at> trop.in, csantosb <at> inventati.org, divya <at> subvertising.org, hako <at> ultrarare.space, ian <at> retrospec.tv, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org:
bug#77673; Package guix-patches. (Wed, 09 Apr 2025 09:18:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Cayetano Santos <csantosb <at> inventati.org>:
New bug report received and forwarded. Copy sent to andrew <at> trop.in, csantosb <at> inventati.org, divya <at> subvertising.org, hako <at> ultrarare.space, ian <at> retrospec.tv, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org. (Wed, 09 Apr 2025 09:18:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Cayetano Santos <csantosb <at> inventati.org>
To: guix-patches <at> gnu.org
Cc: Cayetano Santos <csantosb <at> inventati.org>
Subject: [PATCH] gnu: emacs-vundo: Update to 2.4.0.
Date: Wed,  9 Apr 2025 11:16:19 +0200
* gnu/packages/emacs-xyz.scm (emacs-vundo): Update to 2.4.0.

[source]: Switch to git fetch.
[arguments]<#:tests>: Activate.
[synopsys]: Fix column.

Change-Id: Ie15c115eb55b2b69cf1fc97cd6b684ac842ed74d
---
 gnu/packages/emacs-xyz.scm | 34 ++++++++++++++++++++++------------
 1 file changed, 22 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 486cb24321..8369dfb631 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -42850,21 +42850,31 @@ (define-public emacs-bitbake-modes
 (define-public emacs-vundo
   (package
     (name "emacs-vundo")
-    (version "2.3.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://elpa.gnu.org/packages/vundo-"
-                                  version ".tar"))
-              (sha256
-               (base32
-                "165y277fi0vp9301hy3pqgfnf160k29n8vri0zyq8a3vz3f8lqrl"))))
+    (version "2.4.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/casouri/vundo/")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "034ynwfk374i27vvfpr13n3qw02ihm0189m8frxfqdbd3hismjkb"))))
     (build-system emacs-build-system)
-    (home-page "https://github.com/casouri/vundo")
+    (arguments
+     (list
+      #:tests? #true
+      #:test-command #~(list "emacs" "-Q" "--batch"
+                             "-l" "vundo.el"
+                             "-l" "test/vundo-test.el"
+                             "-f" "ert-run-tests-batch-and-exit")))
+    (home-page "https://github.com/casouri/vundo/")
     (synopsis "Visualize the undo tree")
     (description
-     "Vundo (visual undo) displays the undo history as a tree and lets you move in the
-tree to go back to previous buffer states.  To use vundo, type @kbd{M-x vundo RET} in
-the buffer you want to undo.  An undo tree buffer should pop up.")
+     "Vundo (visual undo) displays the undo history as a tree and lets you move in
+the tree to go back to previous buffer states.  To use vundo, type @kbd{M-x vundo
+RET} in the buffer you want to undo.  An undo tree buffer should pop up.")
     (license license:gpl3+)))
 
 (define-public emacs-hare-mode

base-commit: 90357c6090de8c6befec232996dbc7415112a081
-- 
2.49.0





Information forwarded to guix-patches <at> gnu.org:
bug#77673; Package guix-patches. (Fri, 11 Apr 2025 11:38:02 GMT) Full text and rfc822 format available.

Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Christopher Baines <mail <at> cbaines.net>
To: Cayetano Santos via Guix-patches via <guix-patches <at> gnu.org>
Cc: Katherine Cox-Buday <cox.katherine.e+guix <at> gmail.com>,
 Ian Eure <ian <at> retrospec.tv>, 77673-done <at> debbugs.gnu.org,
 Cayetano Santos <csantosb <at> inventati.org>, Andrew Tropin <andrew <at> trop.in>,
 Hilton Chain <hako <at> ultrarare.space>,
 Divya Ranjan Pattanaik <divya <at> subvertising.org>,
 Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Subject: Re: [bug#77673] [PATCH] gnu: emacs-vundo: Update to 2.4.0.
Date: Fri, 11 Apr 2025 12:37:19 +0100
[Message part 1 (text/plain, inline)]
Cayetano Santos via Guix-patches via <guix-patches <at> gnu.org> writes:

> * gnu/packages/emacs-xyz.scm (emacs-vundo): Update to 2.4.0.
>
> [source]: Switch to git fetch.
> [arguments]<#:tests>: Activate.
> [synopsys]: Fix column.
>
> Change-Id: Ie15c115eb55b2b69cf1fc97cd6b684ac842ed74d
> ---
>  gnu/packages/emacs-xyz.scm | 34 ++++++++++++++++++++++------------
>  1 file changed, 22 insertions(+), 12 deletions(-)

Thanks for the patch, I've pushed this to master as
198fe8bcdf1b7670c599c432edae5aca1f9bc555.

Chris
[signature.asc (application/pgp-signature, inline)]

Reply sent to Christopher Baines <mail <at> cbaines.net>:
You have taken responsibility. (Fri, 11 Apr 2025 11:38:04 GMT) Full text and rfc822 format available.

Notification sent to Cayetano Santos <csantosb <at> inventati.org>:
bug acknowledged by developer. (Fri, 11 Apr 2025 11:38:04 GMT) Full text and rfc822 format available.

This bug report was last modified 1 day ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.