gnu: czmq: Update to 4.2.0.

* gnu/packages/networking.scm (czmq): Update to 4.2.0.
[arguments]: Enable tests, but patch out the non-working one.
This commit is contained in:
Marius Bakke 2019-07-19 15:00:03 +02:00
parent 0fdec2a309
commit f02ab17b4a
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 12 additions and 14 deletions

View File

@ -296,7 +296,7 @@ more.")
(define-public czmq (define-public czmq
(package (package
(name "czmq") (name "czmq")
(version "4.1.1") (version "4.2.0")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
@ -305,21 +305,19 @@ more.")
"/" name "-" version ".tar.gz")) "/" name "-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"1h5hrcsc30fcwb032vy5gxkq4j4vv1y4dj460rfs1hhxi0cz83zh")))) "1szciz62sk3fm4ga9qjpxz0n0lazvphm32km95bq92ncng12kayg"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
'(;; TODO Tests fail for some reason: '(#:configure-flags '("--enable-drafts")
;; * zauth: OK #:phases (modify-phases %standard-phases
;; * zbeacon: OK (skipping test, no UDP broadcasting) (add-before 'check 'patch-tests
;; E: (czmq_selftest) 18-02-24 16:25:52 No broadcast interface found, (ZSYS_INTERFACE=lo) (lambda _
;; make[2]: *** [Makefile:2245: check-local] Segmentation fault ;; XXX FIXME: Disable the zproc test, which fails on some
;; make[2]: Leaving directory '/tmp/guix-build-czmq-4.1.0.drv-0/czmq-4.1.0' ;; hardware: <https://github.com/zeromq/czmq/issues/2007>.
;; make[1]: *** [Makefile:2032: check-am] Error 2 (substitute* "src/czmq_selftest.c"
;; make[1]: Leaving directory '/tmp/guix-build-czmq-4.1.0.drv-0/czmq-4.1.0' (("\\{ \"zproc\", zproc_test.*")
;; make: *** [Makefile:1588: check-recursive] Error 1 ""))
;; phase `check' failed after 19.4 seconds #t)))))
#:tests? #f
#:configure-flags '("--enable-drafts")))
(inputs (inputs
`(("zeromq" ,zeromq))) `(("zeromq" ,zeromq)))
(home-page "http://zeromq.org") (home-page "http://zeromq.org")