From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH 4/6] gnu: python-llfuse: Update to 1.0, keep 0.41 variant. Date: Sun, 20 Mar 2016 22:49:04 -0400 Message-ID: <20160321024904.GA4186@jasmine> References: <2b02c8822902a099fe7daf291684090eff6a6ed5.1457998381.git.leo@famulari.name> <87h9g82kc2.fsf@gmail.com> <20160315091308.GA7634@jasmine> <87y49koxs4.fsf@gnu.org> <871t7bn1wp.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35688) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ahptz-0008Fz-PS for guix-devel@gnu.org; Sun, 20 Mar 2016 22:49:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ahptv-0002hN-Pi for guix-devel@gnu.org; Sun, 20 Mar 2016 22:49:07 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:45423) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ahptv-0002hE-Le for guix-devel@gnu.org; Sun, 20 Mar 2016 22:49:03 -0400 Content-Disposition: inline In-Reply-To: <871t7bn1wp.fsf@gnu.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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Ludovic =?iso-8859-1?Q?Court=E8s?= Cc: guix-devel@gnu.org, Alex Kost On Tue, Mar 15, 2016 at 05:25:58PM +0100, Ludovic Courtès wrote: > Mathieu Lirzin skribis: > > > Leo Famulari writes: > > > >> On Tue, Mar 15, 2016 at 11:53:33AM +0300, Alex Kost wrote: > >>> Leo Famulari (2016-03-15 02:34 +0300) wrote: > >>> > >>> [...] > >>> > (define-public python2-llfuse > >>> > - (package-with-python2 python-llfuse)) > >>> > + (package (inherit (package-with-python2 > >>> > + (strip-python2-variant python-llfuse))) > >>> > + (propagated-inputs `(("python2-contextlib2" ,python2-contextlib2))))) > >>> > + > >>> > +;; For attic@0.16 > >>> > +(define-public python-llfuse@0.41 > >>> > >>> All our package variables use '-' to separate name and version. I think > >>> this is good choice and we shouldn't use '@' in variable names. > >> > >> Okay, I replaced all use of '@' with '-'. > >> > >> Is the '@' syntax is only meant to be used on the command line? > > > > This syntax has appeared to solve some limitations in the command line > > interface which was failing to properly match package names containing > > numbers. > > > > I think it is OK to use it elsewhere as long as it does not break > > things. However in the case of scheme variables, I think it is not a > > good idea to use '@' because it could lead people into thinking that > > there is a strong relation between typing ‘guix build foo@14’ and > > defining a variable named ‘foo@14’. > > Furthermore ‘@’ (at sign) has a special meaning in Guile (info "(guile) > Using Guile Modules"), so even though it’s currently valid within an > identifier, I’d suggest avoiding it. Thanks for the explanation everybody! I've made all the requested changes. Any more comments on this patch series? > > Ludo’.