]> git.vpit.fr Git - perl/modules/Regexp-Wildcards.git/commitdiff
Use recent ExtUtils::MakeMaker features to generate a better META.yml
authorVincent Pit <vince@profvince.com>
Sat, 7 Feb 2009 20:48:01 +0000 (21:48 +0100)
committerVincent Pit <vince@profvince.com>
Sat, 7 Feb 2009 20:48:01 +0000 (21:48 +0100)
Makefile.PL

index 0ab16c3827c5e735970043bd6e58c1b8735fae48..2a39eb8f6becc027c9e0e0e8db74b394b9df0155 100644 (file)
@@ -2,36 +2,42 @@ use strict;
 use warnings;
 use ExtUtils::MakeMaker;
 
-my $BUILD_REQUIRES = {
- 'ExtUtils::MakeMaker' => 0,
- 'Test::More'          => 0,
-};  
-    
-sub build_req {
- my $tometa = ' >> $(DISTVNAME)/META.yml;';
- my $build_req = 'echo "build_requires:" ' . $tometa;
- foreach my $mod ( sort { lc $a cmp lc $b } keys %$BUILD_REQUIRES ) {
-  my $ver = $BUILD_REQUIRES->{$mod};
-  $build_req .= sprintf 'echo "    %-30s %s" %s', "$mod:", $ver, $tometa;
- }
- return $build_req;
-}
-    
+my $dist = 'Regexp-Wildcards';
+
+my %META = (
+ configure_requires => {
+  'ExtUtils::MakeMaker' => 0,
+ },
+ build_requires => {
+  'ExtUtils::MakeMaker' => 0,
+  'Test::More'          => 0,
+ },
+ resources => {
+  bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist",
+  homepage   => "http://search.cpan.org/dist/$dist/",
+  license    => 'http://dev.perl.org/licenses/',
+  repository => "http://git.profvince.com/perl/modules/$dist.git",
+ },
+);
+
 WriteMakefile(
-    NAME          => 'Regexp::Wildcards',
-    AUTHOR        => 'Vincent Pit <perl@profvince.com>',
-    LICENSE       => 'perl',
-    VERSION_FROM  => 'lib/Regexp/Wildcards.pm',
-    ABSTRACT_FROM => 'lib/Regexp/Wildcards.pm',
-    PL_FILES      => {},
-    PREREQ_PM     => {
+    NAME             => 'Regexp::Wildcards',
+    AUTHOR           => 'Vincent Pit <perl@profvince.com>',
+    LICENSE          => 'perl',
+    VERSION_FROM     => 'lib/Regexp/Wildcards.pm',
+    ABSTRACT_FROM    => 'lib/Regexp/Wildcards.pm',
+    PL_FILES         => {},
+    PREREQ_PM        => {
         'Carp'           => 0,
         'Text::Balanced' => 0,
     },
-    dist          => {
-        PREOP      => 'pod2text lib/Regexp/Wildcards.pm > $(DISTVNAME)/README; '
-                      . build_req,
-        COMPRESS   => 'gzip -9f', SUFFIX => 'gz'
+    MIN_PERL_VERSION => 5.006,
+    META_MERGE       => \%META,
+    dist             => {
+        PREOP    => 'pod2text lib/Regexp/Wildcards.pm > $(DISTVNAME)/README',
+        COMPRESS => 'gzip -9f', SUFFIX => 'gz'
+    },
+    clean            => {
+        FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
     },
-    clean         => { FILES => 'Regexp-Wildcards-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt' },
 );