Diff metagen-0.7.4 with a metagen-0.7.4-r1

/usr/portage/app-portage/metagen/metagen-0.7.4-r1.ebuild 2026-01-08 10:18:05.975684963 +0300
1
# Copyright 1999-2025 Gentoo Authors
1
# Copyright 1999-2026 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI="8"
5 5
DISTUTILS_USE_PEP517=setuptools
6
PYTHON_COMPAT=( python3_{12..13} )
6
PYTHON_COMPAT=( python3_{12..14} )
7 7

  
8 8
inherit distutils-r1 pypi
9 9

  
......
12 12

  
13 13
LICENSE="GPL-2"
14 14
SLOT="0"
15
KEYWORDS="amd64 ~arm64 ~hppa ppc ~riscv x86"
15
KEYWORDS="~amd64 ~arm64 ~hppa ~ppc ~riscv ~x86"
16 16

  
17 17
DEPEND="dev-python/lxml[${PYTHON_USEDEP}]
18 18
	sys-apps/portage[${PYTHON_USEDEP}]"
......
23 23
python_install_all() {
24 24
	distutils-r1_python_install_all
25 25
	doman docs/metagen.1
26

  
27
	# Bug 814545 and 832069
28
	if [[ ${PF} != ${P} ]]; then  # to be robust across bumps
29
		mv "${ED}"/usr/share/doc/${P}/* "${ED}"/usr/share/doc/${PF}/ || die
30
		rmdir "${ED}"/usr/share/doc/${P}/ || die
31
	fi
32 26
}
Thank you!