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-configuration/
Date: Sun, 29 Mar 2020 12:22:13
Message-Id: 1585484405.6bd82ebe7fa5a7cd6582e20354dae191f28a93fd.mgorny@gentoo
1 commit: 6bd82ebe7fa5a7cd6582e20354dae191f28a93fd
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 12:14:45 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 12:20:05 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bd82ebe
7
8 dev-python/zope-configuration: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/zope-configuration/Manifest | 1 -
13 .../zope-configuration-4.1.0.ebuild | 41 ----------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/dev-python/zope-configuration/Manifest b/dev-python/zope-configuration/Manifest
17 index 0f845081d11..83a4e4078e4 100644
18 --- a/dev-python/zope-configuration/Manifest
19 +++ b/dev-python/zope-configuration/Manifest
20 @@ -1,2 +1 @@
21 -DIST zope.configuration-4.1.0.tar.gz 77780 BLAKE2B a3f0da446bbc858e43ccd4249c80db07b1f29df1fc31931c07bcd55116084a70b9618b15f22a8f1027e1fc53c8e2a7ba75bb3a80d8419c16cbef8f847299a3de SHA512 86bbc5ac22c61d485fcb55c4dafb5b81eaab0a08de1e5dc3cd586769323a09896e72b1e8aac790d3e8d8f93a133efd3f88a92a4b3c1075bdd0da62cd4e33c56a
22 DIST zope.configuration-4.3.1.tar.gz 83223 BLAKE2B 9c55951932f34484fa6760a6a3cbdf89fbf8723c43b9b4ea2cf909b74716bcdd74d03327fc418f43bcfc8b6b5c17554cf8d062952d8d6880e49e6b270da9c1c8 SHA512 bc8edf84a391cab4f664ea3a4d24b65cb9db351c972b6118e69fe3c726bbe3337121ff59d687dddf463b3672ed6996f21d4437941c81dc456a4e5d837e0945d2
23
24 diff --git a/dev-python/zope-configuration/zope-configuration-4.1.0.ebuild b/dev-python/zope-configuration/zope-configuration-4.1.0.ebuild
25 deleted file mode 100644
26 index f21f3228d8b..00000000000
27 --- a/dev-python/zope-configuration/zope-configuration-4.1.0.ebuild
28 +++ /dev/null
29 @@ -1,41 +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 -PYTHON_COMPAT=(python{2_7,3_6})
35 -
36 -inherit distutils-r1
37 -MY_PN=zope.configuration
38 -MY_P=${MY_PN}-${PV}
39 -
40 -DESCRIPTION="Zope Configuration Architecture"
41 -HOMEPAGE="https://github.com/zopefoundation/zope.configuration
42 - https://docs.zope.org/zope.configuration/"
43 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
44 -
45 -LICENSE="ZPL"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
48 -IUSE="test"
49 -
50 -RDEPEND="dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
51 - dev-python/zope-interface[${PYTHON_USEDEP}]
52 - dev-python/zope-schema[${PYTHON_USEDEP}]"
53 -DEPEND="test? ( ${RDEPEND}
54 - dev-python/nose[${PYTHON_USEDEP}] )
55 - dev-python/setuptools[${PYTHON_USEDEP}]"
56 -
57 -S=${WORKDIR}/${MY_P}
58 -
59 -RESTRICT="test"
60 -
61 -python_test() {
62 - nosetests || die
63 -}
64 -
65 -python_install_all() {
66 - distutils-r1_python_install_all
67 -
68 - # remove .pth files since dev-python/namespace-zope handles the ns
69 - find "${D}" -name '*.pth' -delete || die
70 -}