gnu: lz4: Update to 1.8.1.

* gnu/packages/compression.scm (lz4): Update to 1.8.1.
[arguments]: Enable ‘#:parallel-tests?’, now considered safe upstream.
Use ‘more GNU’-style lowercase ‘prefix=’.
This commit is contained in:
Tobias Geerinckx-Rice 2018-01-13 12:23:57 +01:00
parent f05c46d9a5
commit 0dd6d21ae3
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 3 additions and 4 deletions

View File

@ -710,7 +710,7 @@ writing of compressed data created with the zlib and bzip2 libraries.")
(define-public lz4 (define-public lz4
(package (package
(name "lz4") (name "lz4")
(version "1.8.0") (version "1.8.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
@ -718,15 +718,14 @@ writing of compressed data created with the zlib and bzip2 libraries.")
"v" version ".tar.gz")) "v" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"1xnckwwah74gl98gylf1b00vk4km1d8sgd8865h07ccvgbm8591c")) "0jdknxz66gak4w7j7b8n18xf28xw3yb1v6npsl4fgiiwnq0fjbgw"))
(file-name (string-append name "-" version ".tar.gz")))) (file-name (string-append name "-" version ".tar.gz"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs `(("valgrind" ,valgrind))) ; for tests (native-inputs `(("valgrind" ,valgrind))) ; for tests
(arguments (arguments
`(#:test-target "test" `(#:test-target "test"
#:parallel-tests? #f ; tests fail if run in parallel
#:make-flags (list "CC=gcc" #:make-flags (list "CC=gcc"
(string-append "PREFIX=" (assoc-ref %outputs "out"))) (string-append "prefix=" (assoc-ref %outputs "out")))
#:phases (modify-phases %standard-phases #:phases (modify-phases %standard-phases
(delete 'configure)))) ; no configure script (delete 'configure)))) ; no configure script
(home-page "http://www.lz4.org") (home-page "http://www.lz4.org")