]> git.vpit.fr Git - perl/modules/re-engine-Plugin.git/blobdiff - Makefile.PL
Give an explicit value to dynamic_config
[perl/modules/re-engine-Plugin.git] / Makefile.PL
index 4b1af5f753ef9853e2dbf00197ff112446ba1fe3..82880dbb17c0fe065a9f547a63ada42288c52024 100644 (file)
@@ -1,4 +1,4 @@
-use 5.009005;
+use 5.010;
 use ExtUtils::MakeMaker;
 
 my $dist = 're-engine-Plugin';
@@ -11,6 +11,7 @@ my %META = (
   'ExtUtils::MakeMaker' => 0,
   'Test::More'          => 0,
  },
+ dynamic_config => 0,
  resources => {
   bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist",
   homepage   => "http://search.cpan.org/dist/$dist/",
@@ -20,16 +21,16 @@ my %META = (
 );
 
 WriteMakefile(
-    NAME          => 're::engine::Plugin',
-    AUTHOR        => 'Vincent Pit <perl@profvince.com>',
-    LICENSE       => 'perl',
-    ABSTRACT_FROM => 'Plugin.pod',
-    VERSION_FROM  => 'Plugin.pm',
+    NAME             => 're::engine::Plugin',
+    AUTHOR           => 'Vincent Pit <perl@profvince.com>',
+    LICENSE          => 'perl',
+    ABSTRACT_FROM    => 'Plugin.pod',
+    VERSION_FROM     => 'Plugin.pm',
     PL_FILES         => {},
     PREREQ_PM        => {
         'XSLoader' => 0,
     },
-    MIN_PERL_VERSION => 5.008,
+    MIN_PERL_VERSION => 5.010,
     META_MERGE       => \%META,
     dist             => {
         PREOP    => 'pod2text Plugin.pod > $(DISTVNAME)/README',
@@ -42,15 +43,3 @@ WriteMakefile(
         TESTS => 't/*.t t/*/*.t t/*/*/*.t',
     },
 );
-
-sub MY::postamble {
-    return <<END;
-ChangeLog: Makefile
-       git log --pretty=full . >ChangeLog
-
-META.yml: Makefile
-       touch META.yml
-
-END
-}
-