diff -Nru libscalar-listify-perl-0.03/debian/changelog libscalar-listify-perl-0.03/debian/changelog --- libscalar-listify-perl-0.03/debian/changelog 2014-02-08 22:41:10.000000000 +0000 +++ libscalar-listify-perl-0.03/debian/changelog 2015-04-27 20:32:22.000000000 +0000 @@ -1,3 +1,16 @@ +libscalar-listify-perl (0.03-2) unstable; urgency=medium + + * Team upload. + + [ Salvatore Bonaccorso ] + * Update Vcs-Browser URL to cgit web frontend + + [ Niko Tyni ] + * Patch the upstream test suite to remove useless warnings + * Declare the package autopkgtestable + + -- Niko Tyni Mon, 27 Apr 2015 23:32:12 +0300 + libscalar-listify-perl (0.03-1) unstable; urgency=low * Initial Release (Closes: #731042) diff -Nru libscalar-listify-perl-0.03/debian/control libscalar-listify-perl-0.03/debian/control --- libscalar-listify-perl-0.03/debian/control 2014-02-08 22:41:10.000000000 +0000 +++ libscalar-listify-perl-0.03/debian/control 2015-04-27 20:31:58.000000000 +0000 @@ -6,9 +6,10 @@ Build-Depends: debhelper (>= 9) Build-Depends-Indep: perl Standards-Version: 3.9.5 -Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libscalar-listify-perl.git +Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libscalar-listify-perl.git Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libscalar-listify-perl.git Homepage: https://metacpan.org/release/Scalar-Listify +Testsuite: autopkgtest-pkg-perl Package: libscalar-listify-perl Architecture: all diff -Nru libscalar-listify-perl-0.03/debian/patches/series libscalar-listify-perl-0.03/debian/patches/series --- libscalar-listify-perl-0.03/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ libscalar-listify-perl-0.03/debian/patches/series 2015-04-27 20:27:55.000000000 +0000 @@ -0,0 +1 @@ +test-warnings diff -Nru libscalar-listify-perl-0.03/debian/patches/test-warnings libscalar-listify-perl-0.03/debian/patches/test-warnings --- libscalar-listify-perl-0.03/debian/patches/test-warnings 1970-01-01 00:00:00.000000000 +0000 +++ libscalar-listify-perl-0.03/debian/patches/test-warnings 2015-04-27 20:31:31.000000000 +0000 @@ -0,0 +1,16 @@ +Remove useless warnings from the test suite + +Nobody looks at these anyway. +--- libscalar-listify-perl.orig/test.pl ++++ libscalar-listify-perl/test.pl +@@ -18,10 +18,3 @@ + # (correspondingly "not ok 13") depending on the success of chunk 13 + # of the test code): + +-my $scalar = 'ho there'; +-my $aref = [qw(a ref array ref got to go)]; +- +-use Data::Dumper; +- +-warn Dumper(listify_aref($scalar)); +-warn Dumper(listify_aref($aref));