GNU bug report logs - #67816
[PATCH] gnu: emacs-vterm: Update to 0.0.2-1.94e2b0b.

Previous Next

Package: guix-patches;

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

Date: Wed, 13 Dec 2023 20:59:02 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 67816 in the body.
You can then email your comments to 67816 AT debbugs.gnu.org in the normal way.

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

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


Report forwarded to guix-patches <at> gnu.org:
bug#67816; Package guix-patches. (Wed, 13 Dec 2023 20:59: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 guix-patches <at> gnu.org. (Wed, 13 Dec 2023 20:59: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-vterm: Update to 0.0.2-1.94e2b0b.
Date: Wed, 13 Dec 2023 21:57:15 +0100
* gnu/packages/emacs-xyz.scm (emacs-vterm): Update to 0.0.2-1.94e2b0b.

Signed-off-by: Cayetano Santos <csantosb <at> inventati.org>
---
 gnu/packages/emacs-xyz.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 9f219dd0dd..9cb4a02861 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -29600,10 +29600,10 @@ (define-public emacs-eat
     (license license:gpl3+)))
 
 (define-public emacs-vterm
-  (let ((commit "e19dc2bb9859a75616bf068c341a540d0d329e4d"))
+  (let ((commit "94e2b0b2b4a750e7907dacd5b4c0584900846dd1"))
     (package
       (name "emacs-vterm")
-      (version "0.0.2")
+      (version (git-version "0.0.2" revision commit))
       (source (origin
                 (method git-fetch)
                 (uri (git-reference
@@ -29612,7 +29612,7 @@ (define-public emacs-vterm
                 (file-name (git-file-name name version))
                 (sha256
                  (base32
-                  "0iqlzpy83ra6xz406fmddfj72bmkdb5b1j59m1dbxf3wxn55320d"))))
+                  "0p55wg6j2x5p4g13v20fhwrrw9dv3n2srk34vnxx9md5vhz1pq6p"))))
       (build-system emacs-build-system)
       (arguments
        `(#:modules ((guix build emacs-build-system)

base-commit: 17b407ccb673020bfd923e0b5814574f9567383d
-- 
2.41.0





Information forwarded to guix-patches <at> gnu.org:
bug#67816; Package guix-patches. (Wed, 20 Dec 2023 21:16:01 GMT) Full text and rfc822 format available.

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

From: Sergey Trofimov <sarg <at> sarg.org.ru>
To: Cayetano Santos <csantosb <at> inventati.org>
Cc: 67816 <at> debbugs.gnu.org
Subject: Re: [bug#67816] [PATCH] gnu: emacs-vterm: Update to 0.0.2-1.94e2b0b.
Date: Wed, 20 Dec 2023 22:13:43 +0100
Cayetano Santos <csantosb <at> inventati.org> writes:

> * gnu/packages/emacs-xyz.scm (emacs-vterm): Update to 
> 0.0.2-1.94e2b0b.
>
> Signed-off-by: Cayetano Santos <csantosb <at> inventati.org>

...

>        (name "emacs-vterm")
> -      (version "0.0.2")
> +      (version (git-version "0.0.2" revision commit))

here it fails with undefined `revision` symbol




Information forwarded to guix-patches <at> gnu.org:
bug#67816; Package guix-patches. (Wed, 20 Dec 2023 22:48:02 GMT) Full text and rfc822 format available.

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

From: Cayetano Santos <csantosb <at> inventati.org>
To: 67816 <at> debbugs.gnu.org
Cc: Cayetano Santos <csantosb <at> inventati.org>
Subject: [PATCH v1] gnu: emacs-vterm: Update to 0.0.2-1.94e2b0b.
Date: Wed, 20 Dec 2023 23:46:58 +0100
* gnu/packages/emacs-xyz.scm (emacs-vterm): Update to 0.0.2-1.94e2b0b.

Signed-off-by: Cayetano Santos <csantosb <at> inventati.org>
---
 gnu/packages/emacs-xyz.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 9f219dd0dd..fbef7cc3d3 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -29600,10 +29600,11 @@ (define-public emacs-eat
     (license license:gpl3+)))
 
 (define-public emacs-vterm
-  (let ((commit "e19dc2bb9859a75616bf068c341a540d0d329e4d"))
+  (let ((commit "94e2b0b2b4a750e7907dacd5b4c0584900846dd1")
+        (revision "1"))
     (package
       (name "emacs-vterm")
-      (version "0.0.2")
+      (version (git-version "0.0.2" revision commit))
       (source (origin
                 (method git-fetch)
                 (uri (git-reference
@@ -29612,7 +29613,7 @@ (define-public emacs-vterm
                 (file-name (git-file-name name version))
                 (sha256
                  (base32
-                  "0iqlzpy83ra6xz406fmddfj72bmkdb5b1j59m1dbxf3wxn55320d"))))
+                  "0p55wg6j2x5p4g13v20fhwrrw9dv3n2srk34vnxx9md5vhz1pq6p"))))
       (build-system emacs-build-system)
       (arguments
        `(#:modules ((guix build emacs-build-system)

base-commit: 17b407ccb673020bfd923e0b5814574f9567383d
-- 
2.41.0





Information forwarded to guix-patches <at> gnu.org:
bug#67816; Package guix-patches. (Thu, 04 Jan 2024 11:50:01 GMT) Full text and rfc822 format available.

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

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Cayetano Santos via Guix-patches via <guix-patches <at> gnu.org>
Cc: Cayetano Santos <csantosb <at> inventati.org>, 67816-done <at> debbugs.gnu.org
Subject: Re: [bug#67816] [PATCH v1] gnu: emacs-vterm: Update to
 0.0.2-1.94e2b0b.
Date: Thu, 04 Jan 2024 12:49:20 +0100
Hello,

Cayetano Santos via Guix-patches via <guix-patches <at> gnu.org> writes:

> * gnu/packages/emacs-xyz.scm (emacs-vterm): Update to 0.0.2-1.94e2b0b.

Applied, thank you. I also bumped it to latest commit.

Regrads,
-- 
Nicolas Goaziou






Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Thu, 04 Jan 2024 11:50:02 GMT) Full text and rfc822 format available.

Notification sent to Cayetano Santos <csantosb <at> inventati.org>:
bug acknowledged by developer. (Thu, 04 Jan 2024 11:50:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 01 Feb 2024 12:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 223 days ago.

Previous Next


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