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

index c0520e552911545a5d937591673221444d08d7ee..ef489917b59408de7c73da224a11b33d2f655bc9 100644 (file)
@@ -4,33 +4,39 @@ use strict;
 use warnings;
 use ExtUtils::MakeMaker;
 
-my $BUILD_REQUIRES = {
- 'Cwd'                   => 0,
- 'ExtUtils::MakeMaker'   => 0,
- 'File::Spec::Functions' => 0,
- 'File::Temp'            => 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 = 'rgit';
+
+my %META = (
+ configure_requires => {
+  'ExtUtils::MakeMaker' => 0,
+ },
+ build_requires => {
+  'Cwd'                   => 0,
+  'ExtUtils::MakeMaker'   => 0,
+  'File::Spec::Functions' => 0,
+  'File::Temp'            => 0,
+  'Test::More'            => 0,
+ },
+ recommends => {
+  'Term::ReadKey' => 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          => 'rgit',
-    AUTHOR        => 'Vincent Pit <perl@profvince.com>',
-    LICENSE       => 'perl',
-    VERSION_FROM  => 'lib/App/Rgit.pm',
-    ABSTRACT      => 'Recursively execute a command on all the git repositories in a directory tree.',
-    PL_FILES      => { },
-    EXE_FILES     => [ 'bin/rgit' ],
-    PREREQ_PM     => {
+    NAME             => 'rgit',
+    AUTHOR           => 'Vincent Pit <perl@profvince.com>',
+    LICENSE          => 'perl',
+    VERSION_FROM     => 'lib/App/Rgit.pm',
+    ABSTRACT         => 'Recursively execute a command on all the git repositories in a directory tree.',
+    PL_FILES         => { },
+    EXE_FILES        => [ 'bin/rgit' ],
+    PREREQ_PM        => {
         'Carp'                  => 0,
         'Cwd'                   => 0,
         'Exporter'              => 0,
@@ -39,10 +45,13 @@ WriteMakefile(
         'Object::Tiny'          => 0,
         'POSIX'                 => 0,
     },
-    dist          => { 
-        PREOP      => 'pod2text bin/rgit > $(DISTVNAME)/README; '
-                      . build_req,
-        COMPRESS   => 'gzip -9f', SUFFIX => 'gz'
+    MIN_PERL_VERSION => 5.008,
+    META_MERGE       => \%META,
+    dist             => {
+        PREOP    => 'pod2text bin/rgit > $(DISTVNAME)/README',
+        COMPRESS => 'gzip -9f', SUFFIX => 'gz'
     },
-    clean         => { FILES => 'rgit-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt' }
+    clean            => {
+        FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
+    }
 );