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=312ecfe9f83639c56ab5f6df93989143335d1dd5 commit 312ecfe9f83639c56ab5f6df93989143335d1dd5 Author: Guillem Jover <[email protected]> AuthorDate: Wed Jul 9 12:28:13 2025 +0200 test: Move Perl version use pragmas as the first things to declare --- lib/dpkg/t/t-tarextract.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/dpkg/t/t-tarextract.t b/lib/dpkg/t/t-tarextract.t index d39c9a85d..f25be02c5 100755 --- a/lib/dpkg/t/t-tarextract.t +++ b/lib/dpkg/t/t-tarextract.t @@ -15,6 +15,9 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. +use v5.36; +use version; + use Test::More; use Cwd; use File::Path qw(make_path remove_tree); @@ -27,9 +30,6 @@ use Dpkg (); use Dpkg::File; use Dpkg::IPC; -use v5.36; -use version; - my $srcdir = $ENV{srcdir} || '.'; my $builddir = $ENV{builddir} || '.'; my $tmpdir = 't.tmp/t-tarextract'; -- Dpkg.Org's dpkg

