Diff psmisc-23.4-r1 with a psmisc-23.5

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

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit toolchain-funcs
7 7

  
......
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="ipv6 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="nls selinux test X"
16 16
RESTRICT="!test? ( test )"
17 17

  
18 18
RDEPEND="
......
31 31
DOCS=( AUTHORS ChangeLog NEWS README )
32 32

  
33 33
PATCHES=(
34
	# https://gitlab.com/psmisc/psmisc/-/issues/35
35
	"${FILESDIR}/${PN}-23.4-fuser_regression_revert.patch"
34
	"${FILESDIR}"/${P}-fix-killall-pidfd_send_signal.patch
36 35
)
37 36

  
38 37
src_configure() {
......
46 45
			ac_cv_func_realloc_0_nonnull=yes
47 46
	fi
48 47

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

  
52 53
	local myeconfargs=(
53 54
		--disable-harden-flags
54
		$(use_enable ipv6)
55
		--enable-ipv6
55 56
		$(use_enable nls)
56 57
		$(use_enable selinux)
57 58
	)
Thank you!