]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
Add repository and bugtracker url to META.yml.
authorFlorian Ragwitz <rafl@debian.org>
Sun, 18 Jan 2009 22:28:49 +0000 (23:28 +0100)
committerVincent Pit <vince@profvince.com>
Sun, 18 Jan 2009 22:34:03 +0000 (23:34 +0100)
Makefile.PL

index 76ac727f900ffd5cafadaa2546c7a330d342aaee..136c3c77ed2a6a934ba7ca57117729dfcd7e85a5 100644 (file)
@@ -60,6 +60,21 @@ sub build_req {
  return $build_req;
 }
 
+my $RESOURCES = {
+ 'repository' => 'http://git.profvince.com/perl/modules/Variable-Magic.git',
+ 'bugtracker' => 'http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Variable-Magic',
+};
+
+sub resources {
+ my $tometa = ' >> $(DISTVNAME)/META.yml;';
+ my $build_req = 'echo "resources:" ' . $tometa;
+ foreach my $res ( sort { lc $a cmp lc $b } keys %$RESOURCES ) {
+  my $val = $RESOURCES->{$res};
+  $build_req .= sprintf 'echo "    %-15s %s" %s', "$res:", $val, $tometa;
+ }
+ return $build_req;
+}
+
 WriteMakefile(
     NAME          => 'Variable::Magic',
     AUTHOR        => 'Vincent Pit <perl@profvince.com>',
@@ -75,7 +90,7 @@ WriteMakefile(
     },
     dist          => { 
         PREOP      => 'pod2text lib/Variable/Magic.pm > $(DISTVNAME)/README; '
-                      . build_req,
+                      . build_req . resources,
         COMPRESS   => 'gzip -9f', SUFFIX => 'gz'
     },
     clean         => { FILES => 'Variable-Magic-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt' },