all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#74814] [PATCH] gnu: emacs-magit: Update to 4.1.3.
@ 2024-12-12  8:29 Cayetano Santos via Guix-patches via
  2024-12-14  7:07 ` Maxim Cournoyer
  0 siblings, 1 reply; 3+ messages in thread
From: Cayetano Santos via Guix-patches via @ 2024-12-12  8:29 UTC (permalink / raw)
  To: 74814
  Cc: Cayetano Santos, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-magit): Update to 4.1.3.

Change-Id: Ic645c3febe0290907c1838425c899981c1428c2e
---
 gnu/packages/emacs-xyz.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 9ff4329aba..395b06d2b2 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -1767,7 +1767,7 @@ (define-public emacs-llm
 (define-public emacs-magit
   (package
     (name "emacs-magit")
-    (version "4.1.1")
+    (version "4.1.3")
     (source
      (origin
        (method git-fetch)
@@ -1776,7 +1776,7 @@ (define-public emacs-magit
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1ckjq068728wwfm4fv0z4rrdmrj09zvarip2s5rqdr8ny722dxfn"))))
+        (base32 "0nggfqywxdnnzaw4vqn1m6h8qklyp7cwbaxxsnkr5pjcwn5nz69v"))))
     (build-system emacs-build-system)
     (arguments
      (list

base-commit: 93e1586116f39a30ba1fcb67bd839a43533dfaf4
--
2.46.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#74814] [PATCH] gnu: emacs-magit: Update to 4.1.3.
  2024-12-12  8:29 [bug#74814] [PATCH] gnu: emacs-magit: Update to 4.1.3 Cayetano Santos via Guix-patches via
@ 2024-12-14  7:07 ` Maxim Cournoyer
  2024-12-14 19:07   ` Cayetano Santos via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: Maxim Cournoyer @ 2024-12-14  7:07 UTC (permalink / raw)
  To: Cayetano Santos
  Cc: Katherine Cox-Buday, 74814, Liliana Marie Prikler, Andrew Tropin

Hello!

Cayetano Santos <csantosb@inventati.org> writes:

> * gnu/packages/emacs-xyz.scm (emacs-magit): Update to 4.1.3.
>
> Change-Id: Ic645c3febe0290907c1838425c899981c1428c2e
> ---
>  gnu/packages/emacs-xyz.scm | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 9ff4329aba..395b06d2b2 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -1767,7 +1767,7 @@ (define-public emacs-llm
>  (define-public emacs-magit
>    (package
>      (name "emacs-magit")
> -    (version "4.1.1")
> +    (version "4.1.3")
>      (source
>       (origin
>         (method git-fetch)
> @@ -1776,7 +1776,7 @@ (define-public emacs-magit
>               (commit (string-append "v" version))))
>         (file-name (git-file-name name version))
>         (sha256
> -        (base32 "1ckjq068728wwfm4fv0z4rrdmrj09zvarip2s5rqdr8ny722dxfn"))))
> +        (base32 "0nggfqywxdnnzaw4vqn1m6h8qklyp7cwbaxxsnkr5pjcwn5nz69v"))))
>      (build-system emacs-build-system)
>      (arguments
>       (list

Are there none of its dependencies that need an update?  You can see in
the header of the main .el file of the package which versions it
requires usually.

-- 
Thanks,
Maxim




^ permalink raw reply	[flat|nested] 3+ messages in thread

* [bug#74814] [PATCH] gnu: emacs-magit: Update to 4.1.3.
  2024-12-14  7:07 ` Maxim Cournoyer
@ 2024-12-14 19:07   ` Cayetano Santos via Guix-patches via
  0 siblings, 0 replies; 3+ messages in thread
From: Cayetano Santos via Guix-patches via @ 2024-12-14 19:07 UTC (permalink / raw)
  To: Maxim Cournoyer
  Cc: Katherine Cox-Buday, 74814, Liliana Marie Prikler, Andrew Tropin

[-- Attachment #1: Type: text/plain, Size: 582 bytes --]


>sam. 14 déc. 2024 at 16:07, Maxim Cournoyer <maxim.cournoyer@gmail.com> wrote:

> Are there none of its dependencies that need an update?  You can see in
> the header of the main .el file of the package which versions it
> requires usually.

You’re right: between 4.1.1 and 4.1.3, we have a dependency to update
(with-editor).

I have submit a patch to update it, see #74875: this time, with-editor has no
dependencies to upgrade.

--
Cayetano Santos
GnuPG Key:   https://meta.sr.ht/~csantosb.pgp
FingerPrint: CCB8 1842 F9D7 058E CD67 377A BF5C DF4D F6BF 6682

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 259 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-12-14 19:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-12  8:29 [bug#74814] [PATCH] gnu: emacs-magit: Update to 4.1.3 Cayetano Santos via Guix-patches via
2024-12-14  7:07 ` Maxim Cournoyer
2024-12-14 19:07   ` Cayetano Santos via Guix-patches via

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.