Diff Class-Autouse-2.10.0-r3 with a Class-Autouse-2.20.0

/usr/portage/dev-perl/Class-Autouse/Class-Autouse-2.20.0.ebuild 2026-03-17 11:46:07.479318969 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2026 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
DIST_AUTHOR=ADAMK
7
DIST_VERSION=2.01
6
DIST_AUTHOR=ETHER
7
DIST_VERSION=2.02
8 8
inherit perl-module
9 9

  
10
DESCRIPTION="Runtime aspect loading of one or more classes"
10
DESCRIPTION="Run-time load a class the first time you call a method in it"
11 11

  
12 12
SLOT="0"
13
KEYWORDS="amd64 ~hppa ~mips ppc x86"
14
IUSE="test"
15
RESTRICT="!test? ( test )"
13
KEYWORDS="~amd64 ~hppa ~mips ~ppc ~x86"
16 14

  
17 15
RDEPEND="
18
	>=virtual/perl-File-Spec-0.800.0
19 16
	>=virtual/perl-Scalar-List-Utils-1.180.0
20 17
"
21
BDEPEND="${RDEPEND}
22
	>=virtual/perl-ExtUtils-MakeMaker-6.620.0
23
	test? (
24
		>=virtual/perl-File-Temp-0.170.0
25
		>=virtual/perl-Test-Simple-0.470.0
26
	)
27
"
28
PATCHES=(
29
	"${FILESDIR}/${PN}-2.01-no-dot-inc.patch"
30
)
18
BDEPEND="${RDEPEND}"
Thank you!