From: Vincent Pit Date: Sat, 7 Feb 2009 21:07:07 +0000 (+0100) Subject: Use recent ExtUtils::MakeMaker features to generate a better META.yml X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FSub-Nary.git;a=commitdiff_plain;h=fd8f96744450035480da77f9f1371e1e651d9d96 Use recent ExtUtils::MakeMaker features to generate a better META.yml --- diff --git a/Makefile.PL b/Makefile.PL index 0692a6d..4ac4acd 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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 ', - LICENSE => 'perl', - VERSION_FROM => 'lib/Sub/Nary.pm', - ABSTRACT_FROM => 'lib/Sub/Nary.pm', - PL_FILES => {}, - PREREQ_PM => { + NAME => 'Sub::Nary', + AUTHOR => 'Vincent Pit ', + 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;