GNU bug report logs - #74195
[PATCH 0/2] Bump zstd and pzstd versions

Previous Next

Package: guix-patches;

Reported by: Aaron Covrig <aaron.covrig.us <at> ieee.org>

Date: Sun, 3 Nov 2024 23:47:01 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

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 74195 in the body.
You can then email your comments to 74195 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#74195; Package guix-patches. (Sun, 03 Nov 2024 23:47:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Aaron Covrig <aaron.covrig.us <at> ieee.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 03 Nov 2024 23:47:02 GMT) Full text and rfc822 format available.

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

From: Aaron Covrig <aaron.covrig.us <at> ieee.org>
To: guix-patches <at> gnu.org
Cc: Aaron Covrig <aaron.covrig.us <at> ieee.org>
Subject: [PATCH 0/2] Bump zstd and pzstd versions
Date: Sun,  3 Nov 2024 18:46:04 -0500
This bumps up the latest availible zstd version to 1.5.6 while
preserving the existing zstd package (zstd vs zstd-1.5.6); additionally
it bumps pzstd to use zstd-1.5.6 instead of zstd
Aaron Covrig (2):
  gnu: Bump zstd to version 1.5.6
  gnu: Bump pzstd to version 1.5.6

 gnu/packages/compression.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)


base-commit: 8964dfdb84f7d21dbc89c217ca4f4546a15990af
-- 
2.46.0





Information forwarded to guix-patches <at> gnu.org:
bug#74195; Package guix-patches. (Mon, 04 Nov 2024 00:18:01 GMT) Full text and rfc822 format available.

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

From: Aaron Covrig <aaron.covrig.us <at> ieee.org>
To: 74195 <at> debbugs.gnu.org
Cc: Aaron Covrig <aaron.covrig.us <at> ieee.org>
Subject: [PATCH 1/2] gnu: Bump zstd to version 1.5.6
Date: Sun,  3 Nov 2024 19:15:48 -0500
* gnu/packages/compression.scm (zstd-1.5.6): Bump version to 1.5.6
---
 gnu/packages/compression.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 97696ff0ef..72f7a30e0b 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -1824,19 +1824,19 @@ (define-public zstd
                    license:public-domain ; zlibWrapper/examples/fitblk*
                    license:zlib))))      ; zlibWrapper/{gz*.c,gzguts.h}
 
-(define-public zstd-1.5.5
+(define-public zstd-1.5.6
   (package
     (inherit zstd)
     ;; Don't hide this package from the UI.
     (properties '())
-    (version "1.5.5")
+    (version "1.5.6")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/facebook/zstd/releases/download/"
                            "v" version "/zstd-" version ".tar.gz"))
        (sha256
-        (base32 "1r1ydmj7ib3g5372yj3k40vl3b9ax0154qg2lqcy7ylwhb69chww"))))))
+        (base32 "1h83si7s70jy7mcy0mv1c9mbkz66qqpawxs0zkmc3b1ayinf0acc"))))))
 
 (define-public pzstd
   (package/inherit zstd

base-commit: 8964dfdb84f7d21dbc89c217ca4f4546a15990af
-- 
2.46.0





Information forwarded to guix-patches <at> gnu.org:
bug#74195; Package guix-patches. (Mon, 04 Nov 2024 00:18:02 GMT) Full text and rfc822 format available.

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

From: Aaron Covrig <aaron.covrig.us <at> ieee.org>
To: 74195 <at> debbugs.gnu.org
Cc: Aaron Covrig <aaron.covrig.us <at> ieee.org>
Subject: [PATCH 2/2] gnu: Bump pzstd to version 1.5.6
Date: Sun,  3 Nov 2024 19:15:49 -0500
* gnu/packages/compression.scm (pzstd): Bump to version 1.5.6
---
 gnu/packages/compression.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 72f7a30e0b..a46ebb0473 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -1839,7 +1839,7 @@ (define-public zstd-1.5.6
         (base32 "1h83si7s70jy7mcy0mv1c9mbkz66qqpawxs0zkmc3b1ayinf0acc"))))))
 
 (define-public pzstd
-  (package/inherit zstd
+  (package/inherit zstd-1.5.6
     (name "pzstd")
     (outputs '("out"))
     (inputs
-- 
2.46.0





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Wed, 20 Nov 2024 22:57:01 GMT) Full text and rfc822 format available.

Notification sent to Aaron Covrig <aaron.covrig.us <at> ieee.org>:
bug acknowledged by developer. (Wed, 20 Nov 2024 22:57:02 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: Aaron Covrig <aaron.covrig.us <at> ieee.org>
Cc: 74195-done <at> debbugs.gnu.org
Subject: Re: [bug#74195] [PATCH 0/2] Bump zstd and pzstd versions
Date: Wed, 20 Nov 2024 23:55:27 +0100
Aaron Covrig <aaron.covrig.us <at> ieee.org> skribis:

> This bumps up the latest availible zstd version to 1.5.6 while
> preserving the existing zstd package (zstd vs zstd-1.5.6); additionally
> it bumps pzstd to use zstd-1.5.6 instead of zstd
> Aaron Covrig (2):
>   gnu: Bump zstd to version 1.5.6
>   gnu: Bump pzstd to version 1.5.6

Applied, thanks!




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

This bug report was last modified 179 days ago.

Previous Next


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