Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dask/
Date: Sat, 29 Aug 2020 06:13:36
Message-Id: 1598680946.a823556ed23b2271c2e323ede57b73fc18739ca9.mgorny@gentoo
1 commit: a823556ed23b2271c2e323ede57b73fc18739ca9
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 29 05:58:26 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 29 06:02:26 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a823556e
7
8 dev-python/dask: Bump to 2.25.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/dask/Manifest | 1 +
13 dev-python/dask/dask-2.25.0.ebuild | 43 ++++++++++++++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/dev-python/dask/Manifest b/dev-python/dask/Manifest
17 index ce7dc6e31ce..50f51197d3b 100644
18 --- a/dev-python/dask/Manifest
19 +++ b/dev-python/dask/Manifest
20 @@ -2,3 +2,4 @@ DIST dask-1.2.0.tar.gz 2381831 BLAKE2B 88d48b9bcd4444dfe066c8049eae2a8b65e6ae1a7
21 DIST dask-2.22.0.tar.gz 2831467 BLAKE2B 641f71c868fe49a027adab11b0a84c091537bfe56a786bbb00215ade5ba5fa7687176f70f12802b06bbcaf00db76f0c97eaa5b87cb65fc28bbe3e37c8b55f2a6 SHA512 90d6391a8dfc36788e819bf09f4ea65a89f37b14d0755fe4ade9179e5d3edd6dada30d5c08ad730f4ac9e08a0cc64a354933f52b92eb13fb8e60093dbcf28567
22 DIST dask-2.23.0.tar.gz 2840133 BLAKE2B 2fe8e4007acf2bbd8bfab889e4d912a15518318dc019573ce6deb7f3a64504608e1e27c3bd9c6766dd98a071ed075065da9beda3f2e5fef27c7bfc9918516d0a SHA512 6ce0f1471357cfa4f5c7f2e2ab31009e68d3e5de363569867d67038ae2e1a9c69552797fb232fb92deafc3b57aa040df9e60669c1856cbb53505a905c4f4b052
23 DIST dask-2.24.0.tar.gz 2826106 BLAKE2B fc63bf33f8441a70412e7872c696c071c5e156137fe767007a57f6d2c6a976bd29fff4db20f42c76014bbaf8b763f0a9d974ed1fc62530a3a91633ab97a1a466 SHA512 cf9a781c64eca4be84b82d026cfa1883d54ce18c93625e28c085a7bd63ac129befeded808c817e4adab790c28aa2eeca4f79c7086be683f1a7d30c6d1961c0ae
24 +DIST dask-2.25.0.tar.gz 2842089 BLAKE2B 048a116a60dd98c7c1f3800426af13c2d8d116772a6b3133823b9a78ae6fcd34ab32dbfb9ae8db9eb6c948bce381e5d6e91caaab78203ae56159493ed7689038 SHA512 0d6e8e8c1efbaa4dc77e1a505e5c2df45eefc43868ce923ec674c5f768f12beb30e06c8712f621e44a826fc11f86fd50e60f0f6a78e261d74273f73b49503301
25
26 diff --git a/dev-python/dask/dask-2.25.0.ebuild b/dev-python/dask/dask-2.25.0.ebuild
27 new file mode 100644
28 index 00000000000..eb47b5d4660
29 --- /dev/null
30 +++ b/dev-python/dask/dask-2.25.0.ebuild
31 @@ -0,0 +1,43 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +PYTHON_COMPAT=( python3_{6..9} )
37 +
38 +inherit distutils-r1 multiprocessing
39 +
40 +DESCRIPTION="Task scheduling and blocked algorithms for parallel processing"
41 +HOMEPAGE="https://dask.org/"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
47 +
48 +RDEPEND="
49 + >=dev-python/cloudpickle-0.2.2[${PYTHON_USEDEP}]
50 + >=dev-python/fsspec-0.6.0[${PYTHON_USEDEP}]
51 + >=dev-python/numpy-1.13.0[${PYTHON_USEDEP}]
52 + >=dev-python/pandas-0.23.4[${PYTHON_USEDEP}]
53 + >=dev-python/partd-0.3.10[${PYTHON_USEDEP}]
54 + dev-python/psutil[${PYTHON_USEDEP}]
55 + dev-python/pyyaml[${PYTHON_USEDEP}]
56 + >=dev-python/toolz-0.8.2[${PYTHON_USEDEP}]
57 +"
58 +BDEPEND="
59 + dev-python/toolz[${PYTHON_USEDEP}]
60 + test? (
61 + dev-python/numexpr[${PYTHON_USEDEP}]
62 + dev-python/pytest-xdist[${PYTHON_USEDEP}]
63 + >=dev-python/s3fs-0.0.8[${PYTHON_USEDEP}]
64 + sci-libs/scipy[${PYTHON_USEDEP}]
65 + )
66 +"
67 +
68 +distutils_enable_tests pytest
69 +
70 +python_test() {
71 + pytest -vv -m "not network" \
72 + -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" ||
73 + die "Tests failed with ${EPYTHON}"
74 +}