GNU bug report logs - #64053
[PATCH] gnu: fmt: Update to 10.0.0.

Previous Next

Package: guix-patches;

Reported by: Liliana Marie Prikler <liliana.prikler <at> gmail.com>

Date: Tue, 13 Jun 2023 18:54:02 UTC

Severity: normal

Tags: patch

Done: Liliana Marie Prikler <liliana.prikler <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 64053 in the body.
You can then email your comments to 64053 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#64053; Package guix-patches. (Tue, 13 Jun 2023 18:54:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Liliana Marie Prikler <liliana.prikler <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 13 Jun 2023 18:54:02 GMT) Full text and rfc822 format available.

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

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: fmt: Update to 10.0.0.
Date: Tue, 13 Jun 2023 20:43:48 +0200
* gnu/packages/pretty-print.scm (fmt-10): New variable.
(fmt-9): Inherit from fmt-10.
(fmt-8): Inherit from fmt-9.
(fmt-8.0, fmt-7): Inherit from fmt-8.
(fmt-6): Inherit from fmt-7.
(fmt): New variable.
---
 gnu/packages/pretty-print.scm | 30 +++++++++++++++++++++++-------
 1 file changed, 23 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/pretty-print.scm b/gnu/packages/pretty-print.scm
index 74e51ec61e..3c53814013 100644
--- a/gnu/packages/pretty-print.scm
+++ b/gnu/packages/pretty-print.scm
@@ -167,17 +167,17 @@ (define-public enscript
 different programming languages.")
     (license gpl3+)))
 
-(define-public fmt
+(define-public fmt-10
   (package
     (name "fmt")
-    (version "9.1.0")
+    (version "10.0.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/fmtlib/fmt/releases/download/"
                            version "/fmt-" version ".zip"))
        (sha256
-        (base32 "15n9yi6xzzs7g9rm87kg8y5yhl2zrqj3bjr845saa63f6swlrsyc"))))
+        (base32 "10f23avnpad8sakmq514w2bw6cw7xrb30kc3v8k7yn1zbwbcnhs9"))))
     (build-system cmake-build-system)
     (arguments '(#:configure-flags '("-DBUILD_SHARED_LIBS=ON")))
     (native-inputs (list unzip))
@@ -189,9 +189,21 @@ (define-public fmt
     ;; The library is bsd-2, but documentation and tests include other licenses.
     (license (list bsd-2 bsd-3 psfl))))
 
+(define-public fmt-9
+  (package
+    (inherit fmt-10)
+    (version "9.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/fmtlib/fmt/releases/download/"
+                           version "/fmt-" version ".zip"))
+       (sha256
+        (base32 "15n9yi6xzzs7g9rm87kg8y5yhl2zrqj3bjr845saa63f6swlrsyc"))))))
+
 (define-public fmt-8
   (package
-    (inherit fmt)
+    (inherit fmt-9)
     (version "8.1.1")
     (source
      (origin
@@ -203,7 +215,7 @@ (define-public fmt-8
 
 (define-public fmt-8.0
   (package
-    (inherit fmt)
+    (inherit fmt-8)
     (version "8.0.1")
     (source
      (origin
@@ -215,7 +227,7 @@ (define-public fmt-8.0
 
 (define-public fmt-7
   (package
-    (inherit fmt)
+    (inherit fmt-8)
     (version "7.1.3")
     (source
      (origin
@@ -227,7 +239,7 @@ (define-public fmt-7
 
 (define-public fmt-6
   (package
-    (inherit fmt)
+    (inherit fmt-7)
     (version "6.1.2")
     (source
      (origin
@@ -269,6 +281,10 @@ (define-public fmt-6
        ("libcxxabi" ,libcxxabi-6)
        ("clang" ,clang-6)))))
 
+;; Note: Updating fmt causes some 1000s of rebuilds, so let's have a pinned
+;; version.
+(define-public fmt fmt-9)
+
 (define-public source-highlight
   (package
     (name "source-highlight")

base-commit: b94cbbbce70f59b795526a0ed305facf041e6faa
prerequisite-patch-id: af4df77b21fb893c5a269a41917db4168cfcb853
-- 
2.40.1





Information forwarded to guix-patches <at> gnu.org:
bug#64053; Package guix-patches. (Tue, 20 Jun 2023 22:09:01 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Cc: 64053 <at> debbugs.gnu.org
Subject: Re: bug#64053: [PATCH] gnu: fmt: Update to 10.0.0.
Date: Wed, 21 Jun 2023 00:08:37 +0200
Liliana Marie Prikler <liliana.prikler <at> gmail.com> skribis:

> * gnu/packages/pretty-print.scm (fmt-10): New variable.
> (fmt-9): Inherit from fmt-10.
> (fmt-8): Inherit from fmt-9.
> (fmt-8.0, fmt-7): Inherit from fmt-8.
> (fmt-6): Inherit from fmt-7.
> (fmt): New variable.

LGTM, thanks!




Reply sent to Liliana Marie Prikler <liliana.prikler <at> gmail.com>:
You have taken responsibility. (Sun, 25 Jun 2023 12:39:02 GMT) Full text and rfc822 format available.

Notification sent to Liliana Marie Prikler <liliana.prikler <at> gmail.com>:
bug acknowledged by developer. (Sun, 25 Jun 2023 12:39:02 GMT) Full text and rfc822 format available.

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

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: 64053-done <at> debbugs.gnu.org
Subject: Re: bug#64053: [PATCH] gnu: fmt: Update to 10.0.0.
Date: Sun, 25 Jun 2023 14:38:46 +0200
Am Mittwoch, dem 21.06.2023 um 00:08 +0200 schrieb Ludovic Courtès:
> Liliana Marie Prikler <liliana.prikler <at> gmail.com> skribis:
> 
> > * gnu/packages/pretty-print.scm (fmt-10): New variable.
> > (fmt-9): Inherit from fmt-10.
> > (fmt-8): Inherit from fmt-9.
> > (fmt-8.0, fmt-7): Inherit from fmt-8.
> > (fmt-6): Inherit from fmt-7.
> > (fmt): New variable.
> 
> LGTM, thanks!
Welp, I messed up the commit message, but now it's too late to change
it.  *sigh*




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

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

Previous Next


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