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/futures/
Date: Wed, 03 Jan 2018 23:35:44
Message-Id: 1515022521.0e9ef0b22c697cfdc7b421e73e823442278d636b.mgorny@gentoo
1 commit: 0e9ef0b22c697cfdc7b421e73e823442278d636b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 3 22:37:10 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 3 23:35:21 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e9ef0b2
7
8 dev-python/futures: Clean old up
9
10 dev-python/futures/Manifest | 1 -
11 dev-python/futures/futures-2.2.0.ebuild | 38 ---------------------------------
12 2 files changed, 39 deletions(-)
13
14 diff --git a/dev-python/futures/Manifest b/dev-python/futures/Manifest
15 index d5ed0a200ad..c1ad46028f9 100644
16 --- a/dev-python/futures/Manifest
17 +++ b/dev-python/futures/Manifest
18 @@ -1,3 +1,2 @@
19 -DIST futures-2.2.0.tar.gz 26786 BLAKE2B 61fc83741b00c735bb28e1ab01356440f294b1e9539e31460ef2d36ce786e191a5ac03bf55b08c62d5003becd2505378e5cd5cce45583d0adfefe9997934100f SHA512 5f2a835b4b3f6bf1c4f086984a2e1d6ab30004b9af9298ef8afb23549014695ba26b43500dad3ee873e52aacd75911a42cd4ec9dfae6522cb99476a480dc83ee
20 DIST futures-3.0.3.tar.gz 24959 BLAKE2B 2888284e00d6fa6532c19088b058d2b7e153b1df9fde4e004467cb06a64c2c9947d0aa23ecba0171db9c905d0ee6851dde9bc64a276de6a5044453f29c5020fa SHA512 2fa14df90e583ca86c47441b170a93435eb82fd37bb2e15d98e79c32fbe40fc3f602d762805de05fa8007df4a3ce92840915be59481b94ab4863aae884da74bd
21 DIST futures-3.1.1.tar.gz 26471 BLAKE2B 53c7678cec213351bc1c172de857c60bbcc392f24a0a6d1fba42eb6190f82d8f01977f8b830e9db5ba0628eb50f2d6dcf0d0421c4b06e42adbd1d429c0c28281 SHA512 7ccb041271ed2688591942f46ab2d2c92d806efbd5209ff9aba77c6d5d3c1a1495fccbeb1718d914894b0b8d936438687e8f3cc22b7ab6625fb518321084ead3
22
23 diff --git a/dev-python/futures/futures-2.2.0.ebuild b/dev-python/futures/futures-2.2.0.ebuild
24 deleted file mode 100644
25 index a32041e878e..00000000000
26 --- a/dev-python/futures/futures-2.2.0.ebuild
27 +++ /dev/null
28 @@ -1,38 +0,0 @@
29 -# Copyright 1999-2015 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://code.google.com/p/pythonfutures 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="amd64 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 -}