X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=86acf98ad60c39c7631401cf441fe90100dd6f59;hb=cb9eb6a59510dcfb9aaf05e09d2612aa0a9e18e3;hp=54b937d024153a9869967fcd851e6ddaec8435cc;hpb=cd8f7b1728e37a4bebbe7a5e293d3706b32a0eb7;p=perl%2Fmodules%2Frgit.git diff --git a/Makefile.PL b/Makefile.PL index 54b937d..86acf98 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -14,7 +14,6 @@ my %PREREQ_PM = ( 'Exporter' => 0, 'File::Find' => 0, 'File::Spec::Functions' => 0, - 'Object::Tiny' => 0, 'POSIX' => 0, 'base' => 0, ); @@ -44,21 +43,21 @@ my %META = ( ); WriteMakefile( - NAME => $name, - AUTHOR => 'Vincent Pit ', - 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 ', + 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" + } );