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=0e9eb7b807733e41c1e38012a5560376887232db commit 0e9eb7b807733e41c1e38012a5560376887232db Author: Guillem Jover <[email protected]> AuthorDate: Tue Jan 28 23:55:40 2020 +0100 Dpkg::OpenPGP, Dpkg::Source::Package: Update needed modules This was missed when refactoring the code out of Dpkg::Source::Package. Fixes: commit 139dfc4c78593d995610c0aa180300a9a7dd94ac --- scripts/Dpkg/OpenPGP.pm | 1 + scripts/Dpkg/Source/Package.pm | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/Dpkg/OpenPGP.pm b/scripts/Dpkg/OpenPGP.pm index f08bd3b12..704294de2 100644 --- a/scripts/Dpkg/OpenPGP.pm +++ b/scripts/Dpkg/OpenPGP.pm @@ -24,6 +24,7 @@ use File::Copy; use Dpkg::Gettext; use Dpkg::ErrorHandling; +use Dpkg::IPC; use Dpkg::Path qw(find_command); our $VERSION = '0.01'; diff --git a/scripts/Dpkg/Source/Package.pm b/scripts/Dpkg/Source/Package.pm index 3e7f40ebb..da622669b 100644 --- a/scripts/Dpkg/Source/Package.pm +++ b/scripts/Dpkg/Source/Package.pm @@ -54,8 +54,7 @@ use Dpkg::Control; use Dpkg::Checksums; use Dpkg::Version; use Dpkg::Compression; -use Dpkg::Path qw(check_files_are_the_same find_command); -use Dpkg::IPC; +use Dpkg::Path qw(check_files_are_the_same); use Dpkg::Vendor qw(run_vendor_hook); use Dpkg::Source::Format; use Dpkg::OpenPGP; -- Dpkg.Org's dpkg

