X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Frgit.git;a=blobdiff_plain;f=Makefile.PL;h=d84e49ca15e8af5e5dbc357b408407c75697e321;hp=54b937d024153a9869967fcd851e6ddaec8435cc;hb=HEAD;hpb=cd8f7b1728e37a4bebbe7a5e293d3706b32a0eb7 diff --git a/Makefile.PL b/Makefile.PL index 54b937d..d84e49c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -9,14 +9,13 @@ my $dist = 'rgit'; (my $name = $dist) =~ s{-}{::}g; my %PREREQ_PM = ( - 'Carp' => 0, - 'Cwd' => 0, - 'Exporter' => 0, - 'File::Find' => 0, - 'File::Spec::Functions' => 0, - 'Object::Tiny' => 0, - 'POSIX' => 0, - 'base' => 0, + 'Carp' => 0, + 'Cwd' => 0, + 'Exporter' => 0, + 'File::Find' => 0, + 'File::Spec' => 0, + 'POSIX' => 0, + 'base' => 0, ); my %META = ( @@ -24,11 +23,14 @@ my %META = ( 'ExtUtils::MakeMaker' => 0, }, build_requires => { - 'Cwd' => 0, - 'ExtUtils::MakeMaker' => 0, - 'File::Spec::Functions' => 0, - 'File::Temp' => 0, - 'Test::More' => 0, + 'Cwd' => 0, + 'ExtUtils::MakeMaker' => 0, + 'Exporter' => 0, + 'File::Spec' => 0, + 'File::Temp' => 0, + 'POSIX' => 0, + 'Test::More' => 0, + 'base' => 0, %PREREQ_PM, }, recommends => { @@ -36,7 +38,7 @@ my %META = ( }, dynamic_config => 0, resources => { - bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist", + bugtracker => "http://rt.cpan.org/Dist/Display.html?Name=$dist", homepage => "http://search.cpan.org/dist/$dist/", license => 'http://dev.perl.org/licenses/', repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git", @@ -44,21 +46,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 -u bin/rgit > $(DISTVNAME)/README', + COMPRESS => 'gzip -9f', SUFFIX => 'gz' + }, + clean => { + FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt" + } );