]> git.vpit.fr Git - perl/modules/with.git/commitdiff
Use recent ExtUtils::MakeMaker features to generate a better META.yml
authorVincent Pit <vince@profvince.com>
Sat, 7 Feb 2009 21:35:48 +0000 (22:35 +0100)
committerVincent Pit <vince@profvince.com>
Sat, 7 Feb 2009 21:35:48 +0000 (22:35 +0100)
Makefile.PL

index e0c422294ec61c5b0baf57295881bfeb18955b3b..070d4a2a5f1583ce803f41e32f641a76238c5fc9 100644 (file)
@@ -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 <perl@profvince.com>',
-    LICENSE       => 'perl',
-    VERSION_FROM  => 'lib/with.pm',
-    ABSTRACT_FROM => 'lib/with.pm',
-    PL_FILES      => {},
-    PREREQ_PM     => {
+    NAME             => 'with',
+    AUTHOR           => 'Vincent Pit <perl@profvince.com>',
+    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' },
 );