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: Wed, 03 Jan 2018 09:11:57
Message-Id: 1514970682.59a17b45a87847dcd3bf4b6bd0f43d5cea91e7b2.mgorny@gentoo
1 commit: 59a17b45a87847dcd3bf4b6bd0f43d5cea91e7b2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 2 22:51:26 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 3 09:11:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59a17b45
7
8 dev-python/distributed: Clean old up
9
10 dev-python/distributed/Manifest | 1 -
11 dev-python/distributed/distributed-1.17.1.ebuild | 46 ------------------------
12 2 files changed, 47 deletions(-)
13
14 diff --git a/dev-python/distributed/Manifest b/dev-python/distributed/Manifest
15 index 53d6184b1a0..48ec1ea28c6 100644
16 --- a/dev-python/distributed/Manifest
17 +++ b/dev-python/distributed/Manifest
18 @@ -1,2 +1 @@
19 -DIST distributed-1.17.1.tar.gz 376088 BLAKE2B 5817b192fb8771c514eaf0f9b4a89331dd379ba90e3f5952da1a256bb19dd17cf67d0a8c73a2de3880975f885e0a25b169085f23ad2c3eb01a6e21ad3d989f73 SHA512 e3addbdd18165ca00879829e98993b5e5d466dfdfa9255a668725852256b2bc6bca80ca42c63744ef3988d66d61bfc43258a83e7445158733d511d27aa68c64a
20 DIST distributed-1.18.0.tar.gz 395888 BLAKE2B a1f84f93130b4e878d2b6a2059e71330fd10ac7be2c8e1d3fa06984e34dda4984180f496b9513f531ae21f3cc978f71f8e9492fcd5d644613a7d9ececcb5ecb6 SHA512 3603b22a454c7010c64fceb79b4aa024476bd038f4c27585c8f2dd51a2e4ace1c900dfc7c3bf096d4274be985003b72e9bd16af7b351ec9a65c6712a1f5e39d4
21
22 diff --git a/dev-python/distributed/distributed-1.17.1.ebuild b/dev-python/distributed/distributed-1.17.1.ebuild
23 deleted file mode 100644
24 index 0ed247fb69a..00000000000
25 --- a/dev-python/distributed/distributed-1.17.1.ebuild
26 +++ /dev/null
27 @@ -1,46 +0,0 @@
28 -# Copyright 1999-2017 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=6
32 -
33 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
34 -
35 -inherit distutils-r1
36 -
37 -DESCRIPTION="Python library for distributed computation"
38 -HOMEPAGE="http://distributed.readthedocs.io/"
39 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="BSD"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
44 -IUSE="test"
45 -
46 -RDEPEND="
47 - dev-python/click[${PYTHON_USEDEP}]
48 - >=dev-python/cloudpickle-0.2.2[${PYTHON_USEDEP}]
49 - >=dev-python/dask-0.14.1[${PYTHON_USEDEP}]
50 - >=dev-python/joblib-0.10.2[${PYTHON_USEDEP}]
51 - dev-python/msgpack[${PYTHON_USEDEP}]
52 - >=dev-python/partd-0.3.7[${PYTHON_USEDEP}]
53 - dev-python/psutil[${PYTHON_USEDEP}]
54 - dev-python/six[${PYTHON_USEDEP}]
55 - dev-python/sortedcollections[${PYTHON_USEDEP}]
56 - dev-python/tblib[${PYTHON_USEDEP}]
57 - >=dev-python/toolz-0.7.4[${PYTHON_USEDEP}]
58 - dev-python/zict[${PYTHON_USEDEP}]
59 - www-servers/tornado[${PYTHON_USEDEP}]
60 - virtual/python-futures[${PYTHON_USEDEP}]
61 -"
62 -DEPEND="
63 - dev-python/setuptools[${PYTHON_USEDEP}]
64 - test? (
65 - ${RDEPEND}
66 - dev-python/pytest[${PYTHON_USEDEP}]
67 - )
68 -"
69 -
70 -python_test() {
71 - cd "${BUILD_DIR}"/lib || die
72 - py.test -m "not avoid_travis" distributed --verbose -r s --timeout-method=thread --timeout=300 --durations=20 || die
73 -}