From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:56024) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iEJm3-0002Re-RI for guix-patches@gnu.org; Sat, 28 Sep 2019 16:57:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iEJm2-0002qw-GB for guix-patches@gnu.org; Sat, 28 Sep 2019 16:57:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:42556) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iEJm2-0002qk-Cf for guix-patches@gnu.org; Sat, 28 Sep 2019 16:57:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iEJm2-0001g4-BJ for guix-patches@gnu.org; Sat, 28 Sep 2019 16:57:02 -0400 Subject: [bug#37519] [PATCH v2 2/2] gnu: add iwd. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20190926214431.3515-1-brice@waegenei.re> <20190926214431.3515-2-brice@waegenei.re> Date: Sat, 28 Sep 2019 22:56:11 +0200 In-Reply-To: <20190926214431.3515-2-brice@waegenei.re> (Brice Waegeneire's message of "Thu, 26 Sep 2019 23:44:31 +0200") Message-ID: <8736ggnnro.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Brice Waegeneire Cc: 37519@debbugs.gnu.org, 37493@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Brice Waegeneire skribis: > * gnu/packages/networking.scm (iwd): New variable. On my machine I see one test failure: --8<---------------cut here---------------start------------->8--- FAIL: unit/test-eapol =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D test-eapol: unit/test-eapol.c:2959: eapol_sm_test_tls: Assertion `l_tls_set= _auth_data(s->tls, CERTDIR "cert-server.pem", CERTDIR "cert-server-key-pkcs= 8.pem", NULL)' failed. FAIL unit/test-eapol (exit status: 134) --8<---------------cut here---------------end--------------->8--- Could you take a look? Also, I had applied the cosmetic changes below. We=E2=80=99re almost there, thank you! :-) Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 5a9340c3bd..213ac4cfc1 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -2626,11 +2626,12 @@ protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP. ") ;; Don't try to 'mkdir /var'. (substitute* "Makefile.in" (("\\$\\(MKDIR_P\\) -m 700") - "true"))))))) - (home-page "https://git.kernel.org/cgit/network/wireless/iwd.git/") + "true")) + #t))))) + (home-page "https://git.kernel.org/pub/scm/network/wireless/iwd.git/") (synopsis "Internet Wireless Daemon") - (description "iwd is a wireless daemon for Linux written by Intel that -aims to replace WPA supplicant. It optimize resource utilization by not -depending on any external libraries and instead utilizing features provided by -the Linux Kernel to the maximum extent possible.") + (description "iwd is a wireless daemon for Linux that aims to replace WPA +Supplicant. It optimizes resource utilization by not depending on any external +libraries and instead utilizing features provided by the Linux kernel to the +maximum extent possible.") (license license:lgpl2.1+))) --=-=-=--