Diff pax-utils-1.3.7 with a pax-utils-9999

/usr/portage/app-misc/pax-utils/pax-utils-9999.ebuild 2025-11-30 18:18:03.945279052 +0300
6 6
# Note: if bumping pax-utils because of syscall changes in glibc, please
7 7
# revbump glibc and update the dependency in its ebuild for the affected
8 8
# versions.
9
PYTHON_COMPAT=( python3_{10..12} )
9
PYTHON_COMPAT=( python3_{11..14} )
10 10

  
11 11
inherit meson python-single-r1
12 12

  
13 13
DESCRIPTION="ELF utils that can check files for security relevant properties"
14 14
HOMEPAGE="https://wiki.gentoo.org/wiki/Hardened/PaX_Utilities"
15
LICENSE="GPL-2"
16
SLOT="0"
17
IUSE="caps python seccomp test"
15 18

  
16 19
if [[ ${PV} == 9999 ]]; then
17 20
	EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/pax-utils.git"
18 21
	inherit git-r3
22
	IUSE+=" +man"
19 23
else
20 24
	SRC_URI="
21 25
		https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}.tar.xz
22 26
		https://dev.gentoo.org/~vapier/dist/${P}.tar.xz
23 27
	"
24
	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
28
	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
29
	IUSE+=" man"
25 30
fi
26 31

  
27
LICENSE="GPL-2"
28
SLOT="0"
29
IUSE="caps man python seccomp test"
30 32
REQUIRED_USE="
31 33
	python? ( ${PYTHON_REQUIRED_USE} )
32 34
	test? ( python )
Thank you!