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/distributed/
Date: Thu, 26 Mar 2020 20:35:27
Message-Id: 1585254899.de5211841f478f5138b3cb88476bb9600660139c.mgorny@gentoo
1 commit: de5211841f478f5138b3cb88476bb9600660139c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 26 20:31:08 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 26 20:34:59 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de521184
7
8 dev-python/distributed: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/distributed/distributed-1.18.0.ebuild | 50 ------------------------
13 1 file changed, 50 deletions(-)
14
15 diff --git a/dev-python/distributed/distributed-1.18.0.ebuild b/dev-python/distributed/distributed-1.18.0.ebuild
16 deleted file mode 100644
17 index e753ea98fe6..00000000000
18 --- a/dev-python/distributed/distributed-1.18.0.ebuild
19 +++ /dev/null
20 @@ -1,50 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -PYTHON_COMPAT=( python3_6 )
27 -
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="Python library for distributed computation"
31 -HOMEPAGE="https://distributed.readthedocs.io/en/latest/"
32 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
33 -
34 -LICENSE="BSD"
35 -SLOT="0"
36 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
37 -IUSE="test"
38 -RESTRICT="!test? ( test )"
39 -
40 -RDEPEND="
41 - dev-python/click[${PYTHON_USEDEP}]
42 - >=dev-python/cloudpickle-0.2.2[${PYTHON_USEDEP}]
43 - >=dev-python/dask-0.14.1[${PYTHON_USEDEP}]
44 - >=dev-python/joblib-0.10.2[${PYTHON_USEDEP}]
45 - dev-python/msgpack[${PYTHON_USEDEP}]
46 - >=dev-python/partd-0.3.7[${PYTHON_USEDEP}]
47 - dev-python/psutil[${PYTHON_USEDEP}]
48 - dev-python/six[${PYTHON_USEDEP}]
49 - dev-python/sortedcollections[${PYTHON_USEDEP}]
50 - dev-python/tblib[${PYTHON_USEDEP}]
51 - >=dev-python/toolz-0.7.4[${PYTHON_USEDEP}]
52 - dev-python/zict[${PYTHON_USEDEP}]
53 - www-servers/tornado[${PYTHON_USEDEP}]
54 -"
55 -DEPEND="
56 - dev-python/setuptools[${PYTHON_USEDEP}]
57 - test? (
58 - ${RDEPEND}
59 - dev-python/pytest[${PYTHON_USEDEP}]
60 - )
61 -"
62 -
63 -python_test() {
64 - cd "${BUILD_DIR}"/lib || die
65 - py.test -m "not avoid_travis" distributed \
66 - --verbose -r s \
67 - --timeout-method=thread \
68 - --timeout=300 \
69 - --durations=20 || die
70 -}