From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:36383) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iFPU9-00053y-9P for guix-patches@gnu.org; Tue, 01 Oct 2019 17:15:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iFPU7-0006HR-JY for guix-patches@gnu.org; Tue, 01 Oct 2019 17:15:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:54408) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iFPU7-0006HN-Gl for guix-patches@gnu.org; Tue, 01 Oct 2019 17:15:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iFPU7-0006Y6-AC for guix-patches@gnu.org; Tue, 01 Oct 2019 17:15:03 -0400 Subject: [bug#37519] [PATCH v3] gnu: add iwd. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= In-Reply-To: <20190930144321.9187-1-brice@waegenei.re> (Brice Waegeneire's message of "Mon, 30 Sep 2019 16:43:21 +0200") References: <20190926142340.29343-1-brice@waegenei.re> <20190930144321.9187-1-brice@waegenei.re> Date: Tue, 01 Oct 2019 23:14:12 +0200 Message-ID: <87zhikjhi3.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-done@debbugs.gnu.org, 37493-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello, (Now with the patch=E2=80=A6) Brice Waegeneire skribis: > * gnu/packages/networking.scm (iwd): New variable. I changed it as follows so that the test is really disabled and committed. Thanks! 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 bc768c6697..07b056adab 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -2621,14 +2621,13 @@ protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP. ") dbus "/share/dbus-1/system-services"))) #:phases (modify-phases %standard-phases - (add-before 'configure 'pre-configure + (add-before 'bootstrap 'pre-bootstrap (lambda _ - ;; Test disabled because it need the kernel module - ;; pkcs8_key_parser loaded. (substitute* "Makefile.am" - (("unit\\/test-eapol.*? ") "")) - ;; Don't try to 'mkdir /var'. - (substitute* "Makefile.in" + ;; Test disabled because it needs the kernel module + ;; 'pkcs8_key_parser' loaded. + (("unit\\/test-eapol.*? ") "") + ;; Don't try to 'mkdir /var'. (("\\$\\(MKDIR_P\\) -m 700") "true")) #t))))) (home-page "https://git.kernel.org/pub/scm/network/wireless/iwd.git/") --=-=-=--