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/Math-Base36/
Date: Wed, 30 Jun 2021 20:48:28
Message-Id: 1625086085.a95e54932736d0e169d0657ef31dc0cc282edc18.dilfridge@gentoo
1 commit: a95e54932736d0e169d0657ef31dc0cc282edc18
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 30 20:30:40 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 30 20:48:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a95e5493
7
8 dev-perl/Math-Base36: EAPI=8 bump
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 ...e36-0.140.0.ebuild => Math-Base36-0.140.0-r1.ebuild} | 17 +++++------------
14 1 file changed, 5 insertions(+), 12 deletions(-)
15
16 diff --git a/dev-perl/Math-Base36/Math-Base36-0.140.0.ebuild b/dev-perl/Math-Base36/Math-Base36-0.140.0-r1.ebuild
17 similarity index 65%
18 rename from dev-perl/Math-Base36/Math-Base36-0.140.0.ebuild
19 rename to dev-perl/Math-Base36/Math-Base36-0.140.0-r1.ebuild
20 index a65826c1077..60da5e9569e 100644
21 --- a/dev-perl/Math-Base36/Math-Base36-0.140.0.ebuild
22 +++ b/dev-perl/Math-Base36/Math-Base36-0.140.0-r1.ebuild
23 @@ -1,18 +1,16 @@
24 -# Copyright 1999-2020 Gentoo Authors
25 +# Copyright 1999-2021 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 -EAPI=5
29 +EAPI=8
30
31 -MODULE_AUTHOR=BRICAS
32 -MODULE_VERSION=0.14
33 +DIST_AUTHOR=BRICAS
34 +DIST_VERSION=0.14
35 inherit perl-module
36
37 DESCRIPTION="Encoding and decoding of base36 strings"
38
39 SLOT="0"
40 KEYWORDS="~amd64 ~x86"
41 -IUSE="test"
42 -RESTRICT="!test? ( test )"
43
44 DEPEND="
45 test? (
46 @@ -20,15 +18,10 @@ DEPEND="
47 )
48 "
49
50 -SRC_TEST="do"
51 +PERL_RM_FILES=( t/99-pod.t t/98-pod_coverage.t )
52
53 src_prepare() {
54 sed -i -e 's/use inc::Module::Install /use lib q[.];\nuse inc::Module::Install /' Makefile.PL ||
55 die "Can't patch Makefile.PL for 5.26 dot-in-inc"
56 perl-module_src_prepare
57 }
58 -
59 -src_test() {
60 - perl_rm_files t/99-pod.t t/98-pod_coverage.t
61 - perl-module_src_test
62 -}