dev-python/lxml-html-clean: Bump to 0.4.3

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-10-03 07:16:20 +02:00
parent 4b0f13153a
commit 9daffef6af
2 changed files with 32 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST lxml_html_clean-0.4.2.tar.gz 21622 BLAKE2B 796db28e480e88baffc6f57bc9d1c9c47b898afa28349a65456c46cef61a3ba73d88c8c241857e134da9eee1854877df32d69b795186b30d6806b866d11823e2 SHA512 6d4e55e17dfb174694dc0ba9159a8d59581b8cc374546ed286a4c5fb8f46f06169959a0dca43406126d486ccdfbe079aba18ab4975b04682f76eb95554090c52
DIST lxml_html_clean-0.4.3.tar.gz 21498 BLAKE2B 1005bbeb906090542e648e7c4d08b5735160fe530c498c82f856f421a13a9de454a28fbeeedffa641d7fca19eb52e0649514dd538523e408aa9fd6e6c8dbe606 SHA512 677037adeaa2649c5209015498672e11b131fc14a799b6fcda8eec9552fae626942f0905f7bc6e29f03075f48e0b5915f214c4afe8b22d72d035907afb9a099e

View File

@@ -0,0 +1,31 @@
# Copyright 2024-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1 pypi
DESCRIPTION="Separate project for HTML cleaning functionalities copied from lxml.html.clean"
HOMEPAGE="
https://github.com/fedora-python/lxml_html_clean/
https://pypi.org/project/lxml-html-clean/
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
RDEPEND="
>=dev-python/lxml-5.2.0[${PYTHON_USEDEP}]
"
distutils_enable_tests unittest
python_test() {
eunittest
"${EPYTHON}" -m doctest -v tests/*.txt ||
die "Doctests failed on ${EPYTHON}"
}