GNU bug report logs - #65751
[PATCH 0/2] Update emacs-magit to 3.3.0-5.186414a.

Previous Next

Package: guix-patches;

Reported by: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>

Date: Tue, 5 Sep 2023 04:00:02 UTC

Severity: normal

Tags: patch

Done: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>

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 65751 in the body.
You can then email your comments to 65751 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 andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org:
bug#65751; Package guix-patches. (Tue, 05 Sep 2023 04:00:03 GMT) Full text and rfc822 format available.

Acknowledgement sent to Maxim Cournoyer <maxim.cournoyer <at> gmail.com>:
New bug report received and forwarded. Copy sent to andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org. (Tue, 05 Sep 2023 04:00:03 GMT) Full text and rfc822 format available.

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

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: guix-patches <at> gnu.org,
	maxim.cournoyer <at> gmail.com
Subject: [PATCH 0/2] Update emacs-magit to 3.3.0-5.186414a.
Date: Mon,  4 Sep 2023 23:59:21 -0400
Using a recent commit allows benefiting from a change that would be useful for
adding 'Reviewed-by' tags to Git messages (see:
https://github.com/magit/magit/discussions/4998).

Maxim Cournoyer (2):
  gnu: emacs-transient: Update to 0.4.3-0.cc0fa80.
  gnu: emacs-magit: Update to 3.3.0-5.186414a.

 gnu/packages/emacs-xyz.scm | 78 ++++++++++++++++++++------------------
 1 file changed, 42 insertions(+), 36 deletions(-)


base-commit: bf231a591c874dd7af57923f0b513823d1e0d6d2
-- 
2.41.0





Information forwarded to andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org:
bug#65751; Package guix-patches. (Tue, 05 Sep 2023 04:11:02 GMT) Full text and rfc822 format available.

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

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: 65751 <at> debbugs.gnu.org
Cc: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
Subject: [PATCH 1/2] gnu: emacs-transient: Update to 0.4.3-0.cc0fa80.
Date: Tue,  5 Sep 2023 00:10:06 -0400
* gnu/packages/emacs-xyz.scm (emacs-transient): Update to 0.4.3-0.cc0fa80.
---

 gnu/packages/emacs-xyz.scm | 70 ++++++++++++++++++++------------------
 1 file changed, 37 insertions(+), 33 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 802cf1ccaa..c3652c703c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -30150,43 +30150,47 @@ (define-public emacs-elmacro
     (license license:gpl3+)))
 
 (define-public emacs-transient
-  (package
-    (name "emacs-transient")
-    (version "0.4.3")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/magit/transient")
-                    (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "03qs1bj7dxgdppzcnhzmldpdam1h8kzd0ps2bk82slypm7d63nay"))))
-    (build-system emacs-build-system)
-    (arguments
-     `(#:tests? #f                      ;no test suite
-       #:phases (modify-phases %standard-phases
-                  (add-after 'unpack 'build-info-manual
-                    (lambda _
-                      (invoke "make" "info")
-                      ;; Move the info file to lisp so that it gets
-                      ;; installed by the emacs-build-system.
-                      (rename-file "docs/transient.info"
-                                   "lisp/transient.info")))
-                  (add-after 'build-info-manual 'enter-lisp-directory
-                    (lambda _
-                      (chdir "lisp"))))))
-    (native-inputs (list texinfo))
-    (propagated-inputs (list emacs-compat))
-    (home-page "https://magit.vc/manual/transient")
-    (synopsis "Transient commands in Emacs")
-    (description
-     "Taking inspiration from prefix keys and prefix arguments
+  ;; Use this unreleased commit to support a recent Magit change needed to add
+  ;; Reviewed-by: tags for any contributor.
+  (let ((commit "cc0fa80530b02493f73b870032bfcdd1435286cd")
+        (revision "0"))
+    (package
+      (name "emacs-transient")
+      (version (git-version "0.4.3" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/magit/transient")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "10yaanpz3krh3f9vzyafg6n85yp8sk58gj9vrpsqg926x4m0w1p1"))))
+      (build-system emacs-build-system)
+      (arguments
+       `(#:tests? #f                      ;no test suite
+         #:phases (modify-phases %standard-phases
+                    (add-after 'unpack 'build-info-manual
+                      (lambda _
+                        (invoke "make" "info")
+                        ;; Move the info file to lisp so that it gets
+                        ;; installed by the emacs-build-system.
+                        (rename-file "docs/transient.info"
+                                     "lisp/transient.info")))
+                    (add-after 'build-info-manual 'enter-lisp-directory
+                      (lambda _
+                        (chdir "lisp"))))))
+      (native-inputs (list texinfo))
+      (propagated-inputs (list emacs-compat))
+      (home-page "https://magit.vc/manual/transient")
+      (synopsis "Transient commands in Emacs")
+      (description
+       "Taking inspiration from prefix keys and prefix arguments
 in Emacs, Transient implements a similar abstraction involving a prefix
 command, infix arguments and suffix commands.  We could call this abstraction
 a \"transient command\", but because it always involves at least two
 commands (a prefix and a suffix) we prefer to call it just a \"transient\".")
-    (license license:gpl3+)))
+      (license license:gpl3+))))
 
 (define-public emacs-forge
   (package

base-commit: bf231a591c874dd7af57923f0b513823d1e0d6d2
-- 
2.41.0





Information forwarded to andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org:
bug#65751; Package guix-patches. (Tue, 05 Sep 2023 04:11:02 GMT) Full text and rfc822 format available.

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

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: 65751 <at> debbugs.gnu.org
Cc: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
Subject: [PATCH 2/2] gnu: emacs-magit: Update to 3.3.0-5.186414a.
Date: Tue,  5 Sep 2023 00:10:07 -0400
* gnu/packages/emacs-xyz.scm (emacs-magit): Update to 3.3.0-5.186414a.

---

 gnu/packages/emacs-xyz.scm | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index c3652c703c..e7a98a2ee4 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -1441,8 +1441,10 @@ (define-public emacs-libgit
       (license license:gpl2+))))
 
 (define-public emacs-magit
-  (let ((commit "a760dd107843a8fb632e647f6ba9ed34d7c2dd45")
-        (revision "4"))
+    ;; Use this unreleased commit to benefit from a recent change needed to
+    ;; add Reviewed-by: tags for any contributor in commit messages.
+  (let ((commit "186414ae418a07a46c413f05c68413a76256a05e")
+        (revision "5"))
     (package
       (name "emacs-magit")
       (version (git-version "3.3.0" revision commit))
@@ -1454,7 +1456,7 @@ (define-public emacs-magit
                (commit commit)))
          (file-name (git-file-name name version))
          (sha256
-          (base32 "0pqw171xi9vrlm0jkz53bhl18z2vnycn2bynb7lh6g5zgppkzdy0"))))
+          (base32 "0rhsbcjfjw0z3vy2ix30y4h55c0cx4lyvz6mbijwbbjryln71kpj"))))
       (build-system emacs-build-system)
       (arguments
        (list
-- 
2.41.0





Information forwarded to guix-patches <at> gnu.org:
bug#65751; Package guix-patches. (Tue, 05 Sep 2023 11:46:01 GMT) Full text and rfc822 format available.

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

From: Andrew Tropin <andrew <at> trop.in>
To: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>, 65751 <at> debbugs.gnu.org,
 maxim.cournoyer <at> gmail.com
Cc: Katherine Cox-Buday <cox.katherine.e+guix <at> gmail.com>,
 Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Subject: Re: [bug#65751] [PATCH 0/2] Update emacs-magit to 3.3.0-5.186414a.
Date: Tue, 05 Sep 2023 15:45:19 +0400
[Message part 1 (text/plain, inline)]
On 2023-09-04 23:59, Maxim Cournoyer wrote:

> Using a recent commit allows benefiting from a change that would be useful for
> adding 'Reviewed-by' tags to Git messages (see:
> https://github.com/magit/magit/discussions/4998).
>
> Maxim Cournoyer (2):
>   gnu: emacs-transient: Update to 0.4.3-0.cc0fa80.
>   gnu: emacs-magit: Update to 3.3.0-5.186414a.
>
>  gnu/packages/emacs-xyz.scm | 78 ++++++++++++++++++++------------------
>  1 file changed, 42 insertions(+), 36 deletions(-)
>
>
> base-commit: bf231a591c874dd7af57923f0b513823d1e0d6d2

Patch series looks good to me.

-- 
Best regards,
Andrew Tropin
[signature.asc (application/pgp-signature, inline)]

Reply sent to Maxim Cournoyer <maxim.cournoyer <at> gmail.com>:
You have taken responsibility. (Wed, 06 Sep 2023 00:56:01 GMT) Full text and rfc822 format available.

Notification sent to Maxim Cournoyer <maxim.cournoyer <at> gmail.com>:
bug acknowledged by developer. (Wed, 06 Sep 2023 00:56:02 GMT) Full text and rfc822 format available.

Message #19 received at 65751-done <at> debbugs.gnu.org (full text, mbox):

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: Andrew Tropin <andrew <at> trop.in>
Cc: 65751-done <at> debbugs.gnu.org,
 Katherine Cox-Buday <cox.katherine.e+guix <at> gmail.com>,
 Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Subject: Re: [bug#65751] [PATCH 0/2] Update emacs-magit to 3.3.0-5.186414a.
Date: Tue, 05 Sep 2023 20:55:30 -0400
Hi,

Andrew Tropin <andrew <at> trop.in> writes:

> On 2023-09-04 23:59, Maxim Cournoyer wrote:
>
>> Using a recent commit allows benefiting from a change that would be useful for
>> adding 'Reviewed-by' tags to Git messages (see:
>> https://github.com/magit/magit/discussions/4998).
>>
>> Maxim Cournoyer (2):
>>   gnu: emacs-transient: Update to 0.4.3-0.cc0fa80.
>>   gnu: emacs-magit: Update to 3.3.0-5.186414a.
>>
>>  gnu/packages/emacs-xyz.scm | 78 ++++++++++++++++++++------------------
>>  1 file changed, 42 insertions(+), 36 deletions(-)
>>
>>
>> base-commit: bf231a591c874dd7af57923f0b513823d1e0d6d2
>
> Patch series looks good to me.

Installed, thanks for the review.

-- 
Thanks,
Maxim




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 04 Oct 2023 11:24:24 GMT) Full text and rfc822 format available.

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

Previous Next


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