diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2021-06-30 22:30:40 +0200 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2021-06-30 22:48:05 +0200 |
commit | a95e54932736d0e169d0657ef31dc0cc282edc18 (patch) | |
tree | a83f23265e021d2cb0c67b00c1fcbdb7b3542ce6 /dev-perl/Math-Base36 | |
parent | dev-perl/MARC-Charset: EAPI=8 bump (diff) | |
download | gentoo-a95e54932736d0e169d0657ef31dc0cc282edc18.tar.gz gentoo-a95e54932736d0e169d0657ef31dc0cc282edc18.tar.bz2 gentoo-a95e54932736d0e169d0657ef31dc0cc282edc18.zip |
dev-perl/Math-Base36: EAPI=8 bump
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'dev-perl/Math-Base36')
-rw-r--r-- | dev-perl/Math-Base36/Math-Base36-0.140.0-r1.ebuild (renamed from dev-perl/Math-Base36/Math-Base36-0.140.0.ebuild) | 17 |
1 files changed, 5 insertions, 12 deletions
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 index a65826c10770..60da5e9569e0 100644 --- a/dev-perl/Math-Base36/Math-Base36-0.140.0.ebuild +++ b/dev-perl/Math-Base36/Math-Base36-0.140.0-r1.ebuild @@ -1,18 +1,16 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=8 -MODULE_AUTHOR=BRICAS -MODULE_VERSION=0.14 +DIST_AUTHOR=BRICAS +DIST_VERSION=0.14 inherit perl-module DESCRIPTION="Encoding and decoding of base36 strings" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" DEPEND=" test? ( @@ -20,15 +18,10 @@ DEPEND=" ) " -SRC_TEST="do" +PERL_RM_FILES=( t/99-pod.t t/98-pod_coverage.t ) src_prepare() { sed -i -e 's/use inc::Module::Install /use lib q[.];\nuse inc::Module::Install /' Makefile.PL || die "Can't patch Makefile.PL for 5.26 dot-in-inc" perl-module_src_prepare } - -src_test() { - perl_rm_files t/99-pod.t t/98-pod_coverage.t - perl-module_src_test -} |