From 2fb54e94c3091a69c59fdd1b68b849b28188e329 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Fri, 17 Dec 2021 16:19:32 -0500 Subject: gnu: libproxy: Remove target condition from check phase. * gnu/packages/networking.scm (libproxy)[phases]{check}: Remove target condition. --- gnu/packages/networking.scm | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'gnu/packages/networking.scm') diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index e4438d4a12..3ac01f43ea 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -2247,13 +2247,9 @@ sockets in Perl.") `(#:phases (modify-phases %standard-phases (replace 'check - ;; TODO(core-updates): Make this unconditional. - ,(if (%current-target-system) - '(lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "ctest" "-E" "url-test"))) - '(lambda _ - (invoke "ctest" "-E" "url-test"))))))) + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "ctest" "-E" "url-test"))))))) (synopsis "Library providing automatic proxy configuration management") (description "Libproxy handles the details of HTTP/HTTPS proxy configuration for applications across all scenarios. Applications using -- cgit v1.2.3 From fa8fb40f6bf333556e53db49b940bfa9b09e2b3c Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 4 Jan 2022 00:03:38 -0500 Subject: gnu: iwd: Update to 1.20. * gnu/packages/networking.scm (iwd): Update to 1.20. --- gnu/packages/networking.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/networking.scm') diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 3ac01f43ea..004c97cd20 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -3521,7 +3521,7 @@ powerful route filtering syntax and an easy-to-use configuration interface.") (define-public iwd (package (name "iwd") - (version "1.15") + (version "1.20") (source (origin ;; FIXME: We're using the bootstrapped sources because ;; otherwise using an external ell library is impossible. @@ -3531,7 +3531,7 @@ powerful route filtering syntax and an easy-to-use configuration interface.") "/wireless/iwd-" version ".tar.xz")) (sha256 (base32 - "0ngng9a9ra5w0mp2813yy2ihfibyx10ns6v5icdcp99db608xax7")))) + "03q5scahyg86h4bdxqxm32shyssgpmfp5b3183j01ig7mg6f4lbx")))) (build-system gnu-build-system) (inputs (list dbus ell readline)) -- cgit v1.2.3