Diff psmisc-23.5 with a psmisc-23.6

/usr/portage/sys-process/psmisc/psmisc-23.6.ebuild 2023-10-09 14:52:35.584368504 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
11 11

  
12 12
LICENSE="GPL-2"
13 13
SLOT="0"
14
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
15
IUSE="nls selinux test X"
14
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
15
IUSE="apparmor nls selinux test X"
16 16
RESTRICT="!test? ( test )"
17 17

  
18 18
RDEPEND="
19 19
	!=app-i18n/man-pages-l10n-4.0.0-r0
20 20
	>=sys-libs/ncurses-5.7-r7:=
21
	apparmor? ( sys-libs/libapparmor )
21 22
	nls? ( virtual/libintl )
22 23
	selinux? ( sys-libs/libselinux )
23 24
"
......
30 31

  
31 32
DOCS=( AUTHORS ChangeLog NEWS README )
32 33

  
33
PATCHES=(
34
	"${FILESDIR}"/${P}-fix-killall-pidfd_send_signal.patch
35
)
36

  
37 34
src_configure() {
38 35
	if tc-is-cross-compiler ; then
39 36
		# This isn't ideal but upstream don't provide a placement
......
45 42
			ac_cv_func_realloc_0_nonnull=yes
46 43
	fi
47 44

  
48
	# No longer needed in > 23.5
49
	# https://gitlab.com/psmisc/psmisc/-/commit/3fac667430341bdcec733da6eacd88b03813467a
50
	# bug #802414
51
	touch testsuite/global-conf.exp || die
52

  
53 45
	local myeconfargs=(
46
		# Hardening flags are set by our toolchain alraedy. Setting these
47
		# in packages means toolchain & users can't set something tougher.
54 48
		--disable-harden-flags
55 49
		--enable-ipv6
50
		$(use_enable apparmor)
56 51
		$(use_enable nls)
57 52
		$(use_enable selinux)
58 53
	)
Thank you!