From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:57104) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iaOOl-0005fy-Tf for guix-patches@gnu.org; Thu, 28 Nov 2019 13:20:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iaOOi-0000ZS-N3 for guix-patches@gnu.org; Thu, 28 Nov 2019 13:20:13 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:53121) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iaOMe-000120-Bf for guix-patches@gnu.org; Thu, 28 Nov 2019 13:20:12 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iaOMc-0008Er-6h for guix-patches@gnu.org; Thu, 28 Nov 2019 13:18:02 -0500 Subject: [bug#38419] [PATCH] gnu: bitlbee: Use Python 3. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:51231) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iaOMD-0004ci-8U for guix-patches@gnu.org; Thu, 28 Nov 2019 13:17:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iaOM8-0007DP-W7 for guix-patches@gnu.org; Thu, 28 Nov 2019 13:17:34 -0500 Received: from araneo.si ([90.157.193.204]:37450) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iaOM7-0006cm-7i for guix-patches@gnu.org; Thu, 28 Nov 2019 13:17:32 -0500 Received: from araneo.si (localhost.lan [127.0.0.1]) by araneo.si (OpenSMTPD) with ESMTP id 328e92ef for ; Thu, 28 Nov 2019 18:17:20 +0000 (UTC) From: Timotej Lazar Date: Thu, 28 Nov 2019 19:16:41 +0100 Message-Id: <20191128181641.5775-1-timotej.lazar@araneo.si> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: 38419@debbugs.gnu.org Cc: Timotej Lazar * gnu/packages/messaging.scm (bitlbee)[inputs]: Replace python-2 with python. [arguments]: Set the PYTHON environment variable before configuring. --- gnu/packages/messaging.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 2429bad3e5..97b4eb85e1 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -16,6 +16,7 @@ ;;; Copyright © 2018 Leo Famulari ;;; Copyright © 2018 Pierre-Antoine Rouby ;;; Copyright © 2019 Tanguy Le Carrour +;;; Copyright © 2019 Timotej Lazar ;;; ;;; This file is part of GNU Guix. ;;; @@ -181,11 +182,13 @@ end-to-end encryption.") (inputs `(("glib" ,glib) ("libotr" ,libotr) ("gnutls" ,gnutls) - ("python" ,python-2) + ("python" ,python) ("perl" ,perl))) (arguments `(#:phases (modify-phases %standard-phases + (add-before 'configure 'set-python + (lambda _ (setenv "PYTHON" (which "python3")) #t)) (add-after 'install 'install-etc (lambda* (#:key (make-flags '()) #:allow-other-keys) (apply invoke "make" "install-etc" make-flags))) -- 2.24.0