print "none\n";
}
-my $BUILD_REQUIRES = {
- 'ExtUtils::MakeMaker' => 0,
- 'File::Copy' => 0,
- 'Test::More' => 0,
- 'XSLoader' => 0
-};
+my $dist = 'Test-Valgrind';
-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 => {
+ 'Config' => 0,
+ 'ExtUtils::MakeMaker' => 0,
+ 'File::Spec' => 0,
+ },
+ build_requires => {
+ 'ExtUtils::MakeMaker' => 0,
+ 'File::Copy' => 0,
+ 'Test::More' => 0,
+ 'XSLoader' => 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",
+ },
+);
my $supp = 'lib/Test/Valgrind/Suppressions';
open my $tpl, '<', $supp . '.tpl' or die "open($supp.tpl): $!";
$supp = 'Test/Valgrind/perlTestValgrind.supp';
WriteMakefile(
- NAME => 'Test::Valgrind',
- AUTHOR => 'Vincent Pit <perl@profvince.com>',
- LICENSE => 'perl',
- VERSION_FROM => 'lib/Test/Valgrind.pm',
- ABSTRACT_FROM => 'lib/Test/Valgrind.pm',
- PL_FILES => {
+ NAME => 'Test::Valgrind',
+ AUTHOR => 'Vincent Pit <perl@profvince.com>',
+ LICENSE => 'perl',
+ VERSION_FROM => 'lib/Test/Valgrind.pm',
+ ABSTRACT_FROM => 'lib/Test/Valgrind.pm',
+ PL_FILES => {
'./Gensupp.PL' => 'blib/archpub/' . $supp,
'./FixInstall.PL' => 'Makefile.bak',
},
- OPTIMIZE => '-g',
- PM => {
+ OPTIMIZE => '-g',
+ PM => {
'lib/Test/Valgrind.pm'
=> '$(INST_LIB)/Test/Valgrind.pm',
'lib/Test/Valgrind/Suppressions.pm'
=> 'blib/archpub/Test/Valgrind/Suppressions.pm',
},
- C => \@C,
- PREREQ_PM => {
+ C => \@C,
+ PREREQ_PM => {
'Carp' => 0,
'Exporter' => 0,
'Fcntl' => 0,
'Perl::Destruct::Level' => 0,
'Test::Builder' => 0,
},
- dist => {
- PREOP => "touch lib/$supp; "
- . 'pod2text lib/Test/Valgrind.pm > $(DISTVNAME)/README; '
- . build_req,
- COMPRESS => 'gzip -9f', SUFFIX => 'gz',
+ MIN_PERL_VERSION => 5.006,
+ META_MERGE => \%META,
+ dist => {
+ PREOP => "touch lib/$supp; "
+ . 'pod2text lib/Test/Valgrind.pm > $(DISTVNAME)/README',
+ COMPRESS => 'gzip -9f', SUFFIX => 'gz',
+ },
+ clean => {
+ FILES => "$dist-* lib/$supp Makefile.bak *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
},
- clean => { FILES => "Test-Valgrind-* lib/$supp Makefile.bak *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt" },
);
1 while unlink 'lib/' . $supp;