guix_mirror_bot pushed a commit to branch gnome-team
in repository guix.
commit 9268a70670a929fbb52cd5acaf40445e14333a85
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Sun Mar 29 22:15:41 2026 +0900
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 <[email protected]>
---
gnu/packages/networking.scm | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index cf09238999..36869b44e4 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -533,7 +533,7 @@ and Ethernet frame transmission.")
(define-public libnice
(package
(name "libnice")
- (version "0.1.22")
+ (version "0.1.23")
(source
(origin
(method git-fetch)
@@ -543,7 +543,7 @@ and Ethernet frame transmission.")
(file-name (git-file-name name version))
(sha256
(base32
- "0ik45q1qlr04llr2ssm6zb73840dmn31q303k3qrcpgj0jp578hg"))))
+ "0zqnqhcm1rx5axbzd448yi6j4bq4kykiqb4wihs2p8h1k49nkyjh"))))
(build-system meson-build-system)
(outputs '("out" "doc"))
(arguments
@@ -565,17 +565,16 @@ and Ethernet frame transmission.")
(string-append "# " all))
;; The following test is disabled as it fails in a
;; nondeterministic fashion (see:
- ;;
https://gitlab.freedesktop.org/libnice/libnice/-/issues/151).
+ ;;
<https://gitlab.freedesktop.org/libnice/libnice/-/issues/151>).
(("'test-bsd'" all)
(string-append "# " all))
- ;; The test-new-trickle fails with GLib 2.83.0 (see:
- ;;
https://gitlab.freedesktop.org/libnice/libnice/-/issues/198).
- (("'test-new-trickle'" all)
- (string-append "# " all)))
+ ;; This test uses getaddrinfo, which cannot resolve in the
+ ;; build environment.
+ ((".*'test-slow-resolving',.*") ""))
(substitute* "stun/tests/meson.build"
;; test-bind.c:234: bad_responses: Assertion `len >= 20'
;; failed (see:
- ;;
https://gitlab.freedesktop.org/libnice/libnice/-/issues/150).
+ ;;
<https://gitlab.freedesktop.org/libnice/libnice/-/issues/150>).
(("'bind', ")
""))))
(add-after 'install 'move-docs