Diff metagen-0.7.4 with a metagen-0.7.4-r1

/usr/portage/app-portage/metagen/metagen-0.7.4-r1.ebuild 2026-09-16 20:03:04.719152180 +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

  
......
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!