From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 62CB659CA5 for ; Fri, 18 Mar 2016 19:18:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD0A721C12A; Fri, 18 Mar 2016 19:18:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ACD5921C111 for ; Fri, 18 Mar 2016 19:18:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 740B8340CBE for ; Fri, 18 Mar 2016 19:18:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DF63F873 for ; Fri, 18 Mar 2016 19:18:14 +0000 (UTC) From: "Sebastien Fabbro" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastien Fabbro" Message-ID: <1458331848.ac737bb6037b8558dfc04989f292c23af0df5613.bicatali@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dask/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/dask/Manifest dev-python/dask/dask-0.8.1.ebuild dev-python/dask/metadata.xml X-VCS-Directories: dev-python/dask/ X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro X-VCS-Revision: ac737bb6037b8558dfc04989f292c23af0df5613 X-VCS-Branch: master Date: Fri, 18 Mar 2016 19:18:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: cac1d9a6-fb7f-4d2a-a622-8cb4bb673ebe X-Archives-Hash: 1c39e1895bc269153682c85955e896c1 commit: ac737bb6037b8558dfc04989f292c23af0df5613 Author: Sébastien Fabbro gentoo org> AuthorDate: Fri Mar 18 18:25:55 2016 +0000 Commit: Sebastien Fabbro gentoo org> CommitDate: Fri Mar 18 20:10:48 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac737bb6 dev-python/dask: initial import Package-Manager: portage-2.2.28 dev-python/dask/Manifest | 1 + dev-python/dask/dask-0.8.1.ebuild | 38 ++++++++++++++++++++++++++++++++++++++ dev-python/dask/metadata.xml | 20 ++++++++++++++++++++ 3 files changed, 59 insertions(+) diff --git a/dev-python/dask/Manifest b/dev-python/dask/Manifest new file mode 100644 index 0000000..079dded --- /dev/null +++ b/dev-python/dask/Manifest @@ -0,0 +1 @@ +DIST dask-0.8.1.tar.gz 292047 SHA256 43deb1934cd033668e5e60b735f45c9c3ee2813f87bd51c243f975e55267fa43 SHA512 b75fca59ecf285bae2fe82cb635fbcb78e9eb1389dc764c36e20c2278b12ec41363f463adfeff33891cf0eaf9a03ef1586b90ea5189c03d955bc670ac416660b WHIRLPOOL 63bdfef96af56e82b72759c60546b9cc72fd67ec94ddff226d34ce8612e2c603729aaf2b31823971001701b01317c96ddf74a539ebab3cdc02a7e554ff8e8f37 diff --git a/dev-python/dask/dask-0.8.1.ebuild b/dev-python/dask/dask-0.8.1.ebuild new file mode 100644 index 0000000..b168f7b --- /dev/null +++ b/dev-python/dask/dask-0.8.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5} ) + +inherit distutils-r1 + +DESCRIPTION="Task scheduling and blocked algorithms for parallel processing" +HOMEPAGE="http://dask.pydata.org/" +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/bokeh[${PYTHON_USEDEP}] + dev-python/cloudpickle[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/pandas[${PYTHON_USEDEP}] + dev-python/partd[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/toolz[${PYTHON_USEDEP}]" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/toolz[${PYTHON_USEDEP}] + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/numexpr[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}] )" + +python_test() { + py.test || die +} diff --git a/dev-python/dask/metadata.xml b/dev-python/dask/metadata.xml new file mode 100644 index 0000000..5922bd7 --- /dev/null +++ b/dev-python/dask/metadata.xml @@ -0,0 +1,20 @@ + + + + + cluster@gentoo.org + Gentoo Cluster Project + + + python@gentoo.org + Python + + + Dask is a simple task scheduling system that uses directed acyclic + graphs (DAGs) of tasks to break up large computations into many + small ones. + + + dask + +