dev-python/distributed: initial import

Package-Manager: Portage-2.3.6, Repoman-2.3.2
This commit is contained in:
Sébastien Fabbro
2017-06-27 04:40:35 +00:00
parent 0b68a7ecee
commit f613ee0869
3 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST distributed-1.17.1.tar.gz 376088 SHA256 9c4f8b511ddb8d13851701deec1a15f64e75394dc6ae361fa8f6c41c9eeca0f1 SHA512 e3addbdd18165ca00879829e98993b5e5d466dfdfa9255a668725852256b2bc6bca80ca42c63744ef3988d66d61bfc43258a83e7445158733d511d27aa68c64a WHIRLPOOL f1a3526fcad512d0b78b64f03c3eb6cbde6f1580fb794819f80536e8778685ca02fa62bb0938e8c87a77be3cd92b6ed1ea55dbbacdbc5966a62664f059bf1546

View File

@@ -0,0 +1,46 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit distutils-r1
DESCRIPTION="Python library for distributed computation"
HOMEPAGE="http://distributed.readthedocs.io/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="
dev-python/click[${PYTHON_USEDEP}]
>=dev-python/cloudpickle-0.2.2[${PYTHON_USEDEP}]
>=dev-python/dask-0.14.1[${PYTHON_USEDEP}]
>=dev-python/joblib-0.10.2[${PYTHON_USEDEP}]
dev-python/msgpack[${PYTHON_USEDEP}]
>=dev-python/partd-0.3.7[${PYTHON_USEDEP}]
dev-python/psutil[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
dev-python/sortedcollections[${PYTHON_USEDEP}]
dev-python/tblib[${PYTHON_USEDEP}]
>=dev-python/toolz-0.7.4[${PYTHON_USEDEP}]
dev-python/zict[${PYTHON_USEDEP}]
www-servers/tornado[${PYTHON_USEDEP}]
virtual/python-futures[${PYTHON_USEDEP}]
"
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
${RDEPEND}
dev-python/pytest[${PYTHON_USEDEP}]
)
"
python_test() {
cd "${BUILD_DIR}"/lib || die
py.test -m "not avoid_travis" distributed --verbose -r s --timeout-method=thread --timeout=300 --durations=20 || die
}

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>cluster@gentoo.org</email>
<name>Gentoo Cluster Project</name>
</maintainer>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<longdescription lang="en">
</longdescription>
<upstream>
<remote-id type="pypi">distributed</remote-id>
<remote-id type="github">dask/distributed</remote-id>
</upstream>
</pkgmetadata>