Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 7 Jul 2014 12:55:49 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r361078 - in head/sysutils: . py-execnet
Message-ID:  <201407071255.s67CtnEe067803@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <koobs@FreeBSD.org>
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407071255.s67CtnEe067803>