From c964cc1a5987b1c5eafc7d3780b36566dfea0248 Mon Sep 17 00:00:00 2001 From: David Dick Date: Sun, 3 Jul 2022 19:01:21 +1000 Subject: [PATCH] Redirecting bugtracking to github --- Makefile.PL | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Makefile.PL b/Makefile.PL index 60a5cba..3848a10 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -14,6 +14,27 @@ WriteMakefile( AUTHOR => q{David Dick }, VERSION_FROM => 'lib/Test/Rsyslog.pm', ABSTRACT_FROM => 'lib/Test/Rsyslog.pm', + ( $ExtUtils::MakeMaker::VERSION >= 6.3002 + ? ( 'LICENSE' => 'perl' ) + : () ), + ( + $ExtUtils::MakeMaker::VERSION >= 6.48 + ? ( 'MIN_PERL_VERSION' => '5.006' ) + : () + ), + META_MERGE => { + 'meta-spec' => { version => 2 }, + resources => { + repository => { + url => 'https://github.com/david-dick/test-rsyslog', + web => 'https://github.com/david-dick/test-rsyslog', + type => 'git', + }, + bugtracker => { + web => 'https://github.com/david-dick/test-rsyslog/issues' + }, + }, + }, LICENSE => 'perl_5', PL_FILES => {}, MIN_PERL_VERSION => 5.006,