From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Subject: bug#35550: Installer: wpa_supplicant fails to start Date: Thu, 09 May 2019 00:25:59 +0200 Message-ID: <87imuktwg8.fsf@gnu.org> References: <87sgtv8hcz.fsf@gnu.org> <875zqr8dnw.fsf@gnu.org> <87k1f4y23d.fsf@gnu.org> <20190506220030.4a608b37@scratchpost.org> <87imumadvv.fsf@gnu.org> <874l65vwyn.fsf@gnu.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([209.51.188.92]:39490) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hOV1j-0001S0-Oe for bug-guix@gnu.org; Wed, 08 May 2019 18:27:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hOV1i-00082K-Qk for bug-guix@gnu.org; Wed, 08 May 2019 18:27:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:48913) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hOV1i-00082E-Ns for bug-guix@gnu.org; Wed, 08 May 2019 18:27:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hOV1i-00028t-J7 for bug-guix@gnu.org; Wed, 08 May 2019 18:27:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <874l65vwyn.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Wed, 08 May 2019 16:32:00 +0200") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Danny Milosavljevic Cc: sirgazil , 35550@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Ludovic Court=C3=A8s skribis: > Ludovic Court=C3=A8s skribis: > >> I=E2=80=99m proposing the addition below to be on the verrrry safe side. > > Pushed as Shepherd commit 1ebea0a6e4c6ff11212eda348072acf9c379e7b2. > > Unless something goes wrong, I=E2=80=99ll make Shepherd commit > fbb9c3fac745552eaf0f354bd0134cca7027bf17 version 0.6.1 in the coming > days (well, with an updated NEWS file.) If you want to re-test that wpa_supplicant does start correctly with the latest Shepherd, you can do so by applying the patch below to Guix. Ludo=E2=80=99. --=-=-= Content-Type: text/x-org Content-Disposition: inline diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index dfc3467bf8..6cabea0fb9 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -181,22 +181,30 @@ and provides a \"top-like\" mode (monitoring).") (define-public shepherd (package (name "shepherd") - (version "0.6.0") + (version "0.6.1pre1") (source (origin - (method url-fetch) - (uri (string-append "mirror://gnu/shepherd/shepherd-" - version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://git.savannah.gnu.org/git/shepherd.git") + (commit "fbb9c3fac745552eaf0f354bd0134cca7027bf17"))) (sha256 (base32 - "1ys2w83vm62spr8bx38sccfdpy9fqmj7wfywm5k8ihsy2k61da2i")))) + "0w7dx2i04qgykzhz4qir3rxnrdfza3q7kzh5z4mpmgjrp08pfnrn")))) (build-system gnu-build-system) (arguments - '(#:configure-flags '("--localstatedir=/var"))) + '(#:configure-flags '("--localstatedir=/var" + "ac_cv_path_MSGMERGE=true"))) (native-inputs `(("pkg-config" ,pkg-config) ;; This is the Guile we use as a cross-compiler... - ("guile" ,guile-2.2))) + ("guile" ,guile-2.2) + + ("texinfo" ,texinfo) + ("help2man" ,help2man) + ("gettext" ,gnu-gettext) + ("autoconf" ,autoconf) + ("automake" ,automake))) (inputs ;; ... and this is the one that appears in shebangs when cross-compiling. `(("guile" ,guile-2.2) --=-=-=--