From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: [PATCH] gnu: Add Scikit-learn. Date: Wed, 25 Feb 2015 23:57:40 +0100 Message-ID: <20150225225740.GA13495@debian> References: <20150223175238.GA10579@debian.eduroam.u-bordeaux.fr> <20150225225215.GA13330@debian> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="J2SCkAp4GZ/dPZZf" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47542) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YQku0-0000Nu-CX for guix-devel@gnu.org; Wed, 25 Feb 2015 17:58:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YQktv-0007Md-C3 for guix-devel@gnu.org; Wed, 25 Feb 2015 17:58:00 -0500 Received: from mout.kundenserver.de ([212.227.17.13]:62646) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YQktv-0007MR-2B for guix-devel@gnu.org; Wed, 25 Feb 2015 17:57:55 -0500 Content-Disposition: inline In-Reply-To: <20150225225215.GA13330@debian> 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: Ricardo Wurmus Cc: Guix-devel --J2SCkAp4GZ/dPZZf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline And attached a patch to the packaging guidelines to clarify how to name python module packages. Andreas --J2SCkAp4GZ/dPZZf Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="0001-doc-Clarify-wording-for-naming-of-python-module-pack.patch" >From 9f44c7a847fb9122efc546ae4ad73e53f4fb9214 Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Wed, 25 Feb 2015 23:55:07 +0100 Subject: [PATCH] doc: Clarify wording for naming of python module packages. * doc/guix.texi (Python Modules): Make clear that the name of a python module package is to be derived from the module name. --- doc/guix.texi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/guix.texi b/doc/guix.texi index 81b9353..2f6f35e 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -2477,7 +2477,7 @@ To illustrate the idea, here is an example of a gexp: #~(begin (mkdir #$output) (chdir #$output) - (symlink (string-append #$coreutils "/bin/ls") + (symlink (string-append #$coreutils "/bin/ls") "list-files"))) @end example @@ -5521,12 +5521,12 @@ seems desirable that the name of a package for a Python module contains the word @code{python}. Some modules are compatible with only one version of Python, others with both. -If the package Foo compiles only with Python 3, we name it +If the module Foo compiles only with Python 3, we name it @code{python-foo}; if it compiles only with Python 2, we name it @code{python2-foo}. If it is compatible with both versions, we create two packages with the corresponding names. -If a project already contains the word @code{python}, we drop this; +If a module name already contains the word @code{python}, we drop this; for instance, the module python-dateutil is packaged under the names @code{python-dateutil} and @code{python2-dateutil}. -- 2.2.1 --J2SCkAp4GZ/dPZZf--