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: Sat, 09 Apr 2022 18:39:26
Message-Id: 1649529432.0eec4b8ea4fc9daa166793b6c5b410808365d1b1.mgorny@gentoo
1 commit: 0eec4b8ea4fc9daa166793b6c5b410808365d1b1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 9 18:37:12 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 9 18:37:12 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eec4b8e
7
8 dev-python/zope-testing: Remove old
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.9.ebuild | 31 -------------------------
14 2 files changed, 32 deletions(-)
15
16 diff --git a/dev-python/zope-testing/Manifest b/dev-python/zope-testing/Manifest
17 index 8c42f0d8f341..11375d98ff56 100644
18 --- a/dev-python/zope-testing/Manifest
19 +++ b/dev-python/zope-testing/Manifest
20 @@ -1,2 +1 @@
21 DIST zope.testing-4.10.tar.gz 45359 BLAKE2B 477d28a7d1a76c0a5111f16859d9e3b9b9ac9cc953b0e2c7dd9ba0a39b498d71442d1b5aaf485455c919ad618efb1f9f9b8e1587fd4905c4a823b04ef09ef8b2 SHA512 35fd5114b6de3cb47336185feb8bf8f444b53ef2c32f165e57756a017ec9caba9a29f2ec01844ebcf156fff1c2b7424b3ac126b3e8d4daefe73e1a640d21589a
22 -DIST zope.testing-4.9.tar.gz 62294 BLAKE2B 34b2fc10e7220d88451b655d0e43f513d004779c496c824fa3e58b17c883a401f4707d5dbe7a547f1f97fe7db73b25cdf16997f2733b832ceabc37f1d5265397 SHA512 04b660aa93e120ae7e57bf637d99302d26912800ea3995a24c6d252ee4bd8e06fd8d4a24d980f591846d9bca93523373a92528ef492ff4d6990887ab6cf527d0
23
24 diff --git a/dev-python/zope-testing/zope-testing-4.9.ebuild b/dev-python/zope-testing/zope-testing-4.9.ebuild
25 deleted file mode 100644
26 index 4da58c831cae..000000000000
27 --- a/dev-python/zope-testing/zope-testing-4.9.ebuild
28 +++ /dev/null
29 @@ -1,31 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -DISTUTILS_USE_SETUPTOOLS=rdepend
36 -PYTHON_COMPAT=( python3_{7..10} pypy3 )
37 -inherit distutils-r1
38 -
39 -MY_PN=${PN/-/.}
40 -MY_P=${MY_PN}-${PV}
41 -
42 -DESCRIPTION="Zope testing helpers"
43 -HOMEPAGE="https://pypi.org/project/zope.testing/ https://github.com/zopefoundation/zope.testing"
44 -SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_P}.tar.gz"
45 -S="${WORKDIR}/${MY_P}"
46 -
47 -LICENSE="ZPL"
48 -SLOT="0"
49 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
50 -
51 -RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
52 -
53 -distutils_enable_tests setup.py
54 -
55 -python_install_all() {
56 - distutils-r1_python_install_all
57 -
58 - # remove .pth files since dev-python/namespace-zope handles the ns
59 - find "${D}" -name '*.pth' -delete || die
60 -}