dev-python/xmlschema: Bump to 4.3.1

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-01-18 04:03:44 +01:00
parent 662e86bc73
commit 2d3a3f3ccf
2 changed files with 39 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST xmlschema-4.2.0.tar.gz 643756 BLAKE2B 33ff7f827bf54f8cdacd7da6a3b5250bed70c74e8d3bb516aa06d1e29083d79f4ced31f7f7366d724709eeb32542a1295603b9798ed2594fa072a8b988938449 SHA512 b56128f5d447e8087f7195257d77f6bb546438a602f7c7aaeeff255a8c8e006308bb7de6ece493072a0896b0715a560cd474036a148b9b81031da5a914c0f4c0
DIST xmlschema-4.3.0.tar.gz 645232 BLAKE2B 6deaf48137ee704624f64a8ea60e3249eb56c2d40a770a017379c4a68f1f92f05caae45263e0b01b399661631722c556092c52c31b3cc3924d35037ddac0f09e SHA512 1ba64acd1ad7e4dad1b95b9666e009b5d6f6439cf690e43683e60bd82a983f97b9f46f9687eb9e3167532fd88e88d6fd28a3de99a4ea2e46fbc49537963385c6
DIST xmlschema-4.3.1.tar.gz 646611 BLAKE2B 2c887b7f0bbab474130c549d258de7167288cbfbf33e38548eb31d17cf34cce878c9d9c0582ef6a00ab4b0524703eb8d5e9a37acf4d5572144fa61ad6dd6f532 SHA512 5aacc89de8c895ebbc3f7fbc45e187332211c93ceff452642b43fb953a9ed872b2e514f918c3ea30798cd15ddd71e615422a384eea1e9524efcb50ad4889564a

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_{11..14} pypy3_11 )
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.0[${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}"
}