From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH v2] gnu: Add python-jedi. Date: Sat, 9 Jul 2016 14:13:11 -0400 Message-ID: <20160709181311.GA2010@jasmine> References: <20160709134252.45490258@scratchpost.org> <20160709144832.7bd38995@scratchpost.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59286) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bLwkq-0004Gr-Nk for guix-devel@gnu.org; Sat, 09 Jul 2016 14:13:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bLwkm-0004K1-EF for guix-devel@gnu.org; Sat, 09 Jul 2016 14:13:27 -0400 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:42081) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bLwkj-0004Ji-T6 for guix-devel@gnu.org; Sat, 09 Jul 2016 14:13:24 -0400 Content-Disposition: inline In-Reply-To: <20160709144832.7bd38995@scratchpost.org> 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" To: Danny Milosavljevic Cc: guix-devel@gnu.org On Sat, Jul 09, 2016 at 02:48:32PM +0200, Danny Milosavljevic wrote: > * gnu/packages/python.scm (python-jedi, python2-jedi): New variables. Thanks for this patch! Pushed as a502dfbf with the following changes: > #:select (asl2.0 bsd-4 bsd-3 bsd-2 non-copyleft cc0 x11 x11-style > gpl2 gpl2+ gpl3 gpl3+ lgpl2.0+ lgpl2.1 lgpl2.1+ lgpl3+ agpl3+ > isc mpl2.0 psfl public-domain repoze unlicense x11-style > - zpl2.1)) > + zpl2.1 expat)) > #:use-module ((guix licenses) #:select (expat zlib) #:prefix license:) We need to use (license license:expat) to use the Expat license in (gnu packages python), to avoid ambiguity between the license and the package. So, I removed this change and adjusted the license field in python-jedi. > + (uri (string-append > + "https://pypi.python.org/packages/" > + "3a/37/629080b92b87bc65e3b1b4f5d539e22aa5dc45637eab0dd4b0cd8cf236c2/jedi-" > + version > + ".tar.gz")) Pypi-uri works again, so I made it use that instead.