dev-python/xmlschema: Bump to 4.3.2

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-07-01 04:37:42 +02:00
parent 40364340e8
commit 8e2adbf042
2 changed files with 39 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST xmlschema-4.3.1.tar.gz 646611 BLAKE2B 2c887b7f0bbab474130c549d258de7167288cbfbf33e38548eb31d17cf34cce878c9d9c0582ef6a00ab4b0524703eb8d5e9a37acf4d5572144fa61ad6dd6f532 SHA512 5aacc89de8c895ebbc3f7fbc45e187332211c93ceff452642b43fb953a9ed872b2e514f918c3ea30798cd15ddd71e615422a384eea1e9524efcb50ad4889564a
DIST xmlschema-4.3.2.tar.gz 682724 BLAKE2B 6deeeec755ee2c71a8b6a200727093bfd677d6fefe0d21f02d6f4262d5c572f1ea5b682e90ec9566fb0d1d4fb1cec8d036fe43ff828fe3f2735afd48825000f1 SHA512 fe85d46a371a7014a6e9f39d77f686801a601455da1cfb8ac719cab8da639dbc77338d22d0a687d1219f9863df79afffbeb12c2100529e731e443e347668e584

View File

@@ -0,0 +1,38 @@
# Copyright 2019-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{12..14} )
inherit distutils-r1 pypi
DESCRIPTION="An XML Schema validator and decoder"
HOMEPAGE="
https://github.com/sissaschool/xmlschema/
https://pypi.org/project/xmlschema/
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
<dev-python/elementpath-6[${PYTHON_USEDEP}]
>=dev-python/elementpath-5.1.3[${PYTHON_USEDEP}]
"
BDEPEND="
>=dev-python/setuptools-77[${PYTHON_USEDEP}]
test? (
${RDEPEND}
dev-python/jinja2[${PYTHON_USEDEP}]
dev-python/lxml[${PYTHON_USEDEP}]
)
"
python_test() {
"${EPYTHON}" tests/run_all_tests.py -v || die "Tests fail with ${EPYTHON}"
}