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/python-xmlsec/
Date: Thu, 31 Mar 2022 14:08:30
Message-Id: 1648735463.704abd101afc2fdffadc74be67a953e148299a95.mgorny@gentoo
1 commit: 704abd101afc2fdffadc74be67a953e148299a95
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 31 14:04:23 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 31 14:04:23 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=704abd10
7
8 dev-python/python-xmlsec: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../python-xmlsec/python-xmlsec-1.3.12.ebuild | 43 ----------------------
13 1 file changed, 43 deletions(-)
14
15 diff --git a/dev-python/python-xmlsec/python-xmlsec-1.3.12.ebuild b/dev-python/python-xmlsec/python-xmlsec-1.3.12.ebuild
16 deleted file mode 100644
17 index 1fcfd448ae45..000000000000
18 --- a/dev-python/python-xmlsec/python-xmlsec-1.3.12.ebuild
19 +++ /dev/null
20 @@ -1,43 +0,0 @@
21 -# Copyright 2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{8..10} )
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="Python bindings for the XML Security Library"
30 -HOMEPAGE="https://github.com/mehcode/python-xmlsec"
31 -SRC_URI="https://github.com/mehcode/python-xmlsec/archive/${PV}.tar.gz -> ${P}.tar.gz"
32 -
33 -LICENSE="MIT"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~ppc64 x86"
36 -
37 -RDEPEND="dev-libs/xmlsec:=
38 - dev-python/lxml[${PYTHON_USEDEP}]"
39 -DEPEND="${RDEPEND}"
40 -BDEPEND="dev-python/pkgconfig[${PYTHON_USEDEP}]
41 - dev-python/wheel[${PYTHON_USEDEP}]
42 - test? (
43 - dev-python/hypothesis[${PYTHON_USEDEP}]
44 - )"
45 -
46 -PATCHES=(
47 - "${FILESDIR}/${PN}-1.3.11-fix-xml-testfail.patch"
48 -)
49 -
50 -EPYTEST_DESELECT=(
51 - # Fragile based on black version?
52 - tests/test_type_stubs.py::test_xmlsec_constants_stub
53 -)
54 -
55 -distutils_enable_tests --install pytest
56 -
57 -python_prepare_all() {
58 - sed -e "s:use_scm_version=.*:version='${PV}',:" \
59 - -e "/setup_requires/ d" \
60 - -i setup.py || die
61 -
62 - distutils-r1_python_prepare_all
63 -}