]> git.vpit.fr Git - perl/modules/rgit.git/blobdiff - Makefile.PL
Complete build_requires
[perl/modules/rgit.git] / Makefile.PL
index 54b937d024153a9869967fcd851e6ddaec8435cc..4604f22d1138e9f289cb2054406e4151c567cfcb 100644 (file)
@@ -14,7 +14,6 @@ my %PREREQ_PM = (
  'Exporter'              => 0,
  'File::Find'            => 0,
  'File::Spec::Functions' => 0,
- 'Object::Tiny'          => 0,
  'POSIX'                 => 0,
  'base'                  => 0,
 );
@@ -26,9 +25,12 @@ my %META = (
  build_requires => {
   'Cwd'                   => 0,
   'ExtUtils::MakeMaker'   => 0,
+  'Exporter'              => 0,
   'File::Spec::Functions' => 0,
   'File::Temp'            => 0,
+  'POSIX'                 => 0,
   'Test::More'            => 0,
+  'base'                  => 0,
   %PREREQ_PM,
  },
  recommends => {
@@ -44,21 +46,21 @@ my %META = (
 );
 
 WriteMakefile(
   NAME             => $name,
   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        => \%PREREQ_PM,
   MIN_PERL_VERSION => 5.008,
   META_MERGE       => \%META,
   dist             => {
-        PREOP    => 'pod2text bin/rgit > $(DISTVNAME)/README',
-        COMPRESS => 'gzip -9f', SUFFIX => 'gz'
   },
   clean            => {
-        FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
   }
+ NAME             => $name,
+ 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        => \%PREREQ_PM,
+ MIN_PERL_VERSION => 5.008,
+ META_MERGE       => \%META,
+ dist             => {
+  PREOP    => 'pod2text bin/rgit > $(DISTVNAME)/README',
+  COMPRESS => 'gzip -9f', SUFFIX => 'gz'
+ },
+ clean            => {
+  FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
+ }
 );