This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=31ad5991289203b5feb4cc6b737e7e009935a019 commit 31ad5991289203b5feb4cc6b737e7e009935a019 Author: Guillem Jover <[email protected]> AuthorDate: Fri Jul 3 05:49:25 2020 +0200 build: Add Module::Signature as configure recommends for CPAN We want in general to sign the CPAN distribution, so recommend the module, but there is no need to require it in case third parties want to generate a distribution. --- debian/changelog | 4 ++++ scripts/Build.PL.in | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/debian/changelog b/debian/changelog index 87e585025..7fd9d0ccf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,9 @@ dpkg (1.20.4) UNRELEASED; urgency=medium + [ Guillem Jover ] + * Build system: + - Add Module::Signature as configure recommends for CPAN. + [ Updated programs translations ] * German (Sven Joachim). diff --git a/scripts/Build.PL.in b/scripts/Build.PL.in index b8f62d26f..eb4449cd1 100644 --- a/scripts/Build.PL.in +++ b/scripts/Build.PL.in @@ -76,6 +76,11 @@ my $build = $class->new( version => 2, }, prereqs => { + configure => { + recommends => { + 'Module::Signature' => 0, + }, + }, test => { recommends => { 'Test::Pod' => 0, -- Dpkg.Org's dpkg

