From unknown Mon Jun 23 04:10:22 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#21219 <21219@debbugs.gnu.org> To: bug#21219 <21219@debbugs.gnu.org> Subject: Status: automake: support for python3.4 Reply-To: bug#21219 <21219@debbugs.gnu.org> Date: Mon, 23 Jun 2025 11:10:22 +0000 retitle 21219 automake: support for python3.4 reassign 21219 automake submitter 21219 Thomas Klausner severity 21219 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Aug 08 12:59:50 2015 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-- From debbugs-submit-bounces@debbugs.gnu.org Sat Apr 23 16:54:47 2016 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. From unknown Mon Jun 23 04:10:22 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 22 May 2016 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