diff options
author | Steve Wills <swills@FreeBSD.org> | 2017-03-01 17:47:45 +0000 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2017-03-01 17:47:45 +0000 |
commit | 070a82ff52bb8423ee08fba50ee2806856952949 (patch) | |
tree | 7e1ded952a8e0aa625ad6d49497e995edd1904e4 | |
parent | Update to the 20170228 snapshot of GCC 5.4.1. (diff) |
devel/py-ipyparallel: create port
Use multiple instances of IPython in parallel, interactively.
WWW: https://ipyparallel.readthedocs.io
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/py-ipyparallel/Makefile | 31 | ||||
-rw-r--r-- | devel/py-ipyparallel/distinfo | 3 | ||||
-rw-r--r-- | devel/py-ipyparallel/pkg-descr | 3 |
4 files changed, 38 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 29280155fe2f..fd5dfa16c38d 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4328,6 +4328,7 @@ SUBDIR += py-ipaddr SUBDIR += py-ipdb SUBDIR += py-ipykernel + SUBDIR += py-ipyparallel SUBDIR += py-ipython_genutils SUBDIR += py-ipywidgets SUBDIR += py-iso8601 diff --git a/devel/py-ipyparallel/Makefile b/devel/py-ipyparallel/Makefile new file mode 100644 index 000000000000..4fe8c578bc96 --- /dev/null +++ b/devel/py-ipyparallel/Makefile @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= ipyparallel +PORTVERSION= 6.0.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= python@FreeBSD.org +COMMENT= Interactive Parallel Computing with IPython + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING.md + +RUN_DEPENDS= \ + ${PYTHON_PKGNAMEPREFIX}ipython_genutils>=0:devel/py-ipython_genutils \ + ${PYTHON_PKGNAMEPREFIX}decorator>=0:devel/py-decorator \ + ${PYTHON_PKGNAMEPREFIX}pyzmq>=13:net/py-pyzmq \ + ${PYTHON_PKGNAMEPREFIX}ipython>=4.0.0:devel/ipython \ + ${PYTHON_PKGNAMEPREFIX}jupyter_client>=0:devel/py-jupyter_client \ + ${PYTHON_PKGNAMEPREFIX}ipykernel>=0:devel/py-ipykernel \ + ${PYTHON_PKGNAMEPREFIX}tornado>=4.0:www/py-tornado \ + ${PYTHON_PKGNAMEPREFIX}dateutil>=2.1:devel/py-dateutil \ + ${PYTHON_PKGNAMEPREFIX}futures>0:devel/py-futures \ + ${PYTHON_PKGNAMEPREFIX}notebook>=0:www/py-notebook + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/devel/py-ipyparallel/distinfo b/devel/py-ipyparallel/distinfo new file mode 100644 index 000000000000..15096d160fc8 --- /dev/null +++ b/devel/py-ipyparallel/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1488383715 +SHA256 (ipyparallel-6.0.2.tar.gz) = 7eea4780266252fcc987b220a302d589fbb4d6b0569bd131115a20b31891103d +SIZE (ipyparallel-6.0.2.tar.gz) = 2366627 diff --git a/devel/py-ipyparallel/pkg-descr b/devel/py-ipyparallel/pkg-descr new file mode 100644 index 000000000000..ba661efb6f3f --- /dev/null +++ b/devel/py-ipyparallel/pkg-descr @@ -0,0 +1,3 @@ +Use multiple instances of IPython in parallel, interactively. + +WWW: https://ipyparallel.readthedocs.io |