mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: redis: Update to 6.2.6.
* gnu/packages/databases.scm (redis): Update to 6.2.6. [source]: Don't explicitly return #t snippet. [arguments]: Nor from phases.
This commit is contained in:
parent
8452772433
commit
477f8c8ec0
1 changed files with 5 additions and 8 deletions
|
@ -2221,19 +2221,18 @@ similar to BerkeleyDB, LevelDB, etc.")
|
||||||
(define-public redis
|
(define-public redis
|
||||||
(package
|
(package
|
||||||
(name "redis")
|
(name "redis")
|
||||||
(version "6.2.4")
|
(version "6.2.6")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://download.redis.io/releases/redis-"
|
(uri (string-append "http://download.redis.io/releases/redis-"
|
||||||
version".tar.gz"))
|
version".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0vp1d9mlfsppry3nsj9f7bmh9wjgsy3jggp24sac1hhgl43c8cms"))
|
"1ariw5x33hmmm3d5al0j3307l5kf3vhmn78wpyaz67hia1x8nasv"))
|
||||||
(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
|
||||||
'(begin (delete-file-recursively "deps/jemalloc")
|
'(begin (delete-file-recursively "deps/jemalloc")))))
|
||||||
#t))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("procps" ,procps) ; for tests
|
`(("procps" ,procps) ; for tests
|
||||||
|
@ -2248,8 +2247,7 @@ similar to BerkeleyDB, LevelDB, etc.")
|
||||||
(("^TCLSH=.*")
|
(("^TCLSH=.*")
|
||||||
(string-append "TCLSH="
|
(string-append "TCLSH="
|
||||||
(assoc-ref inputs "tcl")
|
(assoc-ref inputs "tcl")
|
||||||
"/bin/tclsh")))
|
"/bin/tclsh")))))
|
||||||
#t))
|
|
||||||
(add-after 'unpack 'adjust-tests
|
(add-after 'unpack 'adjust-tests
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Disable failing tests
|
;; Disable failing tests
|
||||||
|
@ -2257,8 +2255,7 @@ similar to BerkeleyDB, LevelDB, etc.")
|
||||||
(("integration/failover") "")
|
(("integration/failover") "")
|
||||||
(("integration/replication-4") "")
|
(("integration/replication-4") "")
|
||||||
(("integration/replication-psync") "")
|
(("integration/replication-psync") "")
|
||||||
(("integration/replication[^-]") ""))
|
(("integration/replication[^-]") "")))))
|
||||||
#t)))
|
|
||||||
#:make-flags `("CC=gcc"
|
#:make-flags `("CC=gcc"
|
||||||
"MALLOC=libc"
|
"MALLOC=libc"
|
||||||
"LDFLAGS=-ldl"
|
"LDFLAGS=-ldl"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue