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/greenlet/
Date: Thu, 04 Jan 2018 20:35:13
Message-Id: 1515098091.33c8b06015af1f0c69da62629de8f311113101cb.mgorny@gentoo
1 commit: 33c8b06015af1f0c69da62629de8f311113101cb
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 4 20:02:03 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 4 20:34:51 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33c8b060
7
8 dev-python/greenlet: Clean old up
9
10 dev-python/greenlet/Manifest | 1 -
11 dev-python/greenlet/greenlet-0.4.10.ebuild | 47 ------------------------------
12 2 files changed, 48 deletions(-)
13
14 diff --git a/dev-python/greenlet/Manifest b/dev-python/greenlet/Manifest
15 index 278b64dd08e..21e2ef46fca 100644
16 --- a/dev-python/greenlet/Manifest
17 +++ b/dev-python/greenlet/Manifest
18 @@ -1,2 +1 @@
19 -DIST greenlet-0.4.10.zip 82616 BLAKE2B 6e768e94f13db018a11c553288c06d1481eab5f3135ac9c37850bc34800df7fedc9c437a55be7afcd160d13284082b562d1a6d321dd2ee465b5db38f4217083c SHA512 7fc78b14dca079f838647fd99878850cf9e83af781c985362146a11f71c5a700fbac8148273cd1c0ec4ac6ead4cf5bd389e001b8fc1225e87e9b51919d7ecc6c
20 DIST greenlet-0.4.12.tar.gz 57319 BLAKE2B 8260e495bb67e1a2b5b593d3513c3e2157a7b68b71fa3cb2a77de3b4ccc21b5d56bab26b6f0caf00cb669f051d22d7d6ad2700059a3d23b9ad7591f3d6608f43 SHA512 f3bf0f82b6e3bc687fc9b89469339cfb05e64518d1e49bc96066e8d47b8559f1c1aa53692cd25d839437a2f1b81df6fd9a4509a1b4063ec4ce1d97b73842e9f6
21
22 diff --git a/dev-python/greenlet/greenlet-0.4.10.ebuild b/dev-python/greenlet/greenlet-0.4.10.ebuild
23 deleted file mode 100644
24 index d066407ec74..00000000000
25 --- a/dev-python/greenlet/greenlet-0.4.10.ebuild
26 +++ /dev/null
27 @@ -1,47 +0,0 @@
28 -# Copyright 1999-2017 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=5
32 -
33 -# Note: greenlet is built-in in pypy
34 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
35 -
36 -inherit distutils-r1 flag-o-matic
37 -
38 -DESCRIPTION="Lightweight in-process concurrent programming"
39 -HOMEPAGE="https://pypi.python.org/pypi/greenlet/"
40 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -KEYWORDS="-alpha amd64 arm ~arm64 -hppa -ia64 ~mips ppc ppc64 x86 ~amd64-linux ~x86-linux"
45 -IUSE="doc"
46 -
47 -DEPEND="
48 - app-arch/unzip
49 - dev-python/setuptools[${PYTHON_USEDEP}]
50 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
51 -
52 -DISTUTILS_IN_SOURCE_BUILD=1
53 -
54 -python_compile() {
55 - if [[ ${EPYTHON} == python2.7 ]]; then
56 - local CFLAGS=${CFLAGS} CXXFLAGS=${CXXFLAGS}
57 - append-flags -fno-strict-aliasing
58 - fi
59 -
60 - distutils-r1_python_compile
61 -}
62 -
63 -python_compile_all() {
64 - use doc && emake -C doc html
65 -}
66 -
67 -python_test() {
68 - "${PYTHON}" run-tests.py -n || die "Tests fail with ${EPYTHON}"
69 -}
70 -
71 -python_install_all() {
72 - use doc && local HTML_DOCS=( doc/_build/html/. )
73 - distutils-r1_python_install_all
74 -}