Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/CPAN-Checksums/
Date: Thu, 14 Oct 2021 21:21:09
Message-Id: 1634246443.2af65c3b37515e854ce02e464343667aae57d96f.dilfridge@gentoo
1 commit: 2af65c3b37515e854ce02e464343667aae57d96f
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 14 21:12:28 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 14 21:20:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2af65c3b
7
8 dev-perl/CPAN-Checksums: EAPI=8 bump
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 ...-2.120.0.ebuild => CPAN-Checksums-2.120.0-r1.ebuild} | 17 ++++++-----------
14 1 file changed, 6 insertions(+), 11 deletions(-)
15
16 diff --git a/dev-perl/CPAN-Checksums/CPAN-Checksums-2.120.0.ebuild b/dev-perl/CPAN-Checksums/CPAN-Checksums-2.120.0-r1.ebuild
17 similarity index 77%
18 rename from dev-perl/CPAN-Checksums/CPAN-Checksums-2.120.0.ebuild
19 rename to dev-perl/CPAN-Checksums/CPAN-Checksums-2.120.0-r1.ebuild
20 index 55945224b21..3987b0a99db 100644
21 --- a/dev-perl/CPAN-Checksums/CPAN-Checksums-2.120.0.ebuild
22 +++ b/dev-perl/CPAN-Checksums/CPAN-Checksums-2.120.0-r1.ebuild
23 @@ -1,7 +1,7 @@
24 # Copyright 1999-2021 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 -EAPI=6
28 +EAPI=8
29
30 DIST_AUTHOR=ANDK
31 DIST_VERSION=2.12
32 @@ -11,8 +11,6 @@ DESCRIPTION="Write a CHECKSUMS file for a directory as on CPAN"
33
34 SLOT="0"
35 KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
36 -IUSE="test"
37 -RESTRICT="!test? ( test )"
38
39 RDEPEND="
40 dev-perl/Compress-Bzip2
41 @@ -26,20 +24,17 @@ RDEPEND="
42 virtual/perl-IO-Compress
43 virtual/perl-Safe
44 "
45 -DEPEND="${RDEPEND}
46 +BDEPEND="${RDEPEND}
47 virtual/perl-ExtUtils-MakeMaker
48 test? (
49 virtual/perl-File-Path
50 virtual/perl-Test-Simple
51 virtual/perl-Time-HiRes
52 - )"
53 + )
54 +"
55
56 -src_test() {
57 - local bad_files=(
58 - "t/00signature.t" # Online test, invalid if dist tweaked
59 +PERL_RM_FILES=(
60 + t/00signature.t # Online test, invalid if dist tweaked
61 t/52podcover.t # Author Test
62 t/pod.t # Author Test
63 )
64 - perl_rm_files "${bad_files[@]}"
65 - perl-module_src_test
66 -}