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=ebba2873b3a8db5ef1ca5af25a2b42bd51cee18c commit ebba2873b3a8db5ef1ca5af25a2b42bd51cee18c Author: Guillem Jover <[email protected]> AuthorDate: Sun May 14 00:07:15 2023 +0200 doc: Move Perl version baseline as the first perl coding style subsection This is the most important part to be able to know what to rely on in the Perl code base, move it to the front to match the C/C++ section. --- doc/coding-style.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/coding-style.txt b/doc/coding-style.txt index 6e9b574aa..0636ee3b7 100644 --- a/doc/coding-style.txt +++ b/doc/coding-style.txt @@ -290,6 +290,13 @@ see what operation is being done: Dpkg Perl coding style 2019-03-27 ====================== +Perl version +~~~~~~~~~~~~ + +We don't want to impose a too-recent Perl version, so only use features +supported by the Perl version that is currently in Debian oldstable when +possible. Currently that means Perl 5.32.1. + General ~~~~~~~ @@ -321,13 +328,6 @@ if ($foo) { } } -Perl version -~~~~~~~~~~~~ - -We don't want to impose a too-recent Perl version, so only use features -supported by the Perl version that is currently in Debian oldstable when -possible. Currently that means Perl 5.32.1. - Object methods ~~~~~~~~~~~~~~ -- Dpkg.Org's dpkg

