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-exceptions/
Date: Sun, 29 Mar 2020 12:22:17
Message-Id: 1585484409.ae444264bfd2d72c4bb677d0e6887f60c8bb21ad.mgorny@gentoo
1 commit: ae444264bfd2d72c4bb677d0e6887f60c8bb21ad
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 12:15:30 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 12:20:09 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae444264
7
8 dev-python/zope-exceptions: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/zope-exceptions/Manifest | 1 -
13 .../zope-exceptions/zope-exceptions-4.1.0.ebuild | 40 ----------------------
14 2 files changed, 41 deletions(-)
15
16 diff --git a/dev-python/zope-exceptions/Manifest b/dev-python/zope-exceptions/Manifest
17 index dc76e3266ec..fd8a8cbe237 100644
18 --- a/dev-python/zope-exceptions/Manifest
19 +++ b/dev-python/zope-exceptions/Manifest
20 @@ -1,2 +1 @@
21 -DIST zope.exceptions-4.1.0.tar.gz 26605 BLAKE2B c57ed6536e4e2eee973864b2cff4e5559f7a184c49714ca5b8b6c7c5bf56aa0e4580d149a9dfe0607ba8b1738e88f05b65c145ccdeb20ef82826be2009eaca05 SHA512 7491a0558a999d6907d2d1adb33086ef047dd4fc5d39709da628a94ee11f5afaec4b2cb456c19b16595cfaf46cc0d25fb847196d331c9d9c80d2ba3a582b415f
22 DIST zope.exceptions-4.3.tar.gz 30704 BLAKE2B aa5319c8f9b3555038809f8209d121b4a8944a9df1c683302749c12e1e5097139047583b1f033e6530005232fadc326aed7da64fa585b749ec50cd22cb3411a5 SHA512 348c8edb0246bb2035ca5c1bcfaca7d3be2525157e2c9267a59a061c8ba749b364428e3d6a3aa3f967306abd0a319e4d6fa935b7fc35fff3bb53960015505695
23
24 diff --git a/dev-python/zope-exceptions/zope-exceptions-4.1.0.ebuild b/dev-python/zope-exceptions/zope-exceptions-4.1.0.ebuild
25 deleted file mode 100644
26 index cb3dd5aeea3..00000000000
27 --- a/dev-python/zope-exceptions/zope-exceptions-4.1.0.ebuild
28 +++ /dev/null
29 @@ -1,40 +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="General purpose exceptions for Zope packages"
42 -HOMEPAGE="https://pypi.org/project/zope.exceptions/ https://github.com/zopefoundation/zope.exceptions"
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="test"
49 -RESTRICT="!test? ( test )"
50 -
51 -# TODO: extras?
52 -RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]
53 - dev-python/zope-interface[${PYTHON_USEDEP}]"
54 -DEPEND="${RDEPEND}
55 - dev-python/setuptools[${PYTHON_USEDEP}]
56 - test? ( dev-python/zope-testrunner[${PYTHON_USEDEP}] )"
57 -
58 -S=${WORKDIR}/${MY_P}
59 -
60 -python_test() {
61 - esetup.py test
62 -}
63 -
64 -python_install_all() {
65 - distutils-r1_python_install_all
66 -
67 - # remove .pth files since dev-python/namespace-zope handles the ns
68 - find "${D}" -name '*.pth' -delete || die
69 -}