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=66053f4c0fb987e6fde1c011fc0cbe98e6da5efe commit 66053f4c0fb987e6fde1c011fc0cbe98e6da5efe Author: Guillem Jover <[email protected]> AuthorDate: Sat Sep 2 01:00:04 2023 +0200 Dpkg::BuildAPI: Move DESCRIPTION before package declaration This applies the same changes that were applied in the commit dbede18a5eba12dd61aec4e8cc9f701d98fb29f4. --- scripts/Dpkg/BuildAPI.pm | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/scripts/Dpkg/BuildAPI.pm b/scripts/Dpkg/BuildAPI.pm index 116a2cab8..2c29fd32d 100644 --- a/scripts/Dpkg/BuildAPI.pm +++ b/scripts/Dpkg/BuildAPI.pm @@ -13,6 +13,21 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. +=encoding utf8 + +=head1 NAME + +Dpkg::BuildAPI - handle build API versions + +=head1 DESCRIPTION + +The Dpkg::BuildAPI module provides functions to fetch the current dpkg +build API level. + +B<Note>: This is a private module, its API can change at any time. + +=cut + package Dpkg::BuildAPI 0.01; use strict; @@ -38,17 +53,6 @@ use constant { my $build_api; -=encoding utf8 - -=head1 NAME - -Dpkg::BuildAPI - handle build API versions - -=head1 DESCRIPTION - -The Dpkg::BuildAPI module provides functions to fetch the current dpkg -build API level. - =head1 FUNCTIONS =over 4 -- Dpkg.Org's dpkg

