Diff mkdocs-minify-plugin-0.6.4 with a mkdocs-minify-plugin-0.7.0

/usr/portage/dev-python/mkdocs-minify-plugin/mkdocs-minify-plugin-0.7.0.ebuild 2023-10-09 14:52:30.312368371 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
PYTHON_COMPAT=( python3_{9..11} )
6
PYTHON_COMPAT=( python3_{10..11} )
7 7
DISTUTILS_USE_PEP517=setuptools
8 8
inherit distutils-r1
9 9

  
......
20 20

  
21 21
LICENSE="MIT"
22 22
SLOT="0"
23
KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86"
23
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
24 24

  
25 25
RDEPEND="
26 26
	>=dev-python/csscompressor-0.9.5[${PYTHON_USEDEP}]
......
31 31

  
32 32
distutils_enable_tests pytest
33 33

  
34
src_prepare() {
35
	# this is a fork of htmlmin with the same patches that we have
36
	sed -i -e '/htmlmin2/d' setup.py || die
37
	distutils-r1_src_prepare
38
}
39

  
34 40
python_test() {
35 41
	local -x PATH=${T}:${PATH}
36 42
	cat > "${T}"/mkdocs <<-EOF || die
Thank you!