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-schema/
Date: Sat, 09 Apr 2022 20:23:31
Message-Id: 1649535799.da61b36d435a2548da9587a6283fbeb3d28575e0.mgorny@gentoo
1 commit: da61b36d435a2548da9587a6283fbeb3d28575e0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 9 20:12:17 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 9 20:23:19 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da61b36d
7
8 dev-python/zope-schema: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/zope-schema/Manifest | 1 -
13 dev-python/zope-schema/zope-schema-6.1.1.ebuild | 43 -------------------------
14 2 files changed, 44 deletions(-)
15
16 diff --git a/dev-python/zope-schema/Manifest b/dev-python/zope-schema/Manifest
17 index 4d2882d2d3dc..77b5b037d689 100644
18 --- a/dev-python/zope-schema/Manifest
19 +++ b/dev-python/zope-schema/Manifest
20 @@ -1,2 +1 @@
21 -DIST zope.schema-6.1.1.tar.gz 108603 BLAKE2B 9e2d4c48431408fd66c236fad44627f15443e29ff0c4af0a0734c3a1a9dfaee6c772463a7a121112b151699c184d39e307485a981ddb3e13f2f81c7c71543500 SHA512 af51f02818509eacdd558ee04c15bcf4e80321069b8c4a33636d520a8af7509e8d01b391fc1d327fc980ac27388f4e303a870afc5c4f9b5ff0770311a4f26978
22 DIST zope.schema-6.2.0.tar.gz 104068 BLAKE2B 10d300b925f57a028b40bbcdfd7b0eb330815b63c86d6ded60fb594d549b1459cb67a99bd19e6d1782104a8bab204d8033ce422b5f9ebddb00e2fdfc1ab7d529 SHA512 f3083e4fc1dc54160c38cf7033519f9f37fef3e39f2f15b53fc4475d0989932448a018d77f8562870f4df85c5bf35bc756aec97868cd35ca07b733cf5796f00f
23
24 diff --git a/dev-python/zope-schema/zope-schema-6.1.1.ebuild b/dev-python/zope-schema/zope-schema-6.1.1.ebuild
25 deleted file mode 100644
26 index 4f5e20c9cfe1..000000000000
27 --- a/dev-python/zope-schema/zope-schema-6.1.1.ebuild
28 +++ /dev/null
29 @@ -1,43 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_SETUPTOOLS=rdepend
36 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
37 -
38 -inherit distutils-r1
39 -
40 -MY_PN=${PN/-/.}
41 -MY_P=${MY_PN}-${PV}
42 -
43 -DESCRIPTION="Zope schema Architecture"
44 -HOMEPAGE="https://github.com/zopefoundation/zope.schema http://docs.zope.org/zope.schema/"
45 -SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
46 -S="${WORKDIR}/${MY_P}"
47 -
48 -LICENSE="ZPL"
49 -SLOT="0"
50 -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
51 -
52 -RDEPEND="
53 - dev-python/zope-event[${PYTHON_USEDEP}]
54 - >=dev-python/zope-interface-5.0.0[${PYTHON_USEDEP}]"
55 -BDEPEND="
56 - test? (
57 - dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
58 - dev-python/zope-testing[${PYTHON_USEDEP}]
59 - )"
60 -
61 -distutils_enable_tests unittest
62 -
63 -python_test() {
64 - eunittest src
65 -}
66 -
67 -python_install_all() {
68 - distutils-r1_python_install_all
69 -
70 - # remove .pth files since dev-python/namespace-zope handles the ns
71 - find "${D}" -name '*.pth' -delete || die
72 -}