Diff tre-0.8.0_p20210321-r1 with a tre-0.8.0_p20210321-r2

/usr/portage/dev-libs/tre/tre-0.8.0_p20210321-r2.ebuild 2023-10-09 14:52:29.764368357 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
DISTUTILS_USE_PEP517=setuptools
6 7
COMMIT="6092368aabdd0dbb0fbceb2766a37b98e0ff6911"
7
PYTHON_COMPAT=( python3_{9..10} pypy3 )
8
PYTHON_COMPAT=( python3_{8..11} pypy3 )
9
DISTUTILS_OPTIONAL=1
8 10

  
9 11
inherit autotools distutils-r1
10 12

  
......
18 20

  
19 21
LICENSE="BSD-2"
20 22
SLOT="0"
21
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux"
23
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
22 24
IUSE="+agrep +alloca +approx debug nls profile python"
23 25

  
24 26
RDEPEND="
......
33 35
	${RDEPEND}
34 36
	nls? ( sys-devel/gettext )
35 37
"
36
BDEPEND="sys-devel/gettext
38
BDEPEND="
39
	python? ( ${DISTUTILS_DEPS} )
40
	sys-devel/gettext
37 41
	virtual/pkgconfig"
38 42

  
39 43
REQUIRED_USE="
......
88 92
	default
89 93

  
90 94
	if use python; then
91
		pushd python || die
95
		cd python || die
92 96
		distutils-r1_src_compile
93
		popd || die
94 97
	fi
95 98
}
96 99

  
......
101 104

  
102 105
	use python && distutils-r1_src_install
103 106
}
104

  
105
python_install() {
106
	pushd "python" || die
107
	distutils-r1_python_install
108
	popd || die
109
}
110

  
111
pkg_postinst() {
112
	ewarn "app-misc/glimpse, app-text/agrep and this package all provide agrep."
113
	ewarn "If this causes any unforeseen incompatibilities please file a bug"
114
	ewarn "on https://bugs.gentoo.org."
115
}
Thank you!