repo/gentoo:master commit in: dev-python/bleach/
"Sam James" <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786666445.4e50545cfee2c9c9dfcb385edaf1d8ba13783f72.sam@gentoo> |
commit: 4e50545cfee2c9c9dfcb385edaf1d8ba13783f72
Author: Brett A C Sheffield <bacs <AT> librecast <DOT> net>
AuthorDate: Sat Aug 1 16:09:39 2026 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 14 00:14:05 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e50545c
dev-python/bleach: drop 6.3.0
Bug: https://bugs.gentoo.org/976864
Signed-off-by: Brett A C Sheffield <bacs <AT> librecast.net>
Part-of: https://codeberg.org/gentoo/gentoo/pulls/1602
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/bleach/Manifest | 1 -
dev-python/bleach/bleach-6.3.0.ebuild | 53 -----------------------------------
2 files changed, 54 deletions(-)
diff --git a/dev-python/bleach/Manifest b/dev-python/bleach/Manifest
index 660aee993cdd..0317923b5b25 100644
--- a/dev-python/bleach/Manifest
+++ b/dev-python/bleach/Manifest
@@ -1,2 +1 @@
-DIST bleach-6.3.0.tar.gz 203533 BLAKE2B b81c1337155f43ed2dcaff0fe91035b65a4d44b3916f53a29353a9fd18d623e9908db7218dc59589a487d978933dd2680c2e82ab78cb14f64c8d674542ecc248 SHA512 8ebf85f78f7daae90db91e54f368fcc36dde8d93f04cbe469e861d76c55c52d147e756a9d0198e01b3cd93aca966fdaf4d5d35bd2ed3c731e772ed67d5d484a3
DIST bleach-6.4.0.tar.gz 204857 BLAKE2B e7aacd01ada6a28a04d03c13585f3febbe5aba581f07e743265a90c69d9f0b6314e1e687505b2f17285d687add3d9a739772260f6561a09cde6b705ff65b51cd SHA512 3d60b3a96b41d574bb5318bfe7d28e1db94c38d4635b9b46c5d7b4ebd462244b4f424c70ea7b7882aeeabcce7bddae8e14c395455b0eaaff5b377cfd9a1c4198
diff --git a/dev-python/bleach/bleach-6.3.0.ebuild b/dev-python/bleach/bleach-6.3.0.ebuild
deleted file mode 100644
index 9b2d56ed7794..000000000000
--- a/dev-python/bleach/bleach-6.3.0.ebuild
+++ /dev/null
@@ -1,53 +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_{11..14} pypy3_11 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="An easy whitelist-based HTML-sanitizing tool"
-HOMEPAGE="
- https://github.com/mozilla/bleach/
- https://pypi.org/project/bleach/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos"
-
-RDEPEND="
- dev-python/packaging[${PYTHON_USEDEP}]
- >=dev-python/html5lib-1.2_pre20240221[${PYTHON_USEDEP}]
-"
-
-EPYTEST_PLUGINS=()
-distutils_enable_tests pytest
-
-PATCHES=(
- "${FILESDIR}"/bleach-6.0.0-py39.patch
-)
-
-EPYTEST_DESELECT=(
- # this package is not really maintained anymore
- 'tests/test_parse_shim.py::test_urlparse[\t :foo.com \n-expected8]'
- 'tests/test_parse_shim.py::test_urlparse[ foo.com -expected9]'
-)
-
-src_prepare() {
- # unbundle unpatched broken html5lib
- rm -r bleach/_vendor || die
- sed -i -e 's:bleach\._vendor\.parse:urllib.parse:' \
- bleach/parse_shim.py || die
- sed -i -e 's:bleach\._vendor\.::' \
- bleach/html5lib_shim.py \
- bleach/sanitizer.py \
- tests/test_clean.py || die
- # indirect html5lib deps
- sed -i -e '/webencodings/d' setup.py || die
- rm bleach/six_shim.py || die
-
- distutils-r1_src_prepare
-}