unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#62684] [PATCH] gnu: Zstandard: Update to 1.5.5.
@ 2023-04-05 19:26 Leo Famulari
  2023-04-06 15:32 ` Leo Famulari
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Leo Famulari @ 2023-04-05 19:26 UTC (permalink / raw)
  To: 62684

This fixes a corruption bug:

https://github.com/facebook/zstd/releases/tag/v1.5.5

* gnu/packages/compression.scm (zstd)[replacement]: New field.
(zstd-1.5.5): New variable.
---
 gnu/packages/compression.scm | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index e58fd65e49..8a78fee107 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -1635,6 +1635,7 @@ (define-public unshield
 (define-public zstd
   (package
     (name "zstd")
+    (replacement zstd-1.5.5)
     (version "1.5.0")
     (source
      (origin
@@ -1721,6 +1722,18 @@ (define-public zstd
                    license:public-domain ; zlibWrapper/examples/fitblk*
                    license:zlib))))      ; zlibWrapper/{gz*.c,gzguts.h}
 
+(define-public zstd-1.5.5
+  (package
+    (inherit zstd)
+    (version "1.5.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/facebook/zstd/releases/download/"
+                           "v" version "/zstd-" version ".tar.gz"))
+       (sha256
+        (base32 "1r1ydmj7ib3g5372yj3k40vl3b9ax0154qg2lqcy7ylwhb69chww"))))))
+
 (define-public pzstd
   (package/inherit zstd
     (name "pzstd")
-- 
2.39.1





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

* [bug#62684] [PATCH] gnu: Zstandard: Update to 1.5.5.
  2023-04-05 19:26 [bug#62684] [PATCH] gnu: Zstandard: Update to 1.5.5 Leo Famulari
@ 2023-04-06 15:32 ` Leo Famulari
  2023-04-07 10:52 ` Simon Tournier
  2023-04-08 17:07 ` [bug#62684] [PATCH v2] " Leo Famulari
  2 siblings, 0 replies; 6+ messages in thread
From: Leo Famulari @ 2023-04-06 15:32 UTC (permalink / raw)
  To: 62684

I've updated my packages based on this patch. So far, so good.




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

* [bug#62684] [PATCH] gnu: Zstandard: Update to 1.5.5.
  2023-04-05 19:26 [bug#62684] [PATCH] gnu: Zstandard: Update to 1.5.5 Leo Famulari
  2023-04-06 15:32 ` Leo Famulari
@ 2023-04-07 10:52 ` Simon Tournier
  2023-04-08 17:07   ` Leo Famulari
  2023-04-08 17:07 ` [bug#62684] [PATCH v2] " Leo Famulari
  2 siblings, 1 reply; 6+ messages in thread
From: Simon Tournier @ 2023-04-07 10:52 UTC (permalink / raw)
  To: Leo Famulari, 62684

Hi Leo,

On mer., 05 avril 2023 at 15:26, Leo Famulari <leo@famulari.name> wrote:

> +    (replacement zstd-1.5.5)
>      (version "1.5.0")

[...]

> +(define-public zstd-1.5.5
> +  (package
> +    (inherit zstd)
> +    (version "1.5.5")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append "https://github.com/facebook/zstd/releases/download/"
> +                           "v" version "/zstd-" version ".tar.gz"))
> +       (sha256
> +        (base32 "1r1ydmj7ib3g5372yj3k40vl3b9ax0154qg2lqcy7ylwhb69chww"))))))

I am always confused by the implication of such change.

--8<---------------cut here---------------start------------->8---
$ ./pre-inst-env guix show zstd | recsel -p name,version
name: zstd
version: 1.5.5

name: zstd
version: 1.5.0

$ ./pre-inst-env guix build zstd@1.5.0
/gnu/store/g8cl62bmsdsqn14yxghdl882zn0ls8n9-zstd-1.5.5-lib
/gnu/store/b980xf8i6qmx7iaih1bfnqvaihg37p3b-zstd-1.5.5
/gnu/store/6iysnbm6rb9hm61f7jsqgiry5l9v9yca-zstd-1.5.5-static

$ ./pre-inst-env guix build zstd@1.5.0 --no-grafts
/gnu/store/3x3dl71d4xm6y4hjwq110hmfyfx0xc6j-zstd-1.5.0-lib
/gnu/store/bn6pk5zjjdpdfzb6yfr5psi9pji9w51n-zstd-1.5.0
/gnu/store/wa5pngf2lywgi8vd8k9b1k13wp2acvi4-zstd-1.5.0-static
--8<---------------cut here---------------end--------------->8---

Well, maybe something like:

--8<---------------cut here---------------start------------->8---
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 8a78fee107..5841ea0cf0 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -1637,6 +1637,7 @@ (define-public zstd
     (name "zstd")
     (replacement zstd-1.5.5)
     (version "1.5.0")
+    (properties `((hidden? . #true)))
     (source
      (origin
        (method url-fetch)
@@ -1726,6 +1727,7 @@ (define-public zstd-1.5.5
   (package
     (inherit zstd)
     (version "1.5.5")
+    (properties '())
     (source
      (origin
        (method url-fetch)
--8<---------------cut here---------------end--------------->8---

would be less confusing.

Note this discussion [1] about similar examples.  And this patch [2] as
an attempt to address the UX issue.

1: https://yhetil.org/guix/86czvohn86.fsf@gmail.com/
2: https://yhetil.org/guix/86im5a6ea4.fsf@gmail.com

Cheers,
simon




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

* [bug#62684] [PATCH] gnu: Zstandard: Update to 1.5.5.
  2023-04-07 10:52 ` Simon Tournier
@ 2023-04-08 17:07   ` Leo Famulari
  0 siblings, 0 replies; 6+ messages in thread
From: Leo Famulari @ 2023-04-08 17:07 UTC (permalink / raw)
  To: Simon Tournier; +Cc: 62684

On Fri, Apr 07, 2023 at 12:52:40PM +0200, Simon Tournier wrote:
> Well, maybe something like:
[...]
> +    (properties `((hidden? . #true)))

Yes, thank you. Please see version 2 of the patch.

I tried using the HIDDEN-PACKAGE procedure for zstd@1.5.0. It doesn't
change the derivation, which is good, but I don't know how to un-hide
the replacement. So this is good enough, I think.




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

* [bug#62684] [PATCH v2] gnu: Zstandard: Update to 1.5.5.
  2023-04-05 19:26 [bug#62684] [PATCH] gnu: Zstandard: Update to 1.5.5 Leo Famulari
  2023-04-06 15:32 ` Leo Famulari
  2023-04-07 10:52 ` Simon Tournier
@ 2023-04-08 17:07 ` Leo Famulari
  2023-04-12 20:44   ` bug#62684: " Leo Famulari
  2 siblings, 1 reply; 6+ messages in thread
From: Leo Famulari @ 2023-04-08 17:07 UTC (permalink / raw)
  To: 62684

This fixes a corruption bug:

https://github.com/facebook/zstd/releases/tag/v1.5.5

* gnu/packages/compression.scm (zstd)[replacement]: New field.
(zstd-1.5.5): New variable.
---
 gnu/packages/compression.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index e58fd65e49..1187d12421 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -1635,6 +1635,13 @@ (define-public unshield
 (define-public zstd
   (package
     (name "zstd")
+    ;; Replace to the data corruption bug fixed in Zstd 1.5.5.
+    ;; https://github.com/facebook/zstd/releases/tag/v1.5.5
+    (replacement zstd-1.5.5)
+    ;; Hide this buggy package in the Guix UI. If you add another
+    ;; property to this package, adjust the properties in the package
+    ;; replacement accordingly.
+    (properties `((hidden? . #true)))
     (version "1.5.0")
     (source
      (origin
@@ -1721,6 +1728,20 @@ (define-public zstd
                    license:public-domain ; zlibWrapper/examples/fitblk*
                    license:zlib))))      ; zlibWrapper/{gz*.c,gzguts.h}
 
+(define-public zstd-1.5.5
+  (package
+    (inherit zstd)
+    ;; Don't hide this package from the UI.
+    (properties '())
+    (version "1.5.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/facebook/zstd/releases/download/"
+                           "v" version "/zstd-" version ".tar.gz"))
+       (sha256
+        (base32 "1r1ydmj7ib3g5372yj3k40vl3b9ax0154qg2lqcy7ylwhb69chww"))))))
+
 (define-public pzstd
   (package/inherit zstd
     (name "pzstd")
-- 
2.39.2





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

* bug#62684: [PATCH v2] gnu: Zstandard: Update to 1.5.5.
  2023-04-08 17:07 ` [bug#62684] [PATCH v2] " Leo Famulari
@ 2023-04-12 20:44   ` Leo Famulari
  0 siblings, 0 replies; 6+ messages in thread
From: Leo Famulari @ 2023-04-12 20:44 UTC (permalink / raw)
  To: 62684-done

On Sat, Apr 08, 2023 at 01:07:12PM -0400, Leo Famulari wrote:
> This fixes a corruption bug:
> 
> https://github.com/facebook/zstd/releases/tag/v1.5.5
> 
> * gnu/packages/compression.scm (zstd)[replacement]: New field.
> (zstd-1.5.5): New variable.

Pushed as 60c97c60a53686ec321eb541b85e01b6decc2014




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

end of thread, other threads:[~2023-04-12 20:47 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-05 19:26 [bug#62684] [PATCH] gnu: Zstandard: Update to 1.5.5 Leo Famulari
2023-04-06 15:32 ` Leo Famulari
2023-04-07 10:52 ` Simon Tournier
2023-04-08 17:07   ` Leo Famulari
2023-04-08 17:07 ` [bug#62684] [PATCH v2] " Leo Famulari
2023-04-12 20:44   ` bug#62684: " Leo Famulari

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).