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

index 0692a6dc7ac47510dfa99d56e0662f4577063f47..4ac4acd9fb0a782d6316df2cc19e1d4b21db2cc7 100644 (file)
@@ -4,39 +4,45 @@ 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 = 'Sub-Nary';
+
+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          => 'Sub::Nary',
-    AUTHOR        => 'Vincent Pit <perl@profvince.com>',
-    LICENSE       => 'perl',
-    VERSION_FROM  => 'lib/Sub/Nary.pm',
-    ABSTRACT_FROM => 'lib/Sub/Nary.pm',
-    PL_FILES      => {},
-    PREREQ_PM     => {
+    NAME             => 'Sub::Nary',
+    AUTHOR           => 'Vincent Pit <perl@profvince.com>',
+    LICENSE          => 'perl',
+    VERSION_FROM     => 'lib/Sub/Nary.pm',
+    ABSTRACT_FROM    => 'lib/Sub/Nary.pm',
+    PL_FILES         => {},
+    PREREQ_PM        => {
         'B'        => 0,
         'Carp'     => 0,
         'XSLoader' => 0
     },
-    dist          => {
-        PREOP        => 'pod2text lib/Sub/Nary.pm > $(DISTVNAME)/README; '
-                        . build_req,
-        COMPRESS     => 'gzip -9f', SUFFIX => 'gz'
+    MIN_PERL_VERSION => 5.008001,
+    META_MERGE       => \%META,
+    dist             => {
+        PREOP    => 'pod2text lib/Sub/Nary.pm > $(DISTVNAME)/README',
+        COMPRESS => 'gzip -9f', SUFFIX => 'gz'
     },
-    clean         => { FILES => 'Sub-Nary-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt' }
+    clean            => {
+        FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
+    }
 );
 
 1;