From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 30 03:35:02 2020 Received: (at submit) by debbugs.gnu.org; 30 Jul 2020 07:35:02 +0000 Received: from localhost ([127.0.0.1]:34681 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k135i-0000QE-Bs for submit@debbugs.gnu.org; Thu, 30 Jul 2020 03:35:02 -0400 Received: from lists.gnu.org ([209.51.188.17]:43922) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k135e-0000Ph-5o for submit@debbugs.gnu.org; Thu, 30 Jul 2020 03:35:00 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:41490) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1k135e-0006nw-0J for guix-patches@gnu.org; Thu, 30 Jul 2020 03:34:58 -0400 Received: from wp224.webpack.hosteurope.de ([80.237.132.231]:58600) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1k135W-00074g-Rh for guix-patches@gnu.org; Thu, 30 Jul 2020 03:34:57 -0400 Received: from www.rohleder.de ([37.61.204.227]); authenticated by wp224.webpack.hosteurope.de running ExIM with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) id 1k133C-0001yn-NN; Thu, 30 Jul 2020 09:32:26 +0200 Received: from [192.168.1.3] (helo=micha) by www.rohleder.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1k133B-0005ZE-PC for guix-patches@gnu.org; Thu, 30 Jul 2020 09:32:25 +0200 From: Michael Rohleder To: guix-patches@gnu.org Subject: [PATCH] gnu: python2-setproctitle: fix build. X-PGP-Fingerprint: 755E 2DE5 D0D5 85C5 2E78 2830 7C7A FFBE FEF2 CB25 X-PGP-Key: https://www.rohleder.de/~mike/pgpkey.asc Date: Thu, 30 Jul 2020 09:32:18 +0200 Message-ID: <87sgd9e9vh.fsf@rohleder.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-bounce-key: webpack.hosteurope.de;mike@rohleder.de;1596094490;a21f46d6; X-HE-SMSGID: 1k133C-0001yn-NN Received-SPF: permerror client-ip=80.237.132.231; envelope-from=mike@rohleder.de; helo=wp224.webpack.hosteurope.de X-detected-operating-system: by eggs.gnu.org: First seen = 2020/07/30 01:42:14 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x [generic] [fuzzy] X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, T_SPF_HELO_TEMPERROR=0.01, T_SPF_PERMERROR=0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/plain python2-setproctitle fails in test phase, because the "--embed" parameter should not be used for python-config, but for python3-config, it seems. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-python2-setproctitle-fix-python2-setproctitle-bu.patch Content-Transfer-Encoding: quoted-printable Content-Description: [PATCH] gnu: python2-setproctitle: fix build. From=20be8c9241a3dd2d9cf180ec82d787e891731b70e4 Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Thu, 30 Jul 2020 09:22:22 +0200 Subject: [PATCH] gnu: python2-setproctitle: fix build. * gnu/packages/python-xyz.scm (python2-setproctitle): fix build. =2D-- gnu/packages/python-xyz.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0b33fb3a4c..a5c2e60ce4 100644 =2D-- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -13529,9 +13529,9 @@ English stemmer.") (replace 'check (lambda _ (setenv "PYTHON" (or (which "python3") (which "python"))) =2D (setenv "PYCONFIG" (string-append (or (which "python3-confi= g") =2D (which "python-config= ")) =2D " --embed")) + (setenv "PYCONFIG" (if (which "python3-config") + "python3-config --embed" + "python-config")) (setenv "CC" "gcc") ;; No need to extend PYTHONPATH to find the built package, si= nce ;; the Makefile will build anyway =2D-=20 2.27.0 --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable =2D-=20 Reality always seems harsher in the early morning. --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEdV4t5dDVhcUueCgwfHr/vv7yyyUFAl8id4IACgkQfHr/vv7y yyV+IAf/WW8d9ijXF/ih1PF+ol1b9OG02oc9u3x/dBgNm1ZaT8/TKCkxRCEmPLwT B8M01i83vfnbTB2+eBFEeqaEK4NQ25xtvTWm+u0O54cX6Y+oYgr5y8+ePF9IR600 3a/qY1MqoSOkO6M81fj3TuIozRWnkMdHUoaRsZD7dGXfIzkRdHWPlHJFoIQReWZM ABnoKkSfe/Tv8NfIH6dY9sfUleBRxh/FotASoTUObbLRZMvVUTwF1XXHykK3rCUC xj39+ywzF+0Y/LQKL1wE1eDPxEKFI31Wd/oiW2V6pUnwPlr3O6yBCcVwjZaUuD0O N4uAWV1ac7xdakxY5Yu7xPDobY1KOA== =ViXY -----END PGP SIGNATURE----- --==-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 30 06:10:56 2020 Received: (at 42616-done) by debbugs.gnu.org; 30 Jul 2020 10:10:56 +0000 Received: from localhost ([127.0.0.1]:35027 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k15Wa-0004Bw-8C for submit@debbugs.gnu.org; Thu, 30 Jul 2020 06:10:56 -0400 Received: from tobias.gr ([80.241.217.52]:35830) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k15WX-0004Bm-Mj for 42616-done@debbugs.gnu.org; Thu, 30 Jul 2020 06:10:54 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id 91568c7f; Thu, 30 Jul 2020 10:11:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=from:to:cc :subject:references:in-reply-to:date:message-id:mime-version :content-type; s=2018; i=me@tobias.gr; bh=/kdv2MK3TMr/a6yMpjacsx V9MNJKtBWCJvdqpVKCeiw=; b=ISJ9QWEO+Efhe6XNrTkVOLBsyTcgBJn6CQp3QG TKRbdPctU7NHzY2KcQXbCziP9wU3JTYC4hECQ2st/9fUaydXwi8nhY4jwNbj8tcA LX3hYcwpC3hrlOPZWOyAC7tlsG2RUURZuJqPczcidstd/W3y+lXvGdTJNbyrKb4r Zodg6G3kMhvT9U+VreV2q78zB7/kIQiBXZjSHQOuYIcc06ZkMBnm8krkb649GbSG lLhqOq/eUzt5pfHdpBW+RicXmZ9SEhDUlxpKW1mbovSbd5o6kx8BsDwL2Gcbmugl UdCI0AHAfLHcPjdfTZTbix+GLsfXNR5YJINwD6dyLXQK/GSA== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id f62eca88 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Thu, 30 Jul 2020 10:11:02 +0000 (UTC) BIMI-Selector: v=BIMI1; s=default; From: Tobias Geerinckx-Rice To: Michael Rohleder Subject: Re: [bug#42616] [PATCH] gnu: python2-setproctitle: fix build. References: <87sgd9e9vh.fsf@rohleder.de> In-reply-to: <87sgd9e9vh.fsf@rohleder.de> Date: Thu, 30 Jul 2020 12:10:45 +0200 Message-ID: <87bljx9uu2.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 42616-done Cc: 42616-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Michael Rohleder =E5=86=99=E9=81=93=EF=BC=9A > python2-setproctitle fails in test phase, because the "--embed" > parameter should not be used for python-config, but for=20 > python3-config, > it seems. Indeed. Pushed with tweaked commit message as=20 39386de24439c81f1a7c683ae8c5dd1c5f24e09e. Thanks! T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQT12iAyS4c9C3o4dnINsP+IT1VteQUCXyKcpQAKCRANsP+IT1Vt eXoFAP9YMxHDwzF6JED4FWhzjUR7m5svzwe+PcQTVFw1e5LLNQD/QxJ5GvVoFHHK zUIyZ7piGlHWUu55GBH/P6PZfjWHlwI= =Hkje -----END PGP SIGNATURE----- --=-=-=-- From unknown Tue Aug 19 10:05:38 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 27 Aug 2020 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator