This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=1e0a71f8761cab3505128eb3b7d930e92f98acd3 commit 1e0a71f8761cab3505128eb3b7d930e92f98acd3 Author: Guillem Jover <[email protected]> AuthorDate: Thu Nov 24 03:19:06 2022 +0100 Dpkg::Source::Package: Import Dpkg::OpenPGP::ErrorCodes We are using the openpgp_errorcode_to_string() function, so we need to import the module providing it. Fixes: commit 99793954b46abaeb63bd766a7ed8227800f358e2 Changelog: silent --- scripts/Dpkg/Source/Package.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/Dpkg/Source/Package.pm b/scripts/Dpkg/Source/Package.pm index 1956ad06e..9234b9667 100644 --- a/scripts/Dpkg/Source/Package.pm +++ b/scripts/Dpkg/Source/Package.pm @@ -59,6 +59,7 @@ use Dpkg::Path qw(check_files_are_the_same check_directory_traversal); use Dpkg::Vendor qw(run_vendor_hook); use Dpkg::Source::Format; use Dpkg::OpenPGP; +use Dpkg::OpenPGP::ErrorCodes; my $diff_ignore_default_regex = ' # Ignore general backup files -- Dpkg.Org's dpkg

