summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2026-03-29 22:15:41 +0900
committerNoé Lopez <noelopez@free.fr>2026-08-25 01:15:27 +0200
commitc28d9bafffbb7f152d3b102174438f0274e9f237 (patch)
treed9d83a2d92046b36d45c53fee8f04c864e37edb2 /gnu/packages
parentc4f062a4062f7049182b7f67cbc2707e37d84623 (diff)
gnu: libnice: Update to 0.1.23.
* gnu/packages/networking.scm (libnice): Update to 0.1.23. [#:phases] {disable-failing-tests}: Reinstate 'test-new-trickle'. Disable test-slow-resolving. Change-Id: I1765304e09f5493a8096e42f5f40a86517888239 Signed-off-by: Noé Lopez <noelopez@free.fr>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/networking.scm15
1 files changed, 7 insertions, 8 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index cf092389992..36869b44e4f 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -533,7 +533,7 @@ and Ethernet frame transmission.")
533(define-public libnice 533(define-public libnice
534 (package 534 (package
535 (name "libnice") 535 (name "libnice")
536 (version "0.1.22") 536 (version "0.1.23")
537 (source 537 (source
538 (origin 538 (origin
539 (method git-fetch) 539 (method git-fetch)
@@ -543,7 +543,7 @@ and Ethernet frame transmission.")
543 (file-name (git-file-name name version)) 543 (file-name (git-file-name name version))
544 (sha256 544 (sha256
545 (base32 545 (base32
546 "0ik45q1qlr04llr2ssm6zb73840dmn31q303k3qrcpgj0jp578hg")))) 546 "0zqnqhcm1rx5axbzd448yi6j4bq4kykiqb4wihs2p8h1k49nkyjh"))))
547 (build-system meson-build-system) 547 (build-system meson-build-system)
548 (outputs '("out" "doc")) 548 (outputs '("out" "doc"))
549 (arguments 549 (arguments
@@ -565,17 +565,16 @@ and Ethernet frame transmission.")
565 (string-append "# " all)) 565 (string-append "# " all))
566 ;; The following test is disabled as it fails in a 566 ;; The following test is disabled as it fails in a
567 ;; nondeterministic fashion (see: 567 ;; nondeterministic fashion (see:
568 ;; https://gitlab.freedesktop.org/libnice/libnice/-/issues/151). 568 ;; <https://gitlab.freedesktop.org/libnice/libnice/-/issues/151>).
569 (("'test-bsd'" all) 569 (("'test-bsd'" all)
570 (string-append "# " all)) 570 (string-append "# " all))
571 ;; The test-new-trickle fails with GLib 2.83.0 (see: 571 ;; This test uses getaddrinfo, which cannot resolve in the
572 ;; https://gitlab.freedesktop.org/libnice/libnice/-/issues/198). 572 ;; build environment.
573 (("'test-new-trickle'" all) 573 ((".*'test-slow-resolving',.*") ""))
574 (string-append "# " all)))
575 (substitute* "stun/tests/meson.build" 574 (substitute* "stun/tests/meson.build"
576 ;; test-bind.c:234: bad_responses: Assertion `len >= 20' 575 ;; test-bind.c:234: bad_responses: Assertion `len >= 20'
577 ;; failed (see: 576 ;; failed (see:
578 ;; https://gitlab.freedesktop.org/libnice/libnice/-/issues/150). 577 ;; <https://gitlab.freedesktop.org/libnice/libnice/-/issues/150>).
579 (("'bind', ") 578 (("'bind', ")
580 "")))) 579 ""))))
581 (add-after 'install 'move-docs 580 (add-after 'install 'move-docs