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/defusedxml/
Date: Thu, 26 Mar 2020 20:35:24
Message-Id: 1585254887.d30e9387d76d7c4ec98c3ae2a3e4d50740f274d6.mgorny@gentoo
1 commit: d30e9387d76d7c4ec98c3ae2a3e4d50740f274d6
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 26 20:27:29 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 26 20:34:47 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d30e9387
7
8 dev-python/defusedxml: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/defusedxml/Manifest | 1 -
13 dev-python/defusedxml/defusedxml-0.5.0.ebuild | 34 ---------------------------
14 2 files changed, 35 deletions(-)
15
16 diff --git a/dev-python/defusedxml/Manifest b/dev-python/defusedxml/Manifest
17 index 9c61568ec5e..214080857e7 100644
18 --- a/dev-python/defusedxml/Manifest
19 +++ b/dev-python/defusedxml/Manifest
20 @@ -1,2 +1 @@
21 -DIST defusedxml-0.5.0.tar.gz 60405 BLAKE2B bd57b3b705abff71ff99ce4e43fe4c1fd708463546cc5d614dceb56f36e98771ef5c952a1aae010d32e4b557ed687c194c61723a0b3334dc1b0d517591d7c3d3 SHA512 71e1a604df9be41ded454bcdfa63610e897eb405295d7365fcddfc5f50f7572c36f0bd91a4a1fdf47d1b097637bd9fdcf08f1cdb73e2fe64eea0320a7532e452
22 DIST defusedxml-0.6.0.tar.gz 62670 BLAKE2B 352202cd8157bcd18ecb06921eb086cfc91e567dbbb18592e526caa4fed69bc76842eda849813b829ef4389d3df74303529e7f775d56be2f919783fc7fb19b04 SHA512 dd1313802cf8565fd319ef10af04075019d00cba557e6414b2a2762bd4302437a32c05cd8c9e4cec5310c68c6a95d2951acf1360244e7974d40bb3fe963b7226
23
24 diff --git a/dev-python/defusedxml/defusedxml-0.5.0.ebuild b/dev-python/defusedxml/defusedxml-0.5.0.ebuild
25 deleted file mode 100644
26 index c485a6a441d..00000000000
27 --- a/dev-python/defusedxml/defusedxml-0.5.0.ebuild
28 +++ /dev/null
29 @@ -1,34 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -PYTHON_COMPAT=( python{2_7,3_6,3_7} pypy3 )
36 -PYTHON_REQ_USE="xml(+)"
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="XML bomb protection for Python stdlib modules, an xml serialiser"
41 -HOMEPAGE="https://bitbucket.org/tiran/defusedxml https://pypi.org/project/defusedxml/"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux"
44 -IUSE="examples"
45 -
46 -LICENSE="PSF-2"
47 -SLOT="0"
48 -
49 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
50 -
51 -python_test() {
52 - esetup.py test
53 -}
54 -
55 -python_install_all() {
56 - if use examples; then
57 - docinto examples
58 - dodoc -r other/.
59 - docompress -x /usr/share/doc/${PF}/examples
60 - fi
61 -
62 - distutils-r1_python_install_all
63 -}