diff -Nru libtemplate-declare-perl-0.47/debian/changelog libtemplate-declare-perl-0.47/debian/changelog --- libtemplate-declare-perl-0.47/debian/changelog 2015-06-26 09:28:59.000000000 +0000 +++ libtemplate-declare-perl-0.47/debian/changelog 2017-11-21 17:50:27.000000000 +0000 @@ -1,3 +1,21 @@ +libtemplate-declare-perl (0.47-2) unstable; urgency=medium + + [ Salvatore Bonaccorso ] + * debian/control: Use HTTPS transport protocol for Vcs-Git URI + + [ gregor herrmann ] + * debian/copyright: change Copyright-Format 1.0 URL to HTTPS. + * Remove Jonathan Yu from Uploaders. Thanks for your work! + * Remove Nathan Handler from Uploaders. Thanks for your work! + * Remove AGOSTINI Yves from Uploaders. Thanks for your work! + * Add a patch to fix test failures with HTML::Lint 2.26. + (Closes: #882264) + * Update years of packaging copyright. + * Declare compliance with Debian Policy 4.1.1. + * Bump debhelper compatibility level to 9. + + -- gregor herrmann Tue, 21 Nov 2017 18:50:27 +0100 + libtemplate-declare-perl (0.47-1) unstable; urgency=medium [ gregor herrmann ] diff -Nru libtemplate-declare-perl-0.47/debian/compat libtemplate-declare-perl-0.47/debian/compat --- libtemplate-declare-perl-0.47/debian/compat 2015-06-26 09:28:59.000000000 +0000 +++ libtemplate-declare-perl-0.47/debian/compat 2017-11-21 17:50:27.000000000 +0000 @@ -1 +1 @@ -8 +9 diff -Nru libtemplate-declare-perl-0.47/debian/control libtemplate-declare-perl-0.47/debian/control --- libtemplate-declare-perl-0.47/debian/control 2015-06-26 09:28:59.000000000 +0000 +++ libtemplate-declare-perl-0.47/debian/control 2017-11-21 17:50:27.000000000 +0000 @@ -1,14 +1,11 @@ Source: libtemplate-declare-perl Maintainer: Debian Perl Group -Uploaders: AGOSTINI Yves , - Ansgar Burchardt , - Jonathan Yu , - gregor herrmann , - Nathan Handler +Uploaders: Ansgar Burchardt , + gregor herrmann Section: perl Testsuite: autopkgtest-pkg-perl Priority: optional -Build-Depends: debhelper (>= 8) +Build-Depends: debhelper (>= 9) Build-Depends-Indep: perl, libclass-accessor-perl, libclass-data-inheritable-perl, @@ -18,9 +15,9 @@ libtest-pod-coverage-perl, libtest-pod-perl, libtest-warn-perl -Standards-Version: 3.9.6 +Standards-Version: 4.1.1 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libtemplate-declare-perl.git -Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libtemplate-declare-perl.git +Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libtemplate-declare-perl.git Homepage: https://metacpan.org/release/Template-Declare Package: libtemplate-declare-perl diff -Nru libtemplate-declare-perl-0.47/debian/copyright libtemplate-declare-perl-0.47/debian/copyright --- libtemplate-declare-perl-0.47/debian/copyright 2015-06-26 09:28:59.000000000 +0000 +++ libtemplate-declare-perl-0.47/debian/copyright 2017-11-21 17:50:27.000000000 +0000 @@ -1,4 +1,4 @@ -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Template-Declare Upstream-Contact: Jesse Vincent Source: https://metacpan.org/release/Template-Declare @@ -19,7 +19,7 @@ 2008, AGOSTINI Yves 2008-2010, Ansgar Burchardt , 2009, Nathan Handler - 2009-2015, gregor herrmann + 2009-2017, gregor herrmann License: Artistic or GPL-1+ License: Artistic diff -Nru libtemplate-declare-perl-0.47/debian/patches/html-lint.patch libtemplate-declare-perl-0.47/debian/patches/html-lint.patch --- libtemplate-declare-perl-0.47/debian/patches/html-lint.patch 1970-01-01 00:00:00.000000000 +0000 +++ libtemplate-declare-perl-0.47/debian/patches/html-lint.patch 2017-11-21 17:50:27.000000000 +0000 @@ -0,0 +1,92 @@ +Description: fix or workaround test failures with newer HTML::Lint + - t/utils.t: add missing $lint->eof() and filter out "doc-tag-required" errors + - t/utf8.t: skip lint checks, HTML::Lint has Unicode problems: + https://github.com/petdance/html-lint/issues/11 +Origin: vendor +Bug: https://rt.cpan.org/Ticket/Display.html?id=119731 +Forwarded: https://rt.cpan.org/Ticket/Display.html?id=119731 +Author: gregor herrmann +Last-Update: 2017-11-20 + +--- a/t/utf8.t ++++ b/t/utf8.t +@@ -24,14 +24,14 @@ + + 1; + +-use Test::More tests => 12; ++use Test::More tests => 6; + require "t/utils.pl"; + + { + my $simple = (show('simple_outs')); + ok($simple =~ m{^\s*$str\s*$}s); + # diag ($simple); +- ok_lint($simple); ++ #ok_lint($simple); + } + Template::Declare->buffer->clear; + +@@ -39,21 +39,21 @@ + my $simple = (show('double_outs')); + ok($simple =~ m{^\s*$str\s*$str\s*$}s); + # diag ($simple); +- ok_lint($simple); ++ #ok_lint($simple); + } + Template::Declare->buffer->clear; + + { + my $simple = (show('tag_outs')); + ok($simple =~ m{^\s*

\s*$str\s*

\s*$}s); +- ok_lint($simple, 1); ++ #ok_lint($simple, 1); + } + Template::Declare->buffer->clear; + + { + my $simple = (show('double_tag_outs')); + ok($simple =~ m{^\s*

\s*$str\s*

\s*

\s*$str\s*

\s*$}s); +- ok_lint($simple, 1); ++ #ok_lint($simple, 1); + } + Template::Declare->buffer->clear; + +@@ -61,7 +61,7 @@ + my $simple = (show('attr')); + ok($simple =~ m{^\s*

\s*$}s); + # diag ($simple); +- ok_lint($simple); ++ #ok_lint($simple); + } + Template::Declare->buffer->clear; + +@@ -69,7 +69,7 @@ + my $simple = (show('attr_with_escape')); + ok($simple =~ m{^\s*

\s*$}s); + #diag ($simple); +- ok_lint($simple); ++ #ok_lint($simple); + } + Template::Declare->buffer->clear; + +--- a/t/utils.pl ++++ b/t/utils.pl +@@ -15,11 +15,13 @@ + do { + local $SIG{__WARN__} = sub {}; # STFU HTML::Lint! + $lint->parse($html); ++ $lint->eof(); + }; +- # Collect the errors, ignore the invalid character errors when requested. +- my @errors = $ignore_chars +- ? grep { $_->errcode ne 'text-use-entity' } $lint->errors +- : $lint->errors; ++ # Collect the errors, ignore the doc-level errors, and invalid character errors when requested. ++ my @errors = grep { $_->errcode ne 'doc-tag-required' } $lint->errors; ++ @errors = $ignore_chars ++ ? grep { $_->errcode ne 'text-use-entity' } @errors ++ : @errors; + is( @errors, 0, "Lint checked clean" ); + foreach my $error ( @errors ) { + diag( $error->as_string ); diff -Nru libtemplate-declare-perl-0.47/debian/patches/series libtemplate-declare-perl-0.47/debian/patches/series --- libtemplate-declare-perl-0.47/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ libtemplate-declare-perl-0.47/debian/patches/series 2017-11-21 17:50:27.000000000 +0000 @@ -0,0 +1 @@ +html-lint.patch