Diff gentoo-perl-helpers-0.4.0 with a gentoo-perl-helpers-0.4.0-r1

/usr/portage/app-admin/gentoo-perl-helpers/gentoo-perl-helpers-0.4.0-r1.ebuild 2023-10-09 14:52:28.148368316 +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
EAPI=6
4
EAPI=8
5 5

  
6 6
DESCRIPTION="Introspection and Upgrade Assistance tools for Gentoo Perl"
7 7
HOMEPAGE="https://github.com/gentoo-perl/gentoo-perl-helpers"
......
12 12
"
13 13
LICENSE="GPL-2+"
14 14
SLOT="0"
15
KEYWORDS="amd64 ~arm ~arm64 x86"
16
IUSE=""
15
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
17 16

  
18 17
# Assumed System:
19 18
# sys-apps/coreutils
......
23 22
# sys-apps/gawk
24 23
# app-arch/tar
25 24

  
25
# multiple --quiet, --format and anti-slot support)
26 26
RDEPEND="
27
	$(: multiple --quiet, --format and anti-slot support)
28 27
	>=app-portage/portage-utils-0.80_pre20190620
29 28
"
30
DEPEND="app-arch/xz-utils[extra-filters]"
29
BDEPEND="app-arch/xz-utils[extra-filters]"
31 30

  
32 31
src_prepare() {
33 32
	sed -i -e "s^@@LIBDIR@@^${EPREFIX}/usr/lib/gentoo-perl-helpers^g" 		\
......
37 36
		   || die "Can't patch bin/gentoo-perl"
38 37
	default
39 38
}
39

  
40 40
src_compile() { :; }
41

  
41 42
src_install() {
42 43
	exeinto /usr/bin
43 44
	doexe "${S}/bin/"*
Thank you!