summaryrefslogtreecommitdiff
path: root/dev-python/html5lib/html5lib-1.1-r2.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-03-28 07:14:12 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-03-28 07:14:12 +0000
commit092c8f0bee28da7e426bd12abf9919b8459ef84f (patch)
treeca07b70dd2ff9d2c074672ecba68f6994d31ab84 /dev-python/html5lib/html5lib-1.1-r2.ebuild
parentb2887c7ab46ed23ad0f71c82db7c9444661c69fc (diff)
downloadbaldeagleos-repo-092c8f0bee28da7e426bd12abf9919b8459ef84f.tar.gz
baldeagleos-repo-092c8f0bee28da7e426bd12abf9919b8459ef84f.tar.xz
baldeagleos-repo-092c8f0bee28da7e426bd12abf9919b8459ef84f.zip
Adding metadata
Diffstat (limited to 'dev-python/html5lib/html5lib-1.1-r2.ebuild')
-rw-r--r--dev-python/html5lib/html5lib-1.1-r2.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/dev-python/html5lib/html5lib-1.1-r2.ebuild b/dev-python/html5lib/html5lib-1.1-r2.ebuild
deleted file mode 100644
index 7b87b8d32501..000000000000
--- a/dev-python/html5lib/html5lib-1.1-r2.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..14} )
-PYTHON_REQ_USE="xml(+)"
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="HTML parser based on the HTML5 specification"
-HOMEPAGE="
- https://github.com/html5lib/html5lib-python/
- https://html5lib.readthedocs.io/
- https://pypi.org/project/html5lib/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos"
-
-PATCHES=(
- "${FILESDIR}"/${P}-pytest6.patch
-)
-
-RDEPEND="
- >=dev-python/six-1.9[${PYTHON_USEDEP}]
- dev-python/webencodings[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- dev-python/pytest-expect[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
- distutils-r1_src_prepare
-
- sed -e 's:from mock:from unittest.mock:' \
- -i html5lib/tests/test_meta.py || die
-}
-
-python_test() {
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest -p pytest_expect
-}