perl-Package-Stash/Package-Stash-0.08-EU::MM-version.patch
Paul Howarth 58da17c7ec Update to 0.08
Update to latest upstream release, 0.08:
- Re-enable the caching of the stash
Update patch for old ExtUtils::MakeMaker and Test::More versions
2010-09-20 12:02:37 +01:00

31 lines
696 B
Diff

--- Package-Stash-0.08/Makefile.PL 2010-09-19 02:17:49.000000000 +0100
+++ Package-Stash-0.08/Makefile.PL 2010-09-20 11:34:35.619285663 +0100
@@ -4,7 +4,7 @@
-use ExtUtils::MakeMaker 6.31;
+use ExtUtils::MakeMaker;
@@ -16,7 +16,7 @@
'Test::More' => '0.88'
},
'CONFIGURE_REQUIRES' => {
- 'ExtUtils::MakeMaker' => '6.31'
+ 'ExtUtils::MakeMaker' => '0'
},
'DISTNAME' => 'Package-Stash',
'EXE_FILES' => [],
@@ -48,6 +48,9 @@
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
+delete $WriteMakefileArgs{LICENSE}
+ unless eval { ExtUtils::MakeMaker->VERSION(6.31) };
+
WriteMakefile(%WriteMakefileArgs);