Author: tim.bunce
Date: Tue Jun 16 12:52:51 2009
New Revision: 772
Modified:
trunk/Changes
trunk/Makefile.PL
Log:
Added license, homepage, bugtracker, repository and MailingList
resources to META.yml thanks to Michael G Schwern. #rt47015
Modified: trunk/Changes
==============================================================================
--- trunk/Changes (original)
+++ trunk/Changes Tue Jun 16 12:52:51 2009
@@ -17,6 +17,8 @@
Changed enable_profile() to discard the time spent since
profile was disabled.
+ Added license, homepage, bugtracker, repository and MailingList
+ resources to META.yml thanks to Michael G Schwern.
Added nytprofcg utility to generate callgrind data for
viewing via Kcachegrind, thanks to Chia-liang Kao.
Modified: trunk/Makefile.PL
==============================================================================
--- trunk/Makefile.PL (original)
+++ trunk/Makefile.PL Tue Jun 16 12:52:51 2009
@@ -86,6 +86,18 @@
$mm_opts{OPTIMIZE} = '-g' if $opt_g;
$mm_opts{CCFLAGS} = "-pg" if $opt_pg;
+if( $ExtUtils::MakeMaker::VERSION >= 6.45 ) {
+ $mm_opts{META_MERGE} = {
+ resources => {
+ license => 'http://dev.perl.org/licenses/',
+ homepage => 'http://perl-devel-nytprof.googlecode.com',
+ bugtracker
=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Devel-NYTProf',
+ repository => 'http://perl-devel-nytprof.googlecode.com/svn',
+ MailingList
=> 'http://groups.google.com/group/develnytprof-dev',
+ }
+ }
+}
+
if (my $gccversion = $Config{gccversion}) { # ask gcc to be more
pedantic
print "Your perl was compiled with gcc (version $Config{gccversion}),
okay.\n";
$gccversion =~ s/[^\d\.]//g; # just a number please
--~--~---------~--~----~------------~-------~--~----~
You've received this message because you are subscribed to
the Devel::NYTProf Development User group.
Group hosted at: http://groups.google.com/group/develnytprof-dev
Project hosted at: http://perl-devel-nytprof.googlecode.com
CPAN distribution: http://search.cpan.org/dist/Devel-NYTProf
To post, email: [email protected]
To unsubscribe, email: [email protected]
-~----------~----~----~----~------~----~------~--~---