gnu: guile-wiredtiger: Update to 0.7.0.
* gnu/packages/databases.scm (guile-wiredtiger): Update to 0.7.0. [inputs]: Replace wiredtiger with wiredtiger-3 [propagated-inputs]: Remove guile-lib, add guile-bytestructures [description]: Update it. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
4680fef705
commit
b1e6b93805
|
@ -1784,16 +1784,16 @@ trees (LSM), for sustained throughput under random insert workloads.")
|
||||||
(define-public guile-wiredtiger
|
(define-public guile-wiredtiger
|
||||||
(package
|
(package
|
||||||
(name "guile-wiredtiger")
|
(name "guile-wiredtiger")
|
||||||
(version "0.6.3")
|
(version "0.7.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://framagit.org/a-guile-mind/guile-wiredtiger.git")
|
(url "https://framagit.org/a-guile-mind/guile-wiredtiger.git")
|
||||||
(commit "070ed68139d99c279f058a6c293f00292d35dbd7")))
|
(commit "340ad4bc2ff4dcc6216a2f5c6f9172ca320ac66b")))
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
(file-name (string-append name "-" version "-checkout"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"14rna97wsylajzxfif95wnblq85csgcfc666gh5dl0ssgd7x8llh"))))
|
"15j36bvxxzil7qpwlmh1rffqpva3ynvrcpqhhqbj2c9208ayz595"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:parallel-tests? #f ;; tests can't be run in parallel, yet.
|
'(#:parallel-tests? #f ;; tests can't be run in parallel, yet.
|
||||||
|
@ -1801,21 +1801,19 @@ trees (LSM), for sustained throughput under random insert workloads.")
|
||||||
(list (string-append "--with-libwiredtiger-prefix="
|
(list (string-append "--with-libwiredtiger-prefix="
|
||||||
(assoc-ref %build-inputs "wiredtiger")))
|
(assoc-ref %build-inputs "wiredtiger")))
|
||||||
#:make-flags '("GUILE_AUTO_COMPILE=0")))
|
#:make-flags '("GUILE_AUTO_COMPILE=0")))
|
||||||
;; TODO: Remove microkanren.scm when we have a separate package
|
|
||||||
;; for it.
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
("automake" ,automake)
|
("automake" ,automake)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("wiredtiger" ,wiredtiger)
|
`(("wiredtiger" ,wiredtiger-3)
|
||||||
("guile" ,guile-2.2)))
|
("guile" ,guile-2.2)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("guile-lib" ,guile-lib))) ;for (htmlprag)
|
`(("guile-bytestructures" ,guile-bytestructures)))
|
||||||
(synopsis "WiredTiger bindings for GNU Guile")
|
(synopsis "WiredTiger bindings for GNU Guile")
|
||||||
(description
|
(description
|
||||||
"This package provides Guile bindings to the WiredTiger ``NoSQL''
|
"This package provides Guile bindings to the WiredTiger ``NoSQL''
|
||||||
database. Various higher level database abstractions.")
|
database.")
|
||||||
(home-page "https://framagit.org/a-guile-mind/guile-wiredtiger")
|
(home-page "https://framagit.org/a-guile-mind/guile-wiredtiger")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue