dev-python/signxml: Bump to 5.0.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-06-21 04:43:18 +02:00
parent 481a88f2ea
commit 4e7a6c232d
2 changed files with 42 additions and 0 deletions

View File

@@ -2,3 +2,5 @@ DIST signxml-4.4.0.tar.gz 1615052 BLAKE2B bae733058eba190d78463c0cd90358d5f51bc4
DIST signxml-4.4.0.tar.gz.provenance 9544 BLAKE2B e5acc100dcf5bffa716c343cb4d00b95b6fcdf026295bd32dac4ebd0115282e8e81b5c74d2bd0af55c85ce02a50f8df19cbdbbad774ca5aaa0aa3680a5921b88 SHA512 86372bf8883965ebb6076111fead91f1f432799752f6a47a1294bdbec8ba1f961e8b8b699a26ca83fe5f89ac39550302d85522dce73a9a5c28a09e30871d34cf
DIST signxml-4.5.1.tar.gz 1615677 BLAKE2B ae7808d5910383e313c04cf1be10c224d7f05cfc7344240e0811460ee25a44b15ad5d27e4573d7fbff3327fd2961e0d3097ef084cfc1092776b1d712732bdd7c SHA512 a0956c0b63792a930b83647eda39a071fb17b6f49a469cf53c444fb28044a49c0f33f3faf3038d810684a2de921a0da14306b5458e63bd265672e49aa7dea5ad
DIST signxml-4.5.1.tar.gz.provenance 9920 BLAKE2B 4dee9161bfb4b2ba5a2bf664c3703745448daf0a411cc29f716525065276014a62beb5b9405b9e42c79a312275112bf62ffe9c1809b014158cfd4e77af8ba6a8 SHA512 bfad600e9b7b8fd11d9876b31f76b50b6441ca023aa4dc4df57a51f7ba3b12e41be3b1e5b847192e6a7cfe760d2022ed39352305ed45179644818986b5abaa21
DIST signxml-5.0.0.tar.gz 1617330 BLAKE2B f5f30910c2c9de4e3762f7feae2052db41c1b67ee46fb8fde5c541397a5c106a653ec53fe1112407b0256b45dee24e1ab036d9562becf8631f23c6d4bae3a916 SHA512 e47119ca6e99be2064ebb13ac1ccfb3e7c098123160c8d838689de0ccd86e8da6ecd85127ab94e0d3c4afe65a482cf5fe29882b4f7af6d34e11acaa87e33b737
DIST signxml-5.0.0.tar.gz.provenance 9732 BLAKE2B 682acf27a84f45033135a933ec83f969c0f6c1ed418443117a49e7547e3ded8364d29ae3aafbefac33efffef6893e4b525534dbd5b850176db06022fb86fa5ac SHA512 e3d0e0cd48b1a944189dac40ced3e35108098a09cbaf18380f24812e326c959592a7cd35a34a4107cd9a657f3cd17c2249db95da1ffaa98067fba2d37948c32b

View File

@@ -0,0 +1,40 @@
# Copyright 2025-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=hatchling
PYPI_VERIFY_REPO=https://github.com/XML-Security/signxml
PYTHON_COMPAT=( python3_{12..15} )
inherit distutils-r1
DESCRIPTION="Python XML Signature and XAdES library"
HOMEPAGE="
https://pypi.org/project/signxml/
https://github.com/XML-Security/signxml
"
if [[ ${PV} == "9999" ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/XML-Security/signxml.git"
else
inherit pypi
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv"
fi
LICENSE="Apache-2.0"
SLOT="0"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
>=dev-python/lxml-5[${PYTHON_USEDEP}]
<dev-python/lxml-7[${PYTHON_USEDEP}]
>=dev-python/cryptography-43[${PYTHON_USEDEP}]
>=dev-python/certifi-2023.11.17[${PYTHON_USEDEP}]
"
python_test() {
"${EPYTHON}" test/test.py -v || die
}