Diff grep-3.8-r1 with a grep-3.11

/usr/portage/sys-apps/grep/grep-3.11.ebuild 2023-10-09 14:52:35.376368499 +0300
12 12
if [[ ${PV} == *_p* ]] ; then
13 13
	# Subscribe to the 'platform-testers' ML to find these.
14 14
	# Useful to test on our especially more niche arches and report issues upstream.
15
	MY_COMMIT="98-c9ac"
15
	MY_COMMIT="19-2ea9"
16 16
	MY_P=${PN}-$(ver_cut 1-2).${MY_COMMIT}
17 17
	SRC_URI="https://meyering.net/${PN}/${MY_P}.tar.xz"
18 18
	SRC_URI+=" verify-sig? ( https://meyering.net/${PN}/${MY_P}.tar.xz.sig )"
......
30 30
# We lack dev-libs/libsigsegv[static-libs] for now
31 31
REQUIRED_USE="static? ( !sparc )"
32 32

  
33
LIB_DEPEND="pcre? ( >=dev-libs/libpcre2-7.8-r1[static-libs(+)] )
34
	sparc? ( dev-libs/libsigsegv )"
35
RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )
33
LIB_DEPEND="
34
	pcre? ( >=dev-libs/libpcre2-10.42-r1[static-libs(+)] )
35
	sparc? ( dev-libs/libsigsegv )
36
"
37
RDEPEND="
38
	!static? ( ${LIB_DEPEND//\[static-libs(+)]} )
36 39
	nls? ( virtual/libintl )
37
	virtual/libiconv"
38
DEPEND="${RDEPEND}
39
	static? ( ${LIB_DEPEND} )"
40
BDEPEND="virtual/pkgconfig
40
	virtual/libiconv
41
"
42
DEPEND="
43
	${RDEPEND}
44
	static? ( ${LIB_DEPEND} )
45
"
46
BDEPEND="
47
	virtual/pkgconfig
41 48
	nls? ( sys-devel/gettext )
42
	verify-sig? ( sec-keys/openpgp-keys-grep )"
49
	verify-sig? ( sec-keys/openpgp-keys-grep )
50
"
43 51

  
44 52
DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
45 53

  
54
QA_CONFIG_IMPL_DECL_SKIP=(
55
	# Either gnulib FPs or fixed in newer autoconf, not worth autoreconf here for now?
56
	MIN
57
	alignof
58
	static_assert
59
)
60

  
46 61
src_prepare() {
47 62
	default
48 63

  
Thank you!