From owner-svn-ports-head@FreeBSD.ORG Mon Jul 7 12:55:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96706D03; Mon, 7 Jul 2014 12:55:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 785442226; Mon, 7 Jul 2014 12:55:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s67CtonB067807; Mon, 7 Jul 2014 12:55:50 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s67CtnEe067803; Mon, 7 Jul 2014 12:55:49 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201407071255.s67CtnEe067803@svn.freebsd.org> From: Kubilay Kocak Date: Mon, 7 Jul 2014 12:55:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361078 - in head/sysutils: . py-execnet X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jul 2014 12:55:50 -0000 Author: koobs Date: Mon Jul 7 12:55:49 2014 New Revision: 361078 URL: http://svnweb.freebsd.org/changeset/ports/361078 QAT: https://qat.redports.org/buildarchive/r361078/ Log: [NEW] sysutils/py-execnet: Distributed Python deployment and communication 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: * Distribute tasks to (many) local or remote CPUs * Write and deploy hybrid multi-process applications * Write scripts to administer multiple environments WWW: https://codespeak.net/execnet Added: head/sysutils/py-execnet/ head/sysutils/py-execnet/Makefile (contents, props changed) head/sysutils/py-execnet/distinfo (contents, props changed) head/sysutils/py-execnet/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Mon Jul 7 12:55:41 2014 (r361077) +++ head/sysutils/Makefile Mon Jul 7 12:55:49 2014 (r361078) @@ -726,6 +726,7 @@ SUBDIR += py-bcfg2 SUBDIR += py-danzfs SUBDIR += py-drmaa + SUBDIR += py-execnet SUBDIR += py-ezjailremote SUBDIR += py-filelike SUBDIR += py-glances Added: head/sysutils/py-execnet/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-execnet/Makefile Mon Jul 7 12:55:49 2014 (r361078) @@ -0,0 +1,19 @@ +# Created by: Kubilay Kocak +# $FreeBSD$ + +PORTNAME= execnet +PORTVERSION= 1.2.0 +CATEGORIES= sysutils python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Distributed Python deployment and communication + +LICENSE= MIT + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/sysutils/py-execnet/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-execnet/distinfo Mon Jul 7 12:55:49 2014 (r361078) @@ -0,0 +1,2 @@ +SHA256 (execnet-1.2.0.tar.gz) = 951714caa0ae80237f4ffc1f08450e9e2e5f8f902beaf1ad294020875d6f8c2c +SIZE (execnet-1.2.0.tar.gz) = 163876 Added: head/sysutils/py-execnet/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-execnet/pkg-descr Mon Jul 7 12:55:49 2014 (r361078) @@ -0,0 +1,10 @@ +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: + + * Distribute tasks to (many) local or remote CPUs + * Write and deploy hybrid multi-process applications + * Write scripts to administer multiple environments + +WWW: https://codespeak.net/execnet