diff options
author | 2023-04-13 08:03:19 +0200 | |
---|---|---|
committer | 2023-04-13 08:04:35 +0200 | |
commit | 14cc919fef6b989a216d9408d48b0ed7ba4d2503 (patch) | |
tree | ebccae5fa46027853ea6caab5f2373cadf498a2a /dev-python | |
parent | dev-python/hcloud-python: Bump to 1.19.0 (diff) | |
download | gentoo-14cc919fef6b989a216d9408d48b0ed7ba4d2503.tar.gz gentoo-14cc919fef6b989a216d9408d48b0ed7ba4d2503.tar.bz2 gentoo-14cc919fef6b989a216d9408d48b0ed7ba4d2503.zip |
dev-python/html5-parser: Bump to 0.4.11
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/html5-parser/Manifest | 1 | ||||
-rw-r--r-- | dev-python/html5-parser/html5-parser-0.4.11.ebuild | 52 |
2 files changed, 53 insertions, 0 deletions
diff --git a/dev-python/html5-parser/Manifest b/dev-python/html5-parser/Manifest index 779cb539bac6..9024b1f5aa99 100644 --- a/dev-python/html5-parser/Manifest +++ b/dev-python/html5-parser/Manifest @@ -1 +1,2 @@ DIST html5-parser-0.4.10.tar.gz 272814 BLAKE2B 5759c872e65080ea059b81e632ed70a94e6677ef01af1e50ab1822128cc75ccbd3361c9d4e5e94fc4cc78996b3dbde97ffe435f083c492df2815c67d929cabc7 SHA512 45accb891261e1b82185de1cb0e06915e0ff487fe2cfc81b79f5653c8e9d7b9848349ab94657f8fb5eb116311b1d2b0d19f504f841ee8af0cf4a23601a5000aa +DIST html5-parser-0.4.11.tar.gz 270735 BLAKE2B a2c1037b5bf6dcb8e69f18b3404273993ee325f05a0c5e194ace3f68e0034fa1ac119bb3dde4c4f26dea62928b4dfda9ed1453760a5bb5f8faa9397fb0276a1a SHA512 07123f0851e195e72c16ecdc97336c08278c8cdd10e89251c2ca80d8d90fc63ddd2a13d5a7b2bce430b6124e774fa236788b8eb0d03d6ed4c706d91e6bc4aa4a diff --git a/dev-python/html5-parser/html5-parser-0.4.11.ebuild b/dev-python/html5-parser/html5-parser-0.4.11.ebuild new file mode 100644 index 000000000000..6f0b31d3ef50 --- /dev/null +++ b/dev-python/html5-parser/html5-parser-0.4.11.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYPI_NO_NORMALIZE=1 +PYTHON_COMPAT=( python3_{9..11} ) + +inherit distutils-r1 pypi toolchain-funcs + +DESCRIPTION="Fast C based HTML 5 parsing for python" +HOMEPAGE=" + https://github.com/kovidgoyal/html5-parser/ + https://pypi.org/project/html5-parser/ +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DEPEND=" + dev-libs/libxml2:= +" +RDEPEND=" + ${DEPEND} + dev-python/chardet[${PYTHON_USEDEP}] + >=dev-python/lxml-3.8.0[${PYTHON_USEDEP}] +" +BDEPEND=" + virtual/pkgconfig + test? ( + ${RDEPEND} + ) +" + +src_prepare() { + # Soup is not used when lxml is available. + rm test/soup.py || die + sed -i -e 's:-O3::' setup.py unix_build.py || die + distutils-r1_src_prepare +} + +src_configure() { + export PKGCONFIG_EXE=$(tc-getPKG_CONFIG) +} + +python_test() { + "${EPYTHON}" run_tests.py || die +} |