From unknown Mon Jun 23 04:14:22 2025 X-Loop: help-debbugs@gnu.org Subject: bug#21219: automake: support for python3.4 Resent-From: Thomas Klausner Original-Sender: "Debbugs-submit" Resent-CC: bug-automake@gnu.org Resent-Date: Sat, 08 Aug 2015 17:00:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 21219 X-GNU-PR-Package: automake X-GNU-PR-Keywords: To: Stefano Lattarini Cc: 21219@debbugs.gnu.org X-Debbugs-Original-Cc: bug-automake@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.143905319029852 (code B ref -1); Sat, 08 Aug 2015 17:00:02 +0000 Received: (at submit) by debbugs.gnu.org; 8 Aug 2015 16:59:50 +0000 Received: from localhost ([127.0.0.1]:50794 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZO7TK-0007lQ-03 for submit@debbugs.gnu.org; Sat, 08 Aug 2015 12:59:50 -0400 Received: from eggs.gnu.org ([208.118.235.92]:35366) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZO7TI-0007lI-LN for submit@debbugs.gnu.org; Sat, 08 Aug 2015 12:59:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZO7TH-0007Xl-AE for submit@debbugs.gnu.org; Sat, 08 Aug 2015 12:59:48 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=BAYES_40 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:41879) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZO7TH-0007Xa-8D for submit@debbugs.gnu.org; Sat, 08 Aug 2015 12:59:47 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48857) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZO7TG-0007WA-CJ for bug-automake@gnu.org; Sat, 08 Aug 2015 12:59:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZO7TD-0007Ul-6w for bug-automake@gnu.org; Sat, 08 Aug 2015 12:59:46 -0400 Received: from danbala.ifoer.tuwien.ac.at ([128.130.168.64]:51868) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZO7TC-0007U4-TF for bug-automake@gnu.org; Sat, 08 Aug 2015 12:59:43 -0400 Received: by danbala.ifoer.tuwien.ac.at (Postfix, from userid 116) id 58221A5AC; Sat, 8 Aug 2015 18:59:39 +0200 (CEST) Date: Sat, 8 Aug 2015 18:59:39 +0200 From: Thomas Klausner Message-ID: <20150808165939.GF7408@danbala.tuwien.ac.at> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="m51xatjYGsM+13rf" Content-Disposition: inline X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -5.0 (-----) --m51xatjYGsM+13rf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi! NetBSD pkgsrc (but also some Linux distributions) installs the python interpreter from python-3.4 as "python3.4". AM_PATH_PYTHON does not look for that name. The attached patch (against anongit from a minute ago) fixes this. Please include it in the next release. Thanks, Thomas --m51xatjYGsM+13rf Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="0001-AM_PATH_PYTHON-look-for-python3.4-binary-as-well.patch" >From 854141dbfecf295b2e8683836646b23d1b18b689 Mon Sep 17 00:00:00 2001 From: Thomas Klausner Date: Sat, 8 Aug 2015 18:55:33 +0200 Subject: [PATCH] AM_PATH_PYTHON: look for python3.4 binary as well. Signed-off-by: Thomas Klausner --- m4/python.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/python.m4 b/m4/python.m4 index 32c30e2..d0d27df 100644 --- a/m4/python.m4 +++ b/m4/python.m4 @@ -37,7 +37,7 @@ AC_DEFUN([AM_PATH_PYTHON], dnl Find a Python interpreter. Python versions prior to 2.0 are not dnl supported. (2.0 was released on October 16, 2000). m4_define_default([_AM_PYTHON_INTERPRETER_LIST], -[python python2 python3 python3.3 python3.2 python3.1 python3.0 python2.7 dnl +[python python2 python3 python3.4 python3.3 python3.2 python3.1 python3.0 python2.7 dnl python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0]) AC_ARG_VAR([PYTHON], [the Python interpreter]) -- 2.5.0 --m51xatjYGsM+13rf-- From unknown Mon Jun 23 04:14:22 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Thomas Klausner Subject: bug#21219: closed (Re: automake: m4/python.m4: support python3.4 and python3.5) Message-ID: References: <571BE10B.2090504@cs.ucla.edu> <20150808165939.GF7408@danbala.tuwien.ac.at> X-Gnu-PR-Message: they-closed 21219 X-Gnu-PR-Package: automake Reply-To: 21219@debbugs.gnu.org Date: Sat, 23 Apr 2016 20:55:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1461444902-23948-1" This is a multi-part message in MIME format... ------------=_1461444902-23948-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #21219: automake: support for python3.4 which was filed against the automake package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 21219@debbugs.gnu.org. --=20 21219: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D21219 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1461444902-23948-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 21219-done) by debbugs.gnu.org; 23 Apr 2016 20:54:47 +0000 Received: from localhost ([127.0.0.1]:44325 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1au4Zj-0006Dm-LM for submit@debbugs.gnu.org; Sat, 23 Apr 2016 16:54:47 -0400 Received: from zimbra.cs.ucla.edu ([131.179.128.68]:55825) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1au4Zh-0006DZ-U2 for 21219-done@debbugs.gnu.org; Sat, 23 Apr 2016 16:54:46 -0400 Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 7AED3160D69; Sat, 23 Apr 2016 13:54:40 -0700 (PDT) Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id maMwQhAAYgC0; Sat, 23 Apr 2016 13:54:37 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id C45B5161268; Sat, 23 Apr 2016 13:54:37 -0700 (PDT) X-Virus-Scanned: amavisd-new at zimbra.cs.ucla.edu Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id h9aTI9mgol1T; Sat, 23 Apr 2016 13:54:37 -0700 (PDT) Received: from penguin.cs.ucla.edu (Penguin.CS.UCLA.EDU [131.179.64.200]) by zimbra.cs.ucla.edu (Postfix) with ESMTPSA id 09E14160D69; Sat, 23 Apr 2016 13:54:36 -0700 (PDT) Subject: Re: automake: m4/python.m4: support python3.4 and python3.5 To: Thomas Klausner References: <20160414085739.GW20096@danbala.tuwien.ac.at> <57180308.9080100@cs.ucla.edu> <20160422134609.GK5084@danbala.tuwien.ac.at> From: Paul Eggert Organization: UCLA Computer Science Department Message-ID: <571BE10B.2090504@cs.ucla.edu> Date: Sat, 23 Apr 2016 13:54:35 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.7.1 MIME-Version: 1.0 In-Reply-To: <20160422134609.GK5084@danbala.tuwien.ac.at> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -1.0 (-) X-Debbugs-Envelope-To: 21219-done Cc: 21219-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: -1.0 (-) On 04/22/2016 06:46 AM, Thomas Klausner wrote: > Thanks. I don't see the commit onhttp://git.savannah.gnu.org/cgit/automake.git yet though? http://git.savannah.gnu.org/cgit/automake.git/log/?h=micro > > We can also close my bug report 21219 (https://debbugs.gnu.org/cgi/bugreport.cgi?bug=21219). > Thomas OK, done. ------------=_1461444902-23948-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 8 Aug 2015 16:59:50 +0000 Received: from localhost ([127.0.0.1]:50794 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZO7TK-0007lQ-03 for submit@debbugs.gnu.org; Sat, 08 Aug 2015 12:59:50 -0400 Received: from eggs.gnu.org ([208.118.235.92]:35366) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZO7TI-0007lI-LN for submit@debbugs.gnu.org; Sat, 08 Aug 2015 12:59:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZO7TH-0007Xl-AE for submit@debbugs.gnu.org; Sat, 08 Aug 2015 12:59:48 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=BAYES_40 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:41879) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZO7TH-0007Xa-8D for submit@debbugs.gnu.org; Sat, 08 Aug 2015 12:59:47 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48857) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZO7TG-0007WA-CJ for bug-automake@gnu.org; Sat, 08 Aug 2015 12:59:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZO7TD-0007Ul-6w for bug-automake@gnu.org; Sat, 08 Aug 2015 12:59:46 -0400 Received: from danbala.ifoer.tuwien.ac.at ([128.130.168.64]:51868) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZO7TC-0007U4-TF for bug-automake@gnu.org; Sat, 08 Aug 2015 12:59:43 -0400 Received: by danbala.ifoer.tuwien.ac.at (Postfix, from userid 116) id 58221A5AC; Sat, 8 Aug 2015 18:59:39 +0200 (CEST) Date: Sat, 8 Aug 2015 18:59:39 +0200 From: Thomas Klausner To: Stefano Lattarini Subject: automake: support for python3.4 Message-ID: <20150808165939.GF7408@danbala.tuwien.ac.at> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="m51xatjYGsM+13rf" Content-Disposition: inline X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit Cc: bug-automake@gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -5.0 (-----) --m51xatjYGsM+13rf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi! NetBSD pkgsrc (but also some Linux distributions) installs the python interpreter from python-3.4 as "python3.4". AM_PATH_PYTHON does not look for that name. The attached patch (against anongit from a minute ago) fixes this. Please include it in the next release. Thanks, Thomas --m51xatjYGsM+13rf Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="0001-AM_PATH_PYTHON-look-for-python3.4-binary-as-well.patch" >From 854141dbfecf295b2e8683836646b23d1b18b689 Mon Sep 17 00:00:00 2001 From: Thomas Klausner Date: Sat, 8 Aug 2015 18:55:33 +0200 Subject: [PATCH] AM_PATH_PYTHON: look for python3.4 binary as well. Signed-off-by: Thomas Klausner --- m4/python.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/python.m4 b/m4/python.m4 index 32c30e2..d0d27df 100644 --- a/m4/python.m4 +++ b/m4/python.m4 @@ -37,7 +37,7 @@ AC_DEFUN([AM_PATH_PYTHON], dnl Find a Python interpreter. Python versions prior to 2.0 are not dnl supported. (2.0 was released on October 16, 2000). m4_define_default([_AM_PYTHON_INTERPRETER_LIST], -[python python2 python3 python3.3 python3.2 python3.1 python3.0 python2.7 dnl +[python python2 python3 python3.4 python3.3 python3.2 python3.1 python3.0 python2.7 dnl python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0]) AC_ARG_VAR([PYTHON], [the Python interpreter]) -- 2.5.0 --m51xatjYGsM+13rf-- ------------=_1461444902-23948-1--