svn commit: r524841 - in head/devel: . py-distributed
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Sun Feb 2 10:54:34 UTC 2020
Author: sunpoet
Date: Sun Feb 2 10:54:33 2020
New Revision: 524841
URL: https://svnweb.freebsd.org/changeset/ports/524841
Log:
Add py-distributed 2.10.0
Dask.distributed is a lightweight library for distributed computing in Python.
It extends both the concurrent.futures and dask APIs to moderate sized clusters.
WWW: https://github.com/dask/distributed
Added:
head/devel/py-distributed/
head/devel/py-distributed/Makefile (contents, props changed)
head/devel/py-distributed/distinfo (contents, props changed)
head/devel/py-distributed/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sun Feb 2 10:54:26 2020 (r524840)
+++ head/devel/Makefile Sun Feb 2 10:54:33 2020 (r524841)
@@ -4353,6 +4353,7 @@
SUBDIR += py-dis3
SUBDIR += py-distlib
SUBDIR += py-distorm
+ SUBDIR += py-distributed
SUBDIR += py-dj22-django-rq
SUBDIR += py-django-rq
SUBDIR += py-django-rq-dashboard
Added: head/devel/py-distributed/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-distributed/Makefile Sun Feb 2 10:54:33 2020 (r524841)
@@ -0,0 +1,33 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= distributed
+PORTVERSION= 2.10.0
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= sunpoet at FreeBSD.org
+COMMENT= Distributed scheduler for Dask
+
+LICENSE= BSD3CLAUSE
+LICENSE_FILE= ${WRKSRC}/LICENSE.txt
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>=6.6:devel/py-click@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}cloudpickle>=0.2.2:devel/py-cloudpickle@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}dask>=2.9.0:devel/py-dask@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}msgpack>=0:devel/py-msgpack@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}psutil>=5.0:sysutils/py-psutil@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}sortedcontainers>=2.0.2:devel/py-sortedcontainers@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}tblib>=0:devel/py-tblib@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}toolz>=0.7.4:devel/py-toolz@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}tornado>=5:www/py-tornado@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}zict>=0.1.3:devel/py-zict@${PY_FLAVOR}
+
+USES= python:3.6+
+USE_PYTHON= autoplist distutils
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
Added: head/devel/py-distributed/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-distributed/distinfo Sun Feb 2 10:54:33 2020 (r524841)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1580562235
+SHA256 (distributed-2.10.0.tar.gz) = 2f8cca741a20f776929cbad3545f2df64cf60207fb21f774ef24aad6f6589e8b
+SIZE (distributed-2.10.0.tar.gz) = 981569
Added: head/devel/py-distributed/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-distributed/pkg-descr Sun Feb 2 10:54:33 2020 (r524841)
@@ -0,0 +1,4 @@
+Dask.distributed is a lightweight library for distributed computing in Python.
+It extends both the concurrent.futures and dask APIs to moderate sized clusters.
+
+WWW: https://github.com/dask/distributed
More information about the svn-ports-head
mailing list