From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH 06/17] gnu: Add python-execnet. Date: Thu, 7 Jan 2016 11:48:45 -0500 Message-ID: <20160107164845.GB3632@jasmine> References: <657970784d7ea2cc792e2bd30a93b30f@openmailbox.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54358) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aHDk3-0004ES-4W for guix-devel@gnu.org; Thu, 07 Jan 2016 11:48:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aHDjx-0007x1-9y for guix-devel@gnu.org; Thu, 07 Jan 2016 11:48:51 -0500 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:48453) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aHDjx-0007wv-7a for guix-devel@gnu.org; Thu, 07 Jan 2016 11:48:45 -0500 Content-Disposition: inline In-Reply-To: <657970784d7ea2cc792e2bd30a93b30f@openmailbox.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: Eric Bavier Cc: guix-devel@gnu.org, guix-devel-bounces+ericbavier=openmailbox.org@gnu.org On Wed, Jan 06, 2016 at 12:57:29PM -0600, Eric Bavier wrote: > On 2016-01-03 18:05, Leo Famulari wrote: > >* gnu/packages/python.scm (python-execnet): New variable. > >--- > > gnu/packages/python.scm | 26 ++++++++++++++++++++++++++ > > 1 file changed, 26 insertions(+) > [...] > >+ (description "Execnet provides a share-nothing model with > >+channel-send/receive communication for distributing execution across many > >+Python interpreters across version, platform and network barriers. It > >has a > >+minimal and fast API targetting the following uses: > >+1) distribute tasks to (many) local or remote CPUs > >+2) write and deploy hybrid multi-process applications > >+3) write scripts to administer multiple environments") > > We should use texinfo @enumerate here instead: > > @enumerate > @item distribute tasks to (many) local or remote CPUs > @item write and deploy hybrid multi-process applications > @item write scripts to administer multiple environments > @end enumerate Thanks for the tip. Done. > > Or @itemize, but http://bugs.gnu.org/21772 as noted in > gnu/packages/python.scm > > >+ (home-page "http://codespeak.net/execnet/") > >+ (license license:expat))) > > -- > `~Eric