Diff docutils-0.19 with a docutils-0.20.1-r1

/usr/portage/dev-python/docutils/docutils-0.20.1-r1.ebuild 2023-10-09 14:52:30.276368370 +0300
4 4
EAPI=8
5 5

  
6 6
DISTUTILS_USE_PEP517=setuptools
7
PYTHON_COMPAT=( python3_{9..12} pypy3 )
7
PYTHON_COMPAT=( python3_{10..12} pypy3 )
8 8

  
9 9
inherit distutils-r1 pypi
10 10

  
......
14 14
	https://pypi.org/project/docutils/
15 15
"
16 16

  
17
LICENSE="BSD-2 GPL-3 public-domain"
17
# GPL-3+ only for emacs/rst.el
18
LICENSE="BSD BSD-2 GPL-3+ PSF-2.4 public-domain"
18 19
SLOT="0"
19
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
20
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
20 21

  
21 22
RDEPEND="
22 23
	dev-python/pygments[${PYTHON_USEDEP}]
......
25 26
	${RDEPEND}
26 27
"
27 28

  
28
PATCHES=(
29
	"${FILESDIR}"/${PN}-0.19-pygments-2.14.patch
30
)
31

  
32 29
python_compile_all() {
33 30
	# Generate html docs from reStructured text sources.
34 31

  
......
53 50
	distutils-r1_python_install
54 51

  
55 52
	# Install tools.
56
	python_doscript tools/{buildhtml,quicktest}.py
53
	python_doscript tools/buildhtml.py
57 54
}
58 55

  
59 56
install_txt_doc() {
Thank you!