Skip to content

Commit

Permalink
Report Data::Dumper problems to Perl 5 Github issues queue
Browse files Browse the repository at this point in the history
In the commit message for 29c66c4,
Nicholas Clark wrote:

    Really we should decide *which* bugtracker is canonical for Data::Dumper
    (and will be checked and acted upon) and then record that metadata in this
    Makefile.PL so that [metacpan.org, etc., can] link to it.

Let's provide that information based on the examples of other
blead-upstream distros under `dist`, `dist/Module-CoreList/Makefile.PL`
and `dist/PathTools/Makefile.PL`.
  • Loading branch information
jkeenan committed May 28, 2021
1 parent 08e4a1e commit 5148d75
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions dist/Data-Dumper/Makefile.PL
@@ -1,10 +1,23 @@
use strict;
use warnings;
use ExtUtils::MakeMaker;

my @extra;
push @extra, 'LICENSE' => 'perl_5'
unless $ExtUtils::MakeMaker::VERSION < 6.31;
push @extra, 'META_MERGE' => {
resources => {
repository => 'git://perl5.git.perl.org/perl.git',
bugtracker => 'https://github.com/Perl/perl5/issues',
homepage => "http://dev.perl.org/",
},
} unless $ExtUtils::MakeMaker::VERSION < 6.46;

WriteMakefile(
NAME => 'Data::Dumper',
VERSION_FROM => 'Dumper.pm',
ABSTRACT_FROM => 'Dumper.pm',
$] <= 5.011000 ? ( INSTALLDIRS => 'perl' ) : (),
((grep { $_ eq 'PERL_CORE=1' } @ARGV) ? () : ('DEFINE' => '-DUSE_PPPORT_H')),
@extra,
);

0 comments on commit 5148d75

Please sign in to comment.