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/zope-testing/
Date: Sun, 29 Mar 2020 12:22:16
Message-Id: 1585484415.bd26fa5f52632af0c5dfda648c6e2c955840660a.mgorny@gentoo
1 commit: bd26fa5f52632af0c5dfda648c6e2c955840660a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 12:17:29 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 12:20:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd26fa5f
7
8 dev-python/zope-testing: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/zope-testing/Manifest | 1 -
13 dev-python/zope-testing/zope-testing-4.6.2.ebuild | 36 -----------------------
14 2 files changed, 37 deletions(-)
15
16 diff --git a/dev-python/zope-testing/Manifest b/dev-python/zope-testing/Manifest
17 index 2848b3e9f6e..682692fd1bb 100644
18 --- a/dev-python/zope-testing/Manifest
19 +++ b/dev-python/zope-testing/Manifest
20 @@ -1,2 +1 @@
21 -DIST zope.testing-4.6.2.tar.gz 62710 BLAKE2B 4b70538dc8bbbc4445bcdc8eb2d49c36b4fede893a50007367195aa1017b088ae65805b59566daefd7cfad612ca20c24659cb3da65aa3e307cad3aaa03c67178 SHA512 816c87a38c847aad67857c364bb9999f4283484c933be2bcb54066dac4a6f8c6f94dfde61860397003e7f17b8669e7964a7fbe28e7ca7313f5d131f17c0b672d
22 DIST zope.testing-4.7.tar.gz 63474 BLAKE2B dc825849c288b9f8ab9e4edfe670e09aa49f28c64047da8e0fb36cbfa6cf24d70cf6a49ea8a51ca1831b152f3ffa4b0c62cde29750036f13c9f754df2bb80da2 SHA512 cdf87f95196880a0f55c740f6340286bb29e96e9273d0c645bbb50def54a0645cce22d971adba3f15ff57b1021a72749219af83abc4e8fa775fb982d8164791d
23
24 diff --git a/dev-python/zope-testing/zope-testing-4.6.2.ebuild b/dev-python/zope-testing/zope-testing-4.6.2.ebuild
25 deleted file mode 100644
26 index b4e329f1d44..00000000000
27 --- a/dev-python/zope-testing/zope-testing-4.6.2.ebuild
28 +++ /dev/null
29 @@ -1,36 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python2_7 python3_6 pypy3 )
36 -inherit distutils-r1
37 -
38 -MY_PN=${PN/-/.}
39 -MY_P=${MY_PN}-${PV}
40 -
41 -DESCRIPTION="Zope testing helpers"
42 -HOMEPAGE="https://pypi.org/project/zope.testing/ https://github.com/zopefoundation/zope.testing"
43 -SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_P}.tar.gz"
44 -
45 -LICENSE="ZPL"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~x86"
48 -IUSE=""
49 -
50 -RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
51 -DEPEND="${RDEPEND}
52 - dev-python/setuptools[${PYTHON_USEDEP}]"
53 -
54 -S=${WORKDIR}/${MY_P}
55 -
56 -python_test() {
57 - esetup.py test
58 -}
59 -
60 -python_install_all() {
61 - distutils-r1_python_install_all
62 -
63 - # remove .pth files since dev-python/namespace-zope handles the ns
64 - find "${D}" -name '*.pth' -delete || die
65 -}