Version in base suite: 1.02-1 Base version: libmodule-cpants-analyse-perl_1.02-1 Target version: libmodule-cpants-analyse-perl_1.02-1+deb13u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/libm/libmodule-cpants-analyse-perl/libmodule-cpants-analyse-perl_1.02-1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/libm/libmodule-cpants-analyse-perl/libmodule-cpants-analyse-perl_1.02-1+deb13u1.dsc changelog | 9 + patches/0001-Use-relative-rather-than-absolute-symlink-in-t-analy.patch | 53 ++++++++++ patches/series | 1 3 files changed, 63 insertions(+) dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmp_51ian47/libmodule-cpants-analyse-perl_1.02-1.dsc: no acceptable signature found dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmp_51ian47/libmodule-cpants-analyse-perl_1.02-1+deb13u1.dsc: no acceptable signature found diff -Nru libmodule-cpants-analyse-perl-1.02/debian/changelog libmodule-cpants-analyse-perl-1.02/debian/changelog --- libmodule-cpants-analyse-perl-1.02/debian/changelog 2023-10-28 23:44:09.000000000 +0000 +++ libmodule-cpants-analyse-perl-1.02/debian/changelog 2026-08-31 14:01:08.000000000 +0000 @@ -1,3 +1,12 @@ +libmodule-cpants-analyse-perl (1.02-1+deb13u1) trixie; urgency=medium + + * Add 0001-Use-relative-rather-than-absolute-symlink-in-t-analy.patch. + Backport fix for interoperability with Archive::Tar >= 3.08. + Patch taken from upstream Git as included in 1.03. + (Closes: #1146144) + + -- gregor herrmann Mon, 31 Aug 2026 16:01:08 +0200 + libmodule-cpants-analyse-perl (1.02-1) unstable; urgency=medium [ Debian Janitor ] diff -Nru libmodule-cpants-analyse-perl-1.02/debian/patches/0001-Use-relative-rather-than-absolute-symlink-in-t-analy.patch libmodule-cpants-analyse-perl-1.02/debian/patches/0001-Use-relative-rather-than-absolute-symlink-in-t-analy.patch --- libmodule-cpants-analyse-perl-1.02/debian/patches/0001-Use-relative-rather-than-absolute-symlink-in-t-analy.patch 1970-01-01 00:00:00.000000000 +0000 +++ libmodule-cpants-analyse-perl-1.02/debian/patches/0001-Use-relative-rather-than-absolute-symlink-in-t-analy.patch 2026-08-31 14:01:08.000000000 +0000 @@ -0,0 +1,53 @@ +From fed1a10a9d9170bce71777745d504cd427692e2d Mon Sep 17 00:00:00 2001 +From: Paul Howarth +Date: Fri, 29 May 2026 11:51:34 +0100 +Subject: [PATCH] Use relative rather than absolute symlink in + t/analyse/manifest.t + +Archive::Tar since version 3.08 will refuse to extract absolute symlinks +unless $Archive::Tar::INSECURE_EXTRACT_MODE is set, leading to this test +suite failure: + +Symlink 'Module-CPANTS-Analyse-Test-0.01/MANIFEST.lnk' has absolute target. Not extracting under SECURE EXTRACT MODE at /usr/share/perl5/vendor_perl/Archive/Any/Lite.pm line 130. +t/analyse/manifest.t ..... +Dubious, test returned 1 (wstat 256, 0x100) +Failed 1/14 subtests + +This problem can be avoided by using relative symlinks: + MANIFEST.lnk -> MANIFEST +rather than absolute symlinks: + MANIFEST.lnk -> /path/to/tmpdir/MANIFEST +in the test. + + +Bug-Debian: https://bugs.debian.org/1146144 + +--- + t/analyse/manifest.t | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/t/analyse/manifest.t b/t/analyse/manifest.t +index b8981ee..1c21a5b 100644 +--- a/t/analyse/manifest.t ++++ b/t/analyse/manifest.t +@@ -57,7 +57,7 @@ test_distribution { + MANIFEST + EOF + +- eval { symlink "$dir/MANIFEST", "$dir/MANIFEST.lnk" }; ++ eval { symlink "MANIFEST", "$dir/MANIFEST.lnk" }; + if ($@) { + diag "symlink is not supported"; + return; +@@ -73,7 +73,7 @@ test_distribution { + MANIFEST + EOF + +- eval { symlink "$dir/MANIFEST", "$dir/MANIFEST.lnk" }; ++ eval { symlink "MANIFEST", "$dir/MANIFEST.lnk" }; + if ($@) { + diag "symlink is not supported"; + return; +-- +2.55.0 + diff -Nru libmodule-cpants-analyse-perl-1.02/debian/patches/series libmodule-cpants-analyse-perl-1.02/debian/patches/series --- libmodule-cpants-analyse-perl-1.02/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ libmodule-cpants-analyse-perl-1.02/debian/patches/series 2026-08-31 14:01:08.000000000 +0000 @@ -0,0 +1 @@ +0001-Use-relative-rather-than-absolute-symlink-in-t-analy.patch