Diff Devel-CallChecker-0.8.0-r1 with a Devel-CallChecker-0.9.0

/usr/portage/dev-perl/Devel-CallChecker/Devel-CallChecker-0.9.0.ebuild 2023-10-09 14:52:29.848368359 +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=7
4
EAPI=8
5 5

  
6 6
DIST_AUTHOR=ZEFRAM
7
DIST_VERSION=0.008
7
DIST_VERSION=0.009
8 8
inherit perl-module
9 9

  
10 10
DESCRIPTION="Custom OP checking attached to subroutines"
11 11
SLOT="0"
12 12
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
13
IUSE="test"
14
RESTRICT="!test? ( test )"
15 13

  
16 14
RDEPEND="
17 15
	>=dev-perl/DynaLoader-Functions-0.1.0
......
19 17
	virtual/perl-XSLoader
20 18
	virtual/perl-parent
21 19
"
22
DEPEND="
23
	dev-perl/Module-Build
24
"
25
BDEPEND="${RDEPEND}
20
BDEPEND="
21
	${RDEPEND}
26 22
	dev-perl/Module-Build
27 23
	test? (
28 24
		>=virtual/perl-ExtUtils-CBuilder-0.150.0
......
32 28
		virtual/perl-Test-Simple
33 29
	)
34 30
"
31

  
35 32
PERL_RM_FILES=(
36 33
	t/pod_cvg.t
37 34
	t/pod_syn.t
38 35
)
39
src_configure() {
40
	unset LD
41
	[[ -n "${CCLD}" ]] && export LD="${CCLD}"
42
	perl-module_src_configure
43
}
36

  
44 37
src_compile() {
45 38
	./Build --config optimize="${CFLAGS}" build || die
46 39
}
Thank you!