From: Vincent Pit Date: Sat, 7 Feb 2009 21:35:48 +0000 (+0100) Subject: Use recent ExtUtils::MakeMaker features to generate a better META.yml X-Git-Tag: v0.03~29 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fwith.git;a=commitdiff_plain;h=36e9a23bcebc4bf48ec776dbfd3c8a888c560474 Use recent ExtUtils::MakeMaker features to generate a better META.yml --- diff --git a/Makefile.PL b/Makefile.PL index e0c4222..070d4a2 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, -}; +my $dist = 'with'; -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 %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 => 'with', - AUTHOR => 'Vincent Pit ', - LICENSE => 'perl', - VERSION_FROM => 'lib/with.pm', - ABSTRACT_FROM => 'lib/with.pm', - PL_FILES => {}, - PREREQ_PM => { + NAME => 'with', + AUTHOR => 'Vincent Pit ', + LICENSE => 'perl', + VERSION_FROM => 'lib/with.pm', + ABSTRACT_FROM => 'lib/with.pm', + PL_FILES => {}, + PREREQ_PM => { 'Carp' => 0, 'Filter::Util::Call' => 0, 'Scalar::Util' => 0, 'Sub::Prototype::Util' => 0.08, 'Text::Balanced' => 0, }, - dist => { - PREOP => 'pod2text lib/with.pm > $(DISTVNAME)/README; ' - . build_req, - COMPRESS => 'gzip -9f', SUFFIX => 'gz' + MIN_PERL_VERSION => 5.009004, + META_MERGE => \%META, + dist => { + PREOP => 'pod2text lib/with.pm > $(DISTVNAME)/README', + COMPRESS => 'gzip -9f', SUFFIX => 'gz' + }, + clean => { + FILES => "$dist-* *.gcov *.gcda *.gcno cover_db" }, - clean => { FILES => 'with-* *.gcov *.gcda *.gcno cover_db' }, );