gnu: libqb: Update to 2.0.6.
* gnu/packages/high-availability.scm (libqb): Update to 2.0.6. Run `guix style' over the package. [native-inputs]: Add autoconf, automake, libtools to fix configure and build phases. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
69598d8489
commit
1589a825da
|
@ -55,9 +55,7 @@
|
||||||
(define-public libqb
|
(define-public libqb
|
||||||
(package
|
(package
|
||||||
(name "libqb")
|
(name "libqb")
|
||||||
;; NOTE: We are using a Release Candidate version (for 2.0) here because
|
(version "2.0.6")
|
||||||
;; of the linker issues with the previous release.
|
|
||||||
(version "1.9.1")
|
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -65,13 +63,14 @@
|
||||||
version "/libqb-" version ".tar.xz"))
|
version "/libqb-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"008vvw504kh40br5v2xkqavnp9vpmjvf768faqzv1d00fd53ingn"))))
|
"071k916vz9ppyb69rpk792fzjs3nf3chakn10i496scgiqh49rzi"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs (list autoconf automake libtool libxml2 pkg-config))
|
||||||
(list pkg-config libxml2))
|
|
||||||
(home-page "https://clusterlabs.github.io/libqb/")
|
(home-page "https://clusterlabs.github.io/libqb/")
|
||||||
(synopsis "Library providing high performance logging, tracing, ipc, and poll")
|
(synopsis
|
||||||
(description "Libqb is a library with the primary purpose of providing
|
"Library providing high performance logging, tracing, ipc, and poll")
|
||||||
|
(description
|
||||||
|
"Libqb is a library with the primary purpose of providing
|
||||||
high-performance, reusable features for client-server architecture, such as
|
high-performance, reusable features for client-server architecture, such as
|
||||||
logging, tracing, inter-process communication (IPC), and polling. Libqb is
|
logging, tracing, inter-process communication (IPC), and polling. Libqb is
|
||||||
not intended to be an all-encompassing library, but instead provide focused
|
not intended to be an all-encompassing library, but instead provide focused
|
||||||
|
|
Reference in New Issue