From: Karen Etheridge Date: Thu, 10 Jul 2014 16:03:50 +0000 (-0700) Subject: declare minimum perl version and repository, bugtracker in metadata X-Git-Tag: 0.06^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Ftags%2F0.06;p=p5sagit%2FSub-Name.git declare minimum perl version and repository, bugtracker in metadata --- diff --git a/Changes b/Changes index 71c2743..8b63875 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,7 @@ * Do not change the string arg in XS, use copy instead. Fixes perlcc -O3 RT#96893 (Reini Urban) * add README make target + * add more distribution metadata 0.05 -- Wed Sep 8 00:51 CEST 2010 * Stop using the padlist to refcount GVs. Instead use regular magic. This diff --git a/Makefile.PL b/Makefile.PL index 9699079..a53161d 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,7 +5,24 @@ WriteMakefile( NAME => 'Sub::Name', VERSION_FROM => 'lib/Sub/Name.pm', ABSTRACT_FROM => 'lib/Sub/Name.pm', - AUTHOR => 'Matthijs van Duin ' + AUTHOR => 'Matthijs van Duin ', + + MIN_PERL_VERSION => '5.006', + META_MERGE => { + 'meta-spec' => { version => 2 }, + dynamic_config => 0, + resources => { + repository => { + url => 'https://github.com/karenetheridge/Sub-Name.git', + web => 'https://github.com/karenetheridge/Sub-Name', + type => 'git', + }, + bugtracker => { + mailto => 'bug-Sub-Name@rt.cpan.org', + web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Sub-Name', + }, + }, + }, ); package MY;