me
/
guix
Archived
1
0
Fork 0

gnu: cppzmq: Update to 4.8.1.

* gnu/packages/networking.scm (cppzmq)[version]: Update to 4.8.1.
[arguments]: Update to run test suite except when cross-compiling.
[inputs]: Add catch2-framework.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Simon South 2022-01-28 05:02:13 -05:00 committed by Ludovic Courtès
parent 26da81afed
commit dd823172d8
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 4 additions and 8 deletions

View File

@ -1152,7 +1152,7 @@ between different versions of ØMQ.")
(define-public cppzmq (define-public cppzmq
(package (package
(name "cppzmq") (name "cppzmq")
(version "4.6.0") (version "4.8.1")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
@ -1160,19 +1160,15 @@ between different versions of ØMQ.")
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(sha256 (sha256
(base32 (base32
"19acx2bzi4n6fdnfgkja1nds7m1bwg8lw5vfcijrx9fv75pa7m8h")) "0zzq20wzk5grshxfqhqgqqfwb38w3k83r821isvyaxghsglpwks3"))
(file-name (git-file-name name version)))) (file-name (git-file-name name version))))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (arguments
'(;; FIXME: The test suite requires downloading Catch and custom `(#:tests? ,(not (%current-target-system)))) ; run unless cross-compiling
;; CMake targets, and refuses to use the system version.
;; See <https://github.com/zeromq/cppzmq/issues/334>.
#:tests? #f
#:configure-flags '("-DCPPZMQ_BUILD_TESTS=OFF")))
(native-inputs (native-inputs
(list pkg-config)) (list pkg-config))
(inputs (inputs
(list zeromq)) (list catch-framework2 zeromq))
(home-page "https://zeromq.org") (home-page "https://zeromq.org")
(synopsis "C++ bindings for the ØMQ messaging library") (synopsis "C++ bindings for the ØMQ messaging library")
(description (description