diff options
author | Kent Fredric <kentnl@gentoo.org> | 2020-07-15 12:41:13 +1200 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2020-07-15 12:41:13 +1200 |
commit | 809bbc4d2def6207fb7e7f9e0bd3694d196e26cd (patch) | |
tree | 062c287af83ac80ed3ec936cc9bdd99b038413d5 /dev-perl/Data-AMF/files | |
parent | dev-perl/Danga-Socket: Bump to version 1.620.0 (diff) | |
download | gentoo-809bbc4d2def6207fb7e7f9e0bd3694d196e26cd.tar.gz gentoo-809bbc4d2def6207fb7e7f9e0bd3694d196e26cd.tar.bz2 gentoo-809bbc4d2def6207fb7e7f9e0bd3694d196e26cd.zip |
dev-perl/Data-AMF: -r bump for EAPI7 + fixes
- EAPI7
- Employ PERL_RM_FILES to remove problematic bundled test-library copies
instead of pre-eapi-6 approach.
- Remove More bundled test libraries in favour of using dependencies.
- Convert Makefile.PL sed hack to "patch"
- Parallel tests
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl@gentoo.org>
Diffstat (limited to 'dev-perl/Data-AMF/files')
-rw-r--r-- | dev-perl/Data-AMF/files/Data-AMF-0.09-no-dot-inc.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/dev-perl/Data-AMF/files/Data-AMF-0.09-no-dot-inc.patch b/dev-perl/Data-AMF/files/Data-AMF-0.09-no-dot-inc.patch new file mode 100644 index 000000000000..05b99bedb988 --- /dev/null +++ b/dev-perl/Data-AMF/files/Data-AMF-0.09-no-dot-inc.patch @@ -0,0 +1,21 @@ +From fe2c46d29b08accd9f8ab6df352923042065550a Mon Sep 17 00:00:00 2001 +From: Kent Fredric <kentnl@gentoo.org> +Date: Wed, 15 Jul 2020 12:31:30 +1200 +Subject: Include '.' in @INC for perl 5.26+ + +--- + Makefile.PL | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/Makefile.PL b/Makefile.PL +index c92df6a..2b78d78 100644 +--- a/Makefile.PL ++++ b/Makefile.PL +@@ -1,3 +1,4 @@ ++use lib '.'; + use inc::Module::Install; + name 'Data-AMF'; + all_from 'lib/Data/AMF.pm'; +-- +2.27.0 + |