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=4006a1dd98f1d57a420f95177d74ffcf6b2ffc95 commit 4006a1dd98f1d57a420f95177d74ffcf6b2ffc95 Author: Guillem Jover <[email protected]> AuthorDate: Wed Mar 27 03:06:25 2019 +0100 build: Bump minimal Perl version to 5.24.1 The Perl version in Debian stretch is 5.24.1, which is the release that will be oldstable once 1.20.x gets uploaded to Debian unstable. --- debian/changelog | 2 ++ doc/coding-style.txt | 4 ++-- m4/dpkg-progs.m4 | 2 +- t/minimum-version.t | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index 9f7105a7d..22d2b1fc7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,8 @@ dpkg (1.20.0) UNRELEASED; urgency=medium [ Guillem Jover ] * libdpkg: Do not generate a backup file for the available database. Closes: #343578 + * Build system: + - Bump minimal Perl version to 5.24.1. [ Updated man pages translations ] * German (Helge Kreutzmann). Closes: #931135 diff --git a/doc/coding-style.txt b/doc/coding-style.txt index 5e00ddaa6..d2e2b9071 100644 --- a/doc/coding-style.txt +++ b/doc/coding-style.txt @@ -287,7 +287,7 @@ see what operation is being done: foo(); -Dpkg Perl coding style 2017-05-18 +Dpkg Perl coding style 2019-03-27 ====================== General @@ -326,7 +326,7 @@ 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.20.2. +possible. Currently that means Perl 5.24.1. Object methods ~~~~~~~~~~~~~~ diff --git a/m4/dpkg-progs.m4 b/m4/dpkg-progs.m4 index 3793fc4fd..ab27f9149 100644 --- a/m4/dpkg-progs.m4 +++ b/m4/dpkg-progs.m4 @@ -7,7 +7,7 @@ # Locate perl interpreter in the path AC_DEFUN([DPKG_PROG_PERL], [ AC_ARG_VAR([PERL], [Perl interpreter])dnl - m4_define([_PERL_MIN_VERSION], [5.20.2]) + m4_define([_PERL_MIN_VERSION], [5.24.1]) AC_SUBST([PERL_MIN_VERSION], [_PERL_MIN_VERSION]) AC_CACHE_CHECK([for perl >= _PERL_MIN_VERSION], [ac_cv_path_PERL], [ AC_PATH_PROGS_FEATURE_CHECK([PERL], [perl], [ diff --git a/t/minimum-version.t b/t/minimum-version.t index 10a55630d..f3484dbff 100644 --- a/t/minimum-version.t +++ b/t/minimum-version.t @@ -28,5 +28,5 @@ my @files = Test::Dpkg::all_perl_files(); plan tests => scalar @files; for my $file (@files) { - minimum_version_ok($file, '5.20.2'); + minimum_version_ok($file, '5.24.1'); } -- Dpkg.Org's dpkg

