Subject: | [PATCH] Compatibility with EUMM 6.57_* |
See <https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues/118>.
Without this patch, installation is quite broken on perl 5.14.
Subject: | open_LBdPsxRH.txt |
diff -rup libwww-perl-6.15-aCAPLf/Makefile.PL libwww-perl-6.15-QwIb7o/Makefile.PL
--- libwww-perl-6.15-aCAPLf/Makefile.PL 2015-12-04 20:47:30.000000000 -0800
+++ libwww-perl-6.15-QwIb7o/Makefile.PL 2016-07-17 13:35:12.000000000 -0700
@@ -129,6 +129,12 @@ my %WriteMakefileArgs = (
delete $WriteMakefileArgs{BUILD_REQUIRES};
}
+ (my $mm_v = ExtUtils::MakeMaker::->VERSION) =~ y/_//d;
+ # These versions get confused by meta-spec => 2
+ if ($mm_v >= 6.57_02 && $mm_v < 6.57_07) {
+ delete $WriteMakefileArgs{META_MERGE}{'meta-spec'};
+ }
+
my %mm_req = (
LICENCE => 6.31,
META_MERGE => 6.45,