diff options
author | Marius Bakke <marius@gnu.org> | 2021-05-16 09:39:25 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-05-22 17:08:13 +0200 |
commit | b4bf509785acab8e5785299ace09d422c3b19186 (patch) | |
tree | 3217d7dbf1a7170504e3e229a301de5c5f59c210 | |
parent | bd6cb1d4ebb3da1110025e1a73a299bed4174035 (diff) | |
download | guix-b4bf509785acab8e5785299ace09d422c3b19186.tar.gz |
gnu: zstd: Update to 1.5.0.
* gnu/packages/compression.scm (zstd): Update to 1.5.0. [arguments]: Remove obsolete phase.
-rw-r--r-- | gnu/packages/compression.scm | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 11fc339ee5..86514cc389 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -1427,14 +1427,14 @@ or junctions, and always follows hard links.") (define-public zstd (package (name "zstd") - (version "1.4.9") + (version "1.5.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/facebook/zstd/releases/download/" "v" version "/zstd-" version ".tar.gz")) (sha256 - (base32 "14yj7309gsvg39rki4xqnd6w5idmqi0655v1fc0mk1m2kvhp9b19")))) + (base32 "150y541303vnvfhd8wkbih00lfvvm98rd12yijwlbkqzg3xgp52i")))) (build-system gnu-build-system) (outputs '("out" ;1.2MiB executables and documentation "lib" ;1.2MiB shared library and headers @@ -1442,12 +1442,6 @@ or junctions, and always follows hard links.") (arguments `(#:phases (modify-phases %standard-phases - (add-after 'unpack 'fix-tests-32bit - ;; Remove when https://github.com/facebook/zstd/issues/2528 is fixed. - (lambda _ - (substitute* "tests/playTests.sh" - (("roundTripTest -g8M \"19 -T0 --long\"") - "roundTripTest -g8M \"16 -T0 --long\"")))) (add-after 'unpack 'remove-bogus-check (lambda _ ;; lib/Makefile falsely claims that no .pc file can be created. |