[gentoo-commits] repo/gentoo:master commit in: dev-python/xmlsec/

2024-05-18 Thread Michał Górny
commit: 364daa66ffb1308393040ecd1f9a2dc500612193
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May 18 11:34:56 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May 18 11:46:05 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=364daa66

dev-python/xmlsec: Enable py3.13

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/xmlsec/xmlsec-1.3.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/xmlsec/xmlsec-1.3.14.ebuild 
b/dev-python/xmlsec/xmlsec-1.3.14.ebuild
index 002033bd5ead..c478fef45bc2 100644
--- a/dev-python/xmlsec/xmlsec-1.3.14.ebuild
+++ b/dev-python/xmlsec/xmlsec-1.3.14.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 DISTUTILS_EXT=1
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/xmlsec/, dev-python/xmlsec/files/

2024-05-18 Thread Michał Górny
commit: b483e4dfb81d2377b538e0dea31ca648f18820fe
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May 18 11:45:16 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May 18 11:46:06 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b483e4df

dev-python/xmlsec: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/xmlsec/Manifest |  1 -
 .../files/xmlsec-1.3.11-fix-xml-testfail.patch | 23 -
 dev-python/xmlsec/xmlsec-1.3.12-r4.ebuild  | 58 --
 3 files changed, 82 deletions(-)

diff --git a/dev-python/xmlsec/Manifest b/dev-python/xmlsec/Manifest
index 7a3a87d3cb5a..88f0b1c000c6 100644
--- a/dev-python/xmlsec/Manifest
+++ b/dev-python/xmlsec/Manifest
@@ -1,2 +1 @@
-DIST python-xmlsec-1.3.12.gh.tar.gz 77722 BLAKE2B 
b5ecece8063b823cdbe4d58967d10026bdc6f3774954021a3739d579ba3c5a08130af1792921c7892e6bc3d00f88ac83ab30e862775e419e0dad40b990b10cbe
 SHA512 
19c5e3bf58b4b0f8a1cca3e60c08348b02ae298620f8c02b8cfb325aecf0313cb2bd1af89507b754ebe4c35af3b031e232d15ddcd42deae0821c9c0d7571aa7c
 DIST python-xmlsec-1.3.14.gh.tar.gz 80643 BLAKE2B 
b256ad1aa18b5a746148ff4b2e8b3136a31105e1bb64d2dd686d5e62c16c183187432ee06f0f8b9da0bdba3b96c3c1e7fb6f51148bb5d5d60e54083841973399
 SHA512 
7a28695bf122a9c04ed20e4a6a09f9428372c908857b1dd983251a7b890cc50e92a6fbaa7f062cd58d86dda14257720e9c9554b2b54d840f9180110d93145335

diff --git a/dev-python/xmlsec/files/xmlsec-1.3.11-fix-xml-testfail.patch 
b/dev-python/xmlsec/files/xmlsec-1.3.11-fix-xml-testfail.patch
deleted file mode 100644
index 3e7ab8829c2f..
--- a/dev-python/xmlsec/files/xmlsec-1.3.11-fix-xml-testfail.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-Taken from: 
https://github.com/mehcode/python-xmlsec/issues/84#issuecomment-632930116
-diff --git a/tests/base.py b/tests/base.py
-index b05de1d..5ec356f 100644
 a/tests/base.py
-+++ b/tests/base.py
-@@ -94,6 +94,7 @@ class TestMemoryLeaks(unittest.TestCase):
- 
- def load_xml(self, name, xpath=None):
- """returns xml.etree"""
-+etree.set_default_parser(parser=etree.XMLParser())
- root = etree.parse(self.path(name)).getroot()
- if xpath is None:
- return root
-diff --git a/tests/test_doc_examples.py b/tests/test_doc_examples.py
-index 2fc490f..53d2377 100644
 a/tests/test_doc_examples.py
-+++ b/tests/test_doc_examples.py
-@@ -42,3 +42,5 @@ def test_doc_example(example):
- """
- with cd(example.parent):
- runpy.run_path(str(example))
-+from lxml import etree
-+etree.set_default_parser(parser=etree.XMLParser())

diff --git a/dev-python/xmlsec/xmlsec-1.3.12-r4.ebuild 
b/dev-python/xmlsec/xmlsec-1.3.12-r4.ebuild
deleted file mode 100644
index 4dc3a59da936..
--- a/dev-python/xmlsec/xmlsec-1.3.12-r4.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 2021-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit distutils-r1
-
-MY_P=python-xmlsec-${PV}
-DESCRIPTION="Python bindings for the XML Security Library"
-HOMEPAGE="
-   https://github.com/xmlsec/python-xmlsec/
-   https://pypi.org/project/xmlsec/
-"
-SRC_URI="
-   https://github.com/xmlsec/python-xmlsec/archive/${PV}.tar.gz
-   -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~ppc64 x86"
-
-# Doesn't yet support xmlsec-1.3.0: 
https://github.com/xmlsec/python-xmlsec/issues/252
-RDEPEND="
-   https://github.com/xmlsec/python-xmlsec/issues/244
-   tests/test_ds.py::TestSignContext::test_sign_case5
-)
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-python/xmlsec/

2024-05-16 Thread Arthur Zamarin
commit: bc957b7f0d76d42234eb7598e801569554e7fa00
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu May 16 15:03:32 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu May 16 15:03:32 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc957b7f

dev-python/xmlsec: Stabilize 1.3.14 arm64, #931180

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/xmlsec/xmlsec-1.3.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/xmlsec/xmlsec-1.3.14.ebuild 
b/dev-python/xmlsec/xmlsec-1.3.14.ebuild
index 234f16862fe7..002033bd5ead 100644
--- a/dev-python/xmlsec/xmlsec-1.3.14.ebuild
+++ b/dev-python/xmlsec/xmlsec-1.3.14.ebuild
@@ -23,7 +23,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 
 DEPEND="
dev-libs/xmlsec:=[openssl]



[gentoo-commits] repo/gentoo:master commit in: dev-python/xmlsec/

2024-05-04 Thread Arthur Zamarin
commit: 5837ec5587c1cd8105c515af7b190251fb500aad
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat May  4 07:31:10 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat May  4 07:31:10 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5837ec55

dev-python/xmlsec: Stabilize 1.3.14 x86, #931180

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/xmlsec/xmlsec-1.3.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/xmlsec/xmlsec-1.3.14.ebuild 
b/dev-python/xmlsec/xmlsec-1.3.14.ebuild
index 7fee8d6b1cf8..234f16862fe7 100644
--- a/dev-python/xmlsec/xmlsec-1.3.14.ebuild
+++ b/dev-python/xmlsec/xmlsec-1.3.14.ebuild
@@ -23,7 +23,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 
 DEPEND="
dev-libs/xmlsec:=[openssl]



[gentoo-commits] repo/gentoo:master commit in: dev-python/xmlsec/

2024-05-04 Thread Arthur Zamarin
commit: 9d4a947b0a5c18666ff61df8b1f8cfc3e281cf03
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat May  4 07:16:55 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat May  4 07:16:55 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d4a947b

dev-python/xmlsec: Stabilize 1.3.14 amd64, #931180

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/xmlsec/xmlsec-1.3.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/xmlsec/xmlsec-1.3.14.ebuild 
b/dev-python/xmlsec/xmlsec-1.3.14.ebuild
index 5372479ee926..7fee8d6b1cf8 100644
--- a/dev-python/xmlsec/xmlsec-1.3.14.ebuild
+++ b/dev-python/xmlsec/xmlsec-1.3.14.ebuild
@@ -23,7 +23,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
 
 DEPEND="
dev-libs/xmlsec:=[openssl]



[gentoo-commits] repo/gentoo:master commit in: dev-python/xmlsec/

2024-04-17 Thread Michał Górny
commit: fa6d678cfbb57b2ce9d6dc6b29668ff6dea462e0
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 18 05:12:24 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 18 05:31:04 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa6d678c

dev-python/xmlsec: Bump to 1.3.14

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/xmlsec/Manifest |  1 +
 dev-python/xmlsec/xmlsec-1.3.14.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/xmlsec/Manifest b/dev-python/xmlsec/Manifest
index 8bd1049057d4..7a3a87d3cb5a 100644
--- a/dev-python/xmlsec/Manifest
+++ b/dev-python/xmlsec/Manifest
@@ -1 +1,2 @@
 DIST python-xmlsec-1.3.12.gh.tar.gz 77722 BLAKE2B 
b5ecece8063b823cdbe4d58967d10026bdc6f3774954021a3739d579ba3c5a08130af1792921c7892e6bc3d00f88ac83ab30e862775e419e0dad40b990b10cbe
 SHA512 
19c5e3bf58b4b0f8a1cca3e60c08348b02ae298620f8c02b8cfb325aecf0313cb2bd1af89507b754ebe4c35af3b031e232d15ddcd42deae0821c9c0d7571aa7c
+DIST python-xmlsec-1.3.14.gh.tar.gz 80643 BLAKE2B 
b256ad1aa18b5a746148ff4b2e8b3136a31105e1bb64d2dd686d5e62c16c183187432ee06f0f8b9da0bdba3b96c3c1e7fb6f51148bb5d5d60e54083841973399
 SHA512 
7a28695bf122a9c04ed20e4a6a09f9428372c908857b1dd983251a7b890cc50e92a6fbaa7f062cd58d86dda14257720e9c9554b2b54d840f9180110d93145335

diff --git a/dev-python/xmlsec/xmlsec-1.3.14.ebuild 
b/dev-python/xmlsec/xmlsec-1.3.14.ebuild
new file mode 100644
index ..5372479ee926
--- /dev/null
+++ b/dev-python/xmlsec/xmlsec-1.3.14.ebuild
@@ -0,0 +1,61 @@
+# Copyright 2021-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+MY_P=python-xmlsec-${PV}
+DESCRIPTION="Python bindings for the XML Security Library"
+HOMEPAGE="
+   https://github.com/xmlsec/python-xmlsec/
+   https://pypi.org/project/xmlsec/
+"
+SRC_URI="
+   https://github.com/xmlsec/python-xmlsec/archive/${PV}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+
+DEPEND="
+   dev-libs/xmlsec:=[openssl]
+"
+RDEPEND="
+   ${DEPEND}
+   dev-python/lxml[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/pkgconfig[${PYTHON_USEDEP}]
+   dev-python/setuptools-scm[${PYTHON_USEDEP}]
+   dev-python/wheel[${PYTHON_USEDEP}]
+   test? (
+   dev-python/hypothesis[${PYTHON_USEDEP}]
+   )
+"
+
+EPYTEST_DESELECT=(
+   # Fragile based on black version?
+   tests/test_type_stubs.py::test_xmlsec_constants_stub
+)
+
+distutils_enable_tests pytest
+
+src_configure() {
+   export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+   export PYXMLSEC_OPTIMIZE_SIZE=
+   if use debug; then
+   # we don't want to use PYXMLSEC_ENABLE_DEBUG envvar,
+   # as it forces -O0
+   export CPPFLAGS="${CPPFLAGS} -DPYXMLSEC_ENABLE_DEBUG=1"
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/xmlsec/

2024-03-29 Thread Patrick McLean
commit: bf0bf11ed36ab4cf358d7434aec1b51ecf9d2215
Author: Patrick McLean  gentoo  org>
AuthorDate: Thu Mar 28 20:37:49 2024 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Mar 29 19:13:12 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf0bf11e

dev-python/xmlsec: Remove ver restriction on lxml (bug #927927)

As per upstream issue, the segfaults are caused die to lxml being linked
against a different libxml2 than xmlsec. This isn't a problem for
package manager installed packages, especially source based installs.

Closes: https://bugs.gentoo.org/927927
Signed-off-by: Patrick McLean  gentoo.org>

 dev-python/xmlsec/{xmlsec-1.3.12-r3.ebuild => xmlsec-1.3.12-r4.ebuild} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild 
b/dev-python/xmlsec/xmlsec-1.3.12-r4.ebuild
similarity index 91%
rename from dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild
rename to dev-python/xmlsec/xmlsec-1.3.12-r4.ebuild
index 03cc95cdf32d..4dc3a59da936 100644
--- a/dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild
+++ b/dev-python/xmlsec/xmlsec-1.3.12-r4.ebuild
@@ -26,10 +26,9 @@ SLOT="0"
 KEYWORDS="amd64 arm64 ~ppc64 x86"
 
 # Doesn't yet support xmlsec-1.3.0: 
https://github.com/xmlsec/python-xmlsec/issues/252
-# Doesn't yet support lxml-5: 
https://github.com/xmlsec/python-xmlsec/issues/277
 RDEPEND="

[gentoo-commits] repo/gentoo:master commit in: dev-python/xmlsec/

2024-01-20 Thread Michał Górny
commit: 03bafbe8e72a1df7ab83e7e0d354c7062ffa7102
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jan 21 05:11:50 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jan 21 06:21:39 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03bafbe8

dev-python/xmlsec: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild | 58 ---
 1 file changed, 58 deletions(-)

diff --git a/dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild 
b/dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild
deleted file mode 100644
index bb49f81c3b00..
--- a/dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit distutils-r1
-
-MY_P=python-xmlsec-${PV}
-DESCRIPTION="Python bindings for the XML Security Library"
-HOMEPAGE="
-   https://github.com/xmlsec/python-xmlsec/
-   https://pypi.org/project/xmlsec/
-"
-SRC_URI="
-   https://github.com/xmlsec/python-xmlsec/archive/${PV}.tar.gz
-   -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~ppc64 x86"
-
-# Doesn't yet support xmlsec-1.3.0: 
https://github.com/xmlsec/python-xmlsec/issues/252
-RDEPEND="
-   https://github.com/xmlsec/python-xmlsec/issues/244
-   tests/test_ds.py::TestSignContext::test_sign_case5
-)
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-python/xmlsec/

2024-01-20 Thread Sam James
commit: bc9f5e23a8655e627b5f311ed42665f9e72f7567
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 21 02:43:34 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 21 02:43:34 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc9f5e23

dev-python/xmlsec: Stabilize 1.3.12-r3 x86, #922556

Signed-off-by: Sam James  gentoo.org>

 dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild 
b/dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild
index e5b29d345193..8127cf4fc621 100644
--- a/dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild
+++ b/dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild
@@ -23,7 +23,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 arm64 ~ppc64 x86"
 
 # Doesn't yet support xmlsec-1.3.0: 
https://github.com/xmlsec/python-xmlsec/issues/252
 # Doesn't yet support lxml-5: 
https://github.com/xmlsec/python-xmlsec/issues/277



[gentoo-commits] repo/gentoo:master commit in: dev-python/xmlsec/

2024-01-20 Thread Sam James
commit: b55f0a6bfc285b9bf44d94a9a8416c9661603225
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 21 02:43:35 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 21 02:43:35 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b55f0a6b

dev-python/xmlsec: Stabilize 1.3.12-r3 amd64, #922556

Signed-off-by: Sam James  gentoo.org>

 dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild 
b/dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild
index 8127cf4fc621..03cc95cdf32d 100644
--- a/dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild
+++ b/dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild
@@ -23,7 +23,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 
 # Doesn't yet support xmlsec-1.3.0: 
https://github.com/xmlsec/python-xmlsec/issues/252
 # Doesn't yet support lxml-5: 
https://github.com/xmlsec/python-xmlsec/issues/277



[gentoo-commits] repo/gentoo:master commit in: dev-python/xmlsec/

2024-01-20 Thread Arthur Zamarin
commit: 377845a96a34a0f2b7f21a90f8f379e94e3ce2db
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jan 20 18:34:49 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jan 20 18:34:49 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=377845a9

dev-python/xmlsec: Stabilize 1.3.12-r3 arm64, #922556

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild 
b/dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild
index dcaa3235598a..e5b29d345193 100644
--- a/dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild
+++ b/dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild
@@ -23,7 +23,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 arm64 ~ppc64 ~x86"
 
 # Doesn't yet support xmlsec-1.3.0: 
https://github.com/xmlsec/python-xmlsec/issues/252
 # Doesn't yet support lxml-5: 
https://github.com/xmlsec/python-xmlsec/issues/277



[gentoo-commits] repo/gentoo:master commit in: dev-python/xmlsec/

2024-01-04 Thread Sam James
commit: d5b7e2798420e7715401574911ba2c442d7defa1
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan  5 06:02:29 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan  5 06:08:57 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5b7e279

dev-python/xmlsec: broken with lxml-5

Bug: https://github.com/xmlsec/python-xmlsec/issues/277
Signed-off-by: Sam James  gentoo.org>

 dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild | 59 +++
 1 file changed, 59 insertions(+)

diff --git a/dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild 
b/dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild
new file mode 100644
index ..dcaa3235598a
--- /dev/null
+++ b/dev-python/xmlsec/xmlsec-1.3.12-r3.ebuild
@@ -0,0 +1,59 @@
+# Copyright 2021-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+MY_P=python-xmlsec-${PV}
+DESCRIPTION="Python bindings for the XML Security Library"
+HOMEPAGE="
+   https://github.com/xmlsec/python-xmlsec/
+   https://pypi.org/project/xmlsec/
+"
+SRC_URI="
+   https://github.com/xmlsec/python-xmlsec/archive/${PV}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+
+# Doesn't yet support xmlsec-1.3.0: 
https://github.com/xmlsec/python-xmlsec/issues/252
+# Doesn't yet support lxml-5: 
https://github.com/xmlsec/python-xmlsec/issues/277
+RDEPEND="
+   https://github.com/xmlsec/python-xmlsec/issues/244
+   tests/test_ds.py::TestSignContext::test_sign_case5
+)
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



[gentoo-commits] repo/gentoo:master commit in: dev-python/xmlsec/

2023-11-24 Thread Michał Górny
commit: 59bc237feda2bca0458aaef5905726cc1f6be098
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Nov 24 15:55:53 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov 24 15:56:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59bc237f

dev-python/xmlsec: Stabilize 1.3.12-r2 arm64, #918368

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild 
b/dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild
index b85f07eb23b4..bb49f81c3b00 100644
--- a/dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild
+++ b/dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild
@@ -23,7 +23,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 
 # Doesn't yet support xmlsec-1.3.0: 
https://github.com/xmlsec/python-xmlsec/issues/252
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/xmlsec/

2023-06-01 Thread Arthur Zamarin
commit: 0afd721f0b6c62bc059ed47cc5d57594ccdb66af
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Jun  1 16:52:09 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Jun  1 16:52:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0afd721f

dev-python/xmlsec: enable py3.12

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild 
b/dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild
index cdd4f1456c2f..b85f07eb23b4 100644
--- a/dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild
+++ b/dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 DISTUTILS_EXT=1
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/xmlsec/

2023-05-04 Thread Michał Górny
commit: ebac4ccdb6f5ec7405acf62b13362b1abf04a7c0
Author: Michał Górny  gentoo  org>
AuthorDate: Thu May  4 16:59:08 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu May  4 16:59:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebac4ccd

dev-python/xmlsec: Set DISTUTILS_EXT=1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild 
b/dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild
index f70dd9a3bfec..cdd4f1456c2f 100644
--- a/dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild
+++ b/dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=8
 
+DISTUTILS_EXT=1
 DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{9..11} )
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/xmlsec/

2023-04-14 Thread Sam James
commit: 8e8e85f55dac1bfdbfcacdb3196f6dbbbf340a56
Author: Sam James  gentoo  org>
AuthorDate: Sat Apr 15 05:32:49 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Apr 15 05:40:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e8e85f5

dev-python/xmlsec: incompatibel w/ dev-libs/xmlsec-1.3.0

Signed-off-by: Sam James  gentoo.org>

 dev-python/xmlsec/{xmlsec-1.3.12-r1.ebuild => xmlsec-1.3.12-r2.ebuild} | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/xmlsec/xmlsec-1.3.12-r1.ebuild 
b/dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild
similarity index 90%
rename from dev-python/xmlsec/xmlsec-1.3.12-r1.ebuild
rename to dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild
index c22048e946b4..f70dd9a3bfec 100644
--- a/dev-python/xmlsec/xmlsec-1.3.12-r1.ebuild
+++ b/dev-python/xmlsec/xmlsec-1.3.12-r2.ebuild
@@ -24,8 +24,9 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="amd64 ~ppc64 x86"
 
+# Doesn't yet support xmlsec-1.3.0: 
https://github.com/xmlsec/python-xmlsec/issues/252
 RDEPEND="
-   dev-libs/xmlsec:=[openssl]
+