diff -Nru libio-all-perl-0.87/debian/changelog libio-all-perl-0.87/debian/changelog --- libio-all-perl-0.87/debian/changelog 2017-11-12 20:54:59.000000000 +0000 +++ libio-all-perl-0.87/debian/changelog 2022-06-14 23:44:44.000000000 +0000 @@ -1,3 +1,25 @@ +libio-all-perl (0.87-2) unstable; urgency=medium + + [ Damyan Ivanov ] + * declare conformance with Policy 4.1.3 (no changes needed) + + [ Salvatore Bonaccorso ] + * Update Vcs-* headers for switch to salsa.debian.org + + [ gregor herrmann ] + * debian/*: replace ADTTMP with AUTOPKGTEST_TMP. + * debian/watch: use uscan version 4. + + [ Debian Janitor ] + * Trim trailing whitespace. + * Bump debhelper from old 9 to 12. + * Set debhelper-compat version in Build-Depends. + * Set upstream metadata fields: Bug-Submit. + * Remove obsolete fields Contact, Name from debian/upstream/metadata + (already present in machine-readable debian/copyright). + + -- Jelmer Vernooij Wed, 15 Jun 2022 00:44:44 +0100 + libio-all-perl (0.87-1) unstable; urgency=medium * Team upload. @@ -262,8 +284,8 @@ * debian/patches + fix_pod_erros.patch added - Just remove a trailing `;' from encoding on POD - + debian_pack_name_at_tests.patch - - was direct applied on .diff.gz, this change the pathname to + + debian_pack_name_at_tests.patch + - was direct applied on .diff.gz, this change the pathname to a more debian-way name. * debian/README.source added @@ -294,7 +316,7 @@ ); Florian Ragwitz moved to Uploaders. * Add debian/watch. - + -- Krzysztof Krzyżaniak (eloy) Wed, 18 Jun 2008 10:26:13 +0200 libio-all-perl (0.33-3.2) unstable; urgency=low @@ -334,4 +356,3 @@ * Initial release (Closes: #317110). -- Florian Ragwitz Wed, 6 Jul 2005 13:39:16 +0200 - diff -Nru libio-all-perl-0.87/debian/compat libio-all-perl-0.87/debian/compat --- libio-all-perl-0.87/debian/compat 2017-11-12 20:54:59.000000000 +0000 +++ libio-all-perl-0.87/debian/compat 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -9 diff -Nru libio-all-perl-0.87/debian/control libio-all-perl-0.87/debian/control --- libio-all-perl-0.87/debian/control 2017-11-12 20:54:59.000000000 +0000 +++ libio-all-perl-0.87/debian/control 2022-06-14 23:44:44.000000000 +0000 @@ -5,16 +5,16 @@ Section: perl Testsuite: autopkgtest-pkg-perl Priority: optional -Build-Depends: debhelper (>= 9~) +Build-Depends: debhelper-compat (= 13) Build-Depends-Indep: libfile-copy-recursive-perl, libfile-readbackwards-perl, libmldbm-perl, libspiffy-perl, netbase, perl -Standards-Version: 4.1.1 -Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libio-all-perl.git -Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libio-all-perl.git +Standards-Version: 4.1.3 +Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libio-all-perl +Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libio-all-perl.git Homepage: https://metacpan.org/release/IO-All Package: libio-all-perl diff -Nru libio-all-perl-0.87/debian/patches/dont-use-lib-in-test-suite.patch libio-all-perl-0.87/debian/patches/dont-use-lib-in-test-suite.patch --- libio-all-perl-0.87/debian/patches/dont-use-lib-in-test-suite.patch 2017-11-12 20:54:59.000000000 +0000 +++ libio-all-perl-0.87/debian/patches/dont-use-lib-in-test-suite.patch 2022-06-14 23:44:44.000000000 +0000 @@ -11,7 +11,7 @@ my $cwd = abs_path('.'); -eval { symlink("$cwd/lib/IO/All.pm", o_dir() . '/IO-All-file-link') or die $! }; -+eval { symlink(defined($ENV{ADTTMP}) ? '/usr/share/perl5/IO/All.pm' : "$cwd/lib/IO/All.pm", o_dir() . '/IO-All-file-link') or die $! }; ++eval { symlink(defined($ENV{AUTOPKGTEST_TMP}) ? '/usr/share/perl5/IO/All.pm' : "$cwd/lib/IO/All.pm", o_dir() . '/IO-All-file-link') or die $! }; if ($@ or not (-e o_dir() . '/IO-All-file-link' and -l o_dir() . '/IO-All-file-link')) { plan skip_all => 'Cannot call symlink on this platform'; @@ -20,7 +20,7 @@ is($file_target->filename, 'All.pm', 'link target is expected file' ); -symlink("$cwd/lib/IO", o_dir() . '/IO-All-dir-link'); -+symlink( defined($ENV{ADTTMP}) ? '/usr/share/perl5/IO' : "$cwd/lib/IO", o_dir() . '/IO-All-dir-link'); ++symlink( defined($ENV{AUTOPKGTEST_TMP}) ? '/usr/share/perl5/IO' : "$cwd/lib/IO", o_dir() . '/IO-All-dir-link'); my $dir_link = io(o_dir() . '/IO-All-dir-link'); ok($dir_link->is_link, 'Link to dir is a link (not a dir)'); @@ -33,7 +33,7 @@ my $outfile = "$t/out.pm"; ok(not -f $outfile); -my $input = io('lib/IO/All.pm')->open; -+my $input = io(defined($ENV{ADTTMP}) ? '/usr/share/perl5/IO/All.pm' : 'lib/IO/All.pm')->open; ++my $input = io(defined($ENV{AUTOPKGTEST_TMP}) ? '/usr/share/perl5/IO/All.pm' : 'lib/IO/All.pm')->open; ok(ref $input); my $output = io($outfile)->open('>'); ok(ref $output); @@ -42,7 +42,7 @@ ok(not length($buffer)); ok($output->close); -test_matching_files($outfile, 'lib/IO/All.pm'); -+test_matching_files($outfile, defined($ENV{ADTTMP}) ? '/usr/share/perl5/IO/All.pm' : 'lib/IO/All.pm'); ++test_matching_files($outfile, defined($ENV{AUTOPKGTEST_TMP}) ? '/usr/share/perl5/IO/All.pm' : 'lib/IO/All.pm'); ok($output->unlink); del_output_dir(); @@ -55,12 +55,12 @@ use IO_All_Test; -my $io = io('lib/IO/All.pm'); -+my $io = io(defined($ENV{ADTTMP}) ? '/usr/share/perl5/IO/All.pm' : 'lib/IO/All.pm'); ++my $io = io(defined($ENV{AUTOPKGTEST_TMP}) ? '/usr/share/perl5/IO/All.pm' : 'lib/IO/All.pm'); my $buffer; $io->buffer($buffer); 1 while $io->read; ok(length($buffer)); -test_file_contents($buffer, 'lib/IO/All.pm'); -+test_file_contents($buffer, defined($ENV{ADTTMP}) ? '/usr/share/perl5/IO/All.pm' : 'lib/IO/All.pm'); ++test_file_contents($buffer, defined($ENV{AUTOPKGTEST_TMP}) ? '/usr/share/perl5/IO/All.pm' : 'lib/IO/All.pm'); del_output_dir(); diff -Nru libio-all-perl-0.87/debian/upstream/metadata libio-all-perl-0.87/debian/upstream/metadata --- libio-all-perl-0.87/debian/upstream/metadata 2017-11-12 20:54:59.000000000 +0000 +++ libio-all-perl-0.87/debian/upstream/metadata 2022-06-14 23:44:44.000000000 +0000 @@ -1,7 +1,6 @@ --- Archive: CPAN Bug-Database: https://github.com/ingydotnet/io-all-pm/issues -Contact: Ingy döt Net -Name: IO-All +Bug-Submit: https://github.com/ingydotnet/io-all-pm/issues/new Repository: https://github.com/ingydotnet/io-all-pm.git Repository-Browse: https://github.com/ingydotnet/io-all-pm diff -Nru libio-all-perl-0.87/debian/watch libio-all-perl-0.87/debian/watch --- libio-all-perl-0.87/debian/watch 2017-11-12 20:54:59.000000000 +0000 +++ libio-all-perl-0.87/debian/watch 2022-06-14 23:44:44.000000000 +0000 @@ -1,2 +1,2 @@ -version=3 -https://metacpan.org/release/IO-All .+/IO-All-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ +version=4 +https://metacpan.org/release/IO-All .+/IO-All-v?@ANY_VERSION@@ARCHIVE_EXT@$