diff -Nru libvideo-fourcc-info-perl-1.005/debian/changelog libvideo-fourcc-info-perl-1.005/debian/changelog --- libvideo-fourcc-info-perl-1.005/debian/changelog 2015-06-07 20:43:39.000000000 +0000 +++ libvideo-fourcc-info-perl-1.005/debian/changelog 2016-10-21 17:17:43.000000000 +0000 @@ -1,3 +1,24 @@ +libvideo-fourcc-info-perl (1.005-4) unstable; urgency=medium + + * Team upload. + + [ gregor herrmann ] + * Rename autopkgtest configuration file(s) as per new pkg-perl- + autopkgtest schema. + + [ 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! + * Add patch to fix SQLite VACUUM command. + Thanks to Lucas Nussbaum for the bug report. (Closes: #841562) + * Bump debhelper compatibility level to 9. + * Declare compliance with Debian Policy 3.9.8. + + -- gregor herrmann Fri, 21 Oct 2016 19:17:43 +0200 + libvideo-fourcc-info-perl (1.005-3) unstable; urgency=medium * Team upload diff -Nru libvideo-fourcc-info-perl-1.005/debian/compat libvideo-fourcc-info-perl-1.005/debian/compat --- libvideo-fourcc-info-perl-1.005/debian/compat 2013-06-28 05:49:39.000000000 +0000 +++ libvideo-fourcc-info-perl-1.005/debian/compat 2016-10-21 17:17:43.000000000 +0000 @@ -1 +1 @@ -8 +9 diff -Nru libvideo-fourcc-info-perl-1.005/debian/control libvideo-fourcc-info-perl-1.005/debian/control --- libvideo-fourcc-info-perl-1.005/debian/control 2015-06-07 20:21:47.000000000 +0000 +++ libvideo-fourcc-info-perl-1.005/debian/control 2016-10-21 17:17:43.000000000 +0000 @@ -1,11 +1,10 @@ Source: libvideo-fourcc-info-perl Maintainer: Debian Perl Group -Uploaders: Jonathan Yu , - Dominic Hargreaves +Uploaders: Dominic Hargreaves Section: perl Testsuite: autopkgtest-pkg-perl Priority: optional -Build-Depends: debhelper (>= 8), +Build-Depends: debhelper (>= 9), libmodule-build-perl Build-Depends-Indep: libdatetime-perl, libdbd-sqlite3-perl, @@ -13,9 +12,9 @@ libtest-nowarnings-perl, libtest-without-module-perl, perl -Standards-Version: 3.9.6 +Standards-Version: 3.9.8 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libvideo-fourcc-info-perl.git -Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libvideo-fourcc-info-perl.git +Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libvideo-fourcc-info-perl.git Homepage: https://metacpan.org/release/Video-FourCC-Info Package: libvideo-fourcc-info-perl diff -Nru libvideo-fourcc-info-perl-1.005/debian/copyright libvideo-fourcc-info-perl-1.005/debian/copyright --- libvideo-fourcc-info-perl-1.005/debian/copyright 2014-04-11 20:26:59.000000000 +0000 +++ libvideo-fourcc-info-perl-1.005/debian/copyright 2016-10-21 17:17:43.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: Video-FourCC-Info Upstream-Contact: Jonathan Yu Source: https://metacpan.org/release/Video-FourCC-Info diff -Nru libvideo-fourcc-info-perl-1.005/debian/patches/series libvideo-fourcc-info-perl-1.005/debian/patches/series --- libvideo-fourcc-info-perl-1.005/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ libvideo-fourcc-info-perl-1.005/debian/patches/series 2016-10-21 17:17:43.000000000 +0000 @@ -0,0 +1 @@ +sqlite3-vacuum.patch diff -Nru libvideo-fourcc-info-perl-1.005/debian/patches/sqlite3-vacuum.patch libvideo-fourcc-info-perl-1.005/debian/patches/sqlite3-vacuum.patch --- libvideo-fourcc-info-perl-1.005/debian/patches/sqlite3-vacuum.patch 1970-01-01 00:00:00.000000000 +0000 +++ libvideo-fourcc-info-perl-1.005/debian/patches/sqlite3-vacuum.patch 2016-10-21 17:17:43.000000000 +0000 @@ -0,0 +1,28 @@ +Description: Fix SQLite error "unknown database fourcc" + VACCUM either needs no argument, or a schema name of an attached database since SQLite 3.15. + "fourcc" is neither, the database name is "main". + . + From https://sqlite.org/lang_vacuum.html: + . + Compatibility Warning: The ability to vacuum attached databases was added + in version 3.15.0 (2016-10-14). Prior to that, a schema-name added to the + VACUUM statement would be silently ignored and the "main" schema would be + vacuumed. +Origin: vendor +Bug-Debian: https://bugs.debian.org/841562 +Author: gregor herrmann +Last-Update: 2016-10-21 +Forwarded: https://rt.cpan.org/Ticket/Display.html?id=118459 +Bug: https://rt.cpan.org/Ticket/Display.html?id=118459 + +--- a/inc/My/Builder.pm ++++ b/inc/My/Builder.pm +@@ -74,7 +74,7 @@ + + # Vacuum the resulting database + print "Optimizing database\n"; +- $dbh->do('VACUUM fourcc'); ++ $dbh->do('VACUUM'); + + print "Writing database\n"; + $dbh->disconnect; diff -Nru libvideo-fourcc-info-perl-1.005/debian/tests/pkg-perl/skip-smoke libvideo-fourcc-info-perl-1.005/debian/tests/pkg-perl/skip-smoke --- libvideo-fourcc-info-perl-1.005/debian/tests/pkg-perl/skip-smoke 2015-06-07 20:39:38.000000000 +0000 +++ libvideo-fourcc-info-perl-1.005/debian/tests/pkg-perl/skip-smoke 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -t/99data.t diff -Nru libvideo-fourcc-info-perl-1.005/debian/tests/pkg-perl/smoke-skip libvideo-fourcc-info-perl-1.005/debian/tests/pkg-perl/smoke-skip --- libvideo-fourcc-info-perl-1.005/debian/tests/pkg-perl/smoke-skip 1970-01-01 00:00:00.000000000 +0000 +++ libvideo-fourcc-info-perl-1.005/debian/tests/pkg-perl/smoke-skip 2016-10-21 17:17:43.000000000 +0000 @@ -0,0 +1 @@ +t/99data.t