gnu: redis: Update to 7.0.12.
* gnu/packages/databases.scm (redis): Update to 7.0.12. [arguments]: Ever so slightly tweak style.
This commit is contained in:
parent
4d87d98aee
commit
6c67d3b026
1 changed files with 4 additions and 4 deletions
|
@ -2420,14 +2420,14 @@ similar to BerkeleyDB, LevelDB, etc.")
|
||||||
(define-public redis
|
(define-public redis
|
||||||
(package
|
(package
|
||||||
(name "redis")
|
(name "redis")
|
||||||
(version "7.0.9")
|
(version "7.0.12")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://download.redis.io/releases/redis-"
|
(uri (string-append "https://download.redis.io/releases/redis-"
|
||||||
version".tar.gz"))
|
version".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0rczzcy2mwy6hjdgg10l9lr4vavh8jrs7zlb0ba534bwlk13awgp"))
|
"1dwayif99cipf0xs26zipbnj800px31pbsxz747bzclb4xdkvn4x"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
;; Delete bundled jemalloc, as the package will use the libc one
|
;; Delete bundled jemalloc, as the package will use the libc one
|
||||||
|
@ -2435,7 +2435,7 @@ similar to BerkeleyDB, LevelDB, etc.")
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
#:make-flags #~(list #$(string-append "CC=" (cc-for-target))
|
#:make-flags #~(list (string-append "CC=" #$(cc-for-target))
|
||||||
"MALLOC=libc"
|
"MALLOC=libc"
|
||||||
"LDFLAGS=-ldl"
|
"LDFLAGS=-ldl"
|
||||||
(string-append "PREFIX=" #$output))
|
(string-append "PREFIX=" #$output))
|
||||||
|
@ -2452,7 +2452,7 @@ similar to BerkeleyDB, LevelDB, etc.")
|
||||||
(which "env")))))
|
(which "env")))))
|
||||||
(add-after 'unpack 'adjust-tests
|
(add-after 'unpack 'adjust-tests
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Disable failing tests
|
;; Disable failing tests.
|
||||||
(substitute* "tests/test_helper.tcl"
|
(substitute* "tests/test_helper.tcl"
|
||||||
;; The AOF tests cause the test suite to hang waiting for a
|
;; The AOF tests cause the test suite to hang waiting for a
|
||||||
;; "background AOF rewrite to finish", perhaps because dead
|
;; "background AOF rewrite to finish", perhaps because dead
|
||||||
|
|
Reference in a new issue