Diff fix-gnustack-0.1 with a fix-gnustack-0.1-r1

/usr/portage/sys-apps/fix-gnustack/fix-gnustack-0.1-r1.ebuild 2023-10-09 14:52:35.372368498 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5

  
6
inherit autotools
5 7

  
6 8
DESCRIPTION="Utility to report and remove the executable flag from an ELF object's GNU_STACK"
7 9
HOMEPAGE="https://dev.gentoo.org/~blueness/fix-gnustack"
......
14 16

  
15 17
DEPEND="dev-libs/elfutils"
16 18
RDEPEND="${DEPEND}"
19

  
20
PATCHES=(
21
	# Backports from master, drop on next release
22
	"${FILESDIR}"/${PV}
23
)
24

  
25
src_prepare() {
26
	default
27

  
28
	# Drop on next release, only needed for tests patch
29
	eautoreconf
30
}
Thank you!