From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: [PATCH] Add express-beta-diversity Date: Thu, 15 Oct 2015 22:39:24 +0200 Message-ID: <20151015203924.GA6135@debian> References: <561FA60B.3060404@uq.edu.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:32779) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZmpJK-0000Vi-8r for guix-devel@gnu.org; Thu, 15 Oct 2015 16:39:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZmpJG-0002Ag-AF for guix-devel@gnu.org; Thu, 15 Oct 2015 16:39:38 -0400 Received: from mout.kundenserver.de ([212.227.17.24]:59388) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZmpJG-0002AF-1o for guix-devel@gnu.org; Thu, 15 Oct 2015 16:39:34 -0400 Content-Disposition: inline In-Reply-To: <561FA60B.3060404@uq.edu.au> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Ben Woodcroft Cc: "guix-devel@gnu.org" , Donovan Parks On Thu, Oct 15, 2015 at 11:11:39PM +1000, Ben Woodcroft wrote: > I noticed when packaging this that when "python" is provided as an input > (and not python-2), then the python scripts don't get their shebangs fixed, > because there is no python executable in the $PATH (it is python3). This > seems not right to me - is there a reason for this, maybe so python 2 and 3 > can coexist? Yes. Our python package follows upstream and only provides binaries called python3 and python3.4. The python-2.7.10 package also follows upstream (you can see a pattern here :-)) and provides python, python2 and python2.7. You will probably want to use python-wrapper, which corresponds to the python package with an additional symbolic link python->python3 (and some others); it is actually used in a number of package recipes. Andreas