Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/futures/
Date: Thu, 01 Mar 2018 19:36:00
Message-Id: 1519932884.b1e3204764b973996144bb3fcb92846d7fe5b38a.radhermit@gentoo
1 commit: b1e3204764b973996144bb3fcb92846d7fe5b38a
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 19 23:50:40 2018 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 1 19:34:44 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1e32047
7
8 dev-python/futures: remove old
9
10 dev-python/futures/Manifest | 1 -
11 dev-python/futures/futures-3.0.3.ebuild | 38 ---------------------------------
12 2 files changed, 39 deletions(-)
13
14 diff --git a/dev-python/futures/Manifest b/dev-python/futures/Manifest
15 index e6f3221038f..0f527c83e23 100644
16 --- a/dev-python/futures/Manifest
17 +++ b/dev-python/futures/Manifest
18 @@ -1,3 +1,2 @@
19 -DIST futures-3.0.3.tar.gz 24959 BLAKE2B 2888284e00d6fa6532c19088b058d2b7e153b1df9fde4e004467cb06a64c2c9947d0aa23ecba0171db9c905d0ee6851dde9bc64a276de6a5044453f29c5020fa SHA512 2fa14df90e583ca86c47441b170a93435eb82fd37bb2e15d98e79c32fbe40fc3f602d762805de05fa8007df4a3ce92840915be59481b94ab4863aae884da74bd
20 DIST futures-3.1.1.tar.gz 26471 BLAKE2B 53c7678cec213351bc1c172de857c60bbcc392f24a0a6d1fba42eb6190f82d8f01977f8b830e9db5ba0628eb50f2d6dcf0d0421c4b06e42adbd1d429c0c28281 SHA512 7ccb041271ed2688591942f46ab2d2c92d806efbd5209ff9aba77c6d5d3c1a1495fccbeb1718d914894b0b8d936438687e8f3cc22b7ab6625fb518321084ead3
21 DIST futures-3.2.0.tar.gz 27320 BLAKE2B b2a6c380955ce29fd434e30897d39d1fe1dbe758ec663bb243c4891849f3e45cf5eba10b71a9e6a028b32f20f876d5662188ec387d442492c7f4b73463b2f728 SHA512 e8c08ebc38d7397b5c2a5dc8c22567af1a1b6d5ce6fb8c189f663fb25b96f1ebcbade1ec0a95e9970dfac73606ecd5d7c6f79cc010fd62930a5b005d9babdde0
22
23 diff --git a/dev-python/futures/futures-3.0.3.ebuild b/dev-python/futures/futures-3.0.3.ebuild
24 deleted file mode 100644
25 index b184442a9eb..00000000000
26 --- a/dev-python/futures/futures-3.0.3.ebuild
27 +++ /dev/null
28 @@ -1,38 +0,0 @@
29 -# Copyright 1999-2018 Gentoo Foundation
30 -# Distributed under the terms of the GNU General Public License v2
31 -
32 -EAPI=5
33 -PYTHON_COMPAT=( python2_7 pypy )
34 -inherit distutils-r1
35 -
36 -DESCRIPTION="Backport of the concurrent.futures package from Python 3.2"
37 -HOMEPAGE="https://pypi.python.org/pypi/futures"
38 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
39 -
40 -LICENSE="BSD"
41 -SLOT="0"
42 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 ~s390 ~sh sparc x86"
43 -IUSE="doc"
44 -
45 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
46 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
47 -
48 -python_compile_all() {
49 - use doc && emake -C docs html
50 -}
51 -
52 -python_test() {
53 - # tests that fail under pypy
54 - # https://code.google.com/p/pythonfutures/issues/detail?id=27
55 - if [[ "${EPYTHON}" == pypy ]]; then
56 - sed -e 's:test_del_shutdown:_&:g' \
57 - -e 's:test_repr:_&:' -i test_futures.py || die
58 - fi
59 - "${PYTHON}" test_futures.py || die "Tests fail with ${EPYTHON}"
60 -}
61 -
62 -python_install_all() {
63 - local DOCS=( CHANGES )
64 - use doc && local HTML_DOCS=( docs/_build/html/. )
65 - distutils-r1_python_install_all
66 -}