diff -Nru libclass-dbi-plugin-type-perl-0.02/debian/changelog libclass-dbi-plugin-type-perl-0.02/debian/changelog --- libclass-dbi-plugin-type-perl-0.02/debian/changelog 2019-01-23 17:59:37.000000000 +0000 +++ libclass-dbi-plugin-type-perl-0.02/debian/changelog 2022-01-17 23:07:59.000000000 +0000 @@ -1,3 +1,28 @@ +libclass-dbi-plugin-type-perl (0.02-10) unstable; urgency=medium + + * Team upload. + + [ Debian Janitor ] + * Bump debhelper from old 11 to 12. + * Set debhelper-compat version in Build-Depends. + * Update standards version to 4.4.1, no changes needed. + + [ gregor herrmann ] + * debian/watch: use uscan version 4. + + [ Debian Janitor ] + * Update standards version to 4.5.0, no changes needed. + * Bump debhelper from old 12 to 13. + * Update standards version to 4.5.1, no changes needed. + + [ gregor herrmann ] + * Add patch to fix test failures with SQLite 3.37.0. (Closes: #1003896) + * Declare compliance with Debian Policy 4.6.0. + * Set Rules-Requires-Root: no. + * Annotate test-only build dependencies with . + + -- gregor herrmann Tue, 18 Jan 2022 00:07:59 +0100 + libclass-dbi-plugin-type-perl (0.02-9) unstable; urgency=medium * Team upload. diff -Nru libclass-dbi-plugin-type-perl-0.02/debian/compat libclass-dbi-plugin-type-perl-0.02/debian/compat --- libclass-dbi-plugin-type-perl-0.02/debian/compat 2019-01-23 17:59:37.000000000 +0000 +++ libclass-dbi-plugin-type-perl-0.02/debian/compat 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -11 diff -Nru libclass-dbi-plugin-type-perl-0.02/debian/control libclass-dbi-plugin-type-perl-0.02/debian/control --- libclass-dbi-plugin-type-perl-0.02/debian/control 2019-01-23 17:59:37.000000000 +0000 +++ libclass-dbi-plugin-type-perl-0.02/debian/control 2022-01-17 23:07:59.000000000 +0000 @@ -4,14 +4,15 @@ Section: perl Testsuite: autopkgtest-pkg-perl Priority: optional -Build-Depends: debhelper (>= 11) -Build-Depends-Indep: perl, - libclass-dbi-perl, - libdbd-sqlite3-perl -Standards-Version: 4.3.0 +Build-Depends: debhelper-compat (= 13) +Build-Depends-Indep: libclass-dbi-perl , + libdbd-sqlite3-perl , + perl +Standards-Version: 4.6.0 Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libclass-dbi-plugin-type-perl Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libclass-dbi-plugin-type-perl.git Homepage: https://metacpan.org/release/Class-DBI-Plugin-Type +Rules-Requires-Root: no Package: libclass-dbi-plugin-type-perl Architecture: all diff -Nru libclass-dbi-plugin-type-perl-0.02/debian/patches/series libclass-dbi-plugin-type-perl-0.02/debian/patches/series --- libclass-dbi-plugin-type-perl-0.02/debian/patches/series 2019-01-23 17:59:37.000000000 +0000 +++ libclass-dbi-plugin-type-perl-0.02/debian/patches/series 2022-01-17 23:07:59.000000000 +0000 @@ -1 +1,2 @@ 0001-Fix-compatibility-with-DBD-SQLite-1.61_02.patch +SQLite-3.37.0.patch diff -Nru libclass-dbi-plugin-type-perl-0.02/debian/patches/SQLite-3.37.0.patch libclass-dbi-plugin-type-perl-0.02/debian/patches/SQLite-3.37.0.patch --- libclass-dbi-plugin-type-perl-0.02/debian/patches/SQLite-3.37.0.patch 1970-01-01 00:00:00.000000000 +0000 +++ libclass-dbi-plugin-type-perl-0.02/debian/patches/SQLite-3.37.0.patch 2022-01-17 23:07:59.000000000 +0000 @@ -0,0 +1,29 @@ +Description: Fix test failures with SQLite 3.37.0 + # Failed test 'notes is text' + # at t/1.t line 28. + # 'TEXT' + # doesn't match '(?^:text|blob)' + # Failed test 'id is integer' + # at t/1.t line 31. + # 'INT' + # doesn't match '(?^:^int)' +Origin: vendor +Author: gregor herrmann +Last-Update: 2022-01-18 +Bug-Debian: https://bugs.debian.org/1003896 +Forwarded: https://rt.cpan.org/Ticket/Display.html?id=140750 +Bug: https://rt.cpan.org/Ticket/Display.html?id=140750 + +--- a/t/1.t ++++ b/t/1.t +@@ -25,8 +25,8 @@ + )"); + DBI::Test->table("test"); + use_ok('Class::DBI::Plugin::Type'); +-like(DBI::Test->column_type("notes"), qr/text|blob/, "notes is text"); ++like(DBI::Test->column_type("notes"), qr/text|blob/i, "notes is text"); + is(DBI::Test->column_type("tasted"), "date", "tasted is a date"); + like(DBI::Test->column_type("price"), qr/^decimal/, "price is decimal"); +-like(DBI::Test->column_type("id"), qr/^int/, "id is integer"); ++like(DBI::Test->column_type("id"), qr/^int/i, "id is integer"); + like(DBI::Test->column_type("name"), qr/^varchar/, "name is varchar"); diff -Nru libclass-dbi-plugin-type-perl-0.02/debian/watch libclass-dbi-plugin-type-perl-0.02/debian/watch --- libclass-dbi-plugin-type-perl-0.02/debian/watch 2019-01-23 17:59:37.000000000 +0000 +++ libclass-dbi-plugin-type-perl-0.02/debian/watch 2022-01-17 23:07:59.000000000 +0000 @@ -1,3 +1,3 @@ -version=3 +version=4 opts="uversionmangle=s/(\d)[\-_]?(rc\d+|pre-rc\d+|pre\d+a?)$/$1~$2/;s/[\-\.](source|src|orig|unix)$//;s/^(\d{8})/0.0.$1/;s/-(bin|osx)$/~$1/;s/^v(\d)/$1/;" \ -https://metacpan.org/release/Class-DBI-Plugin-Type .*/Class-DBI-Plugin-Type-v?(\d[\d.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ +https://metacpan.org/release/Class-DBI-Plugin-Type .*/Class-DBI-Plugin-Type-v?@ANY_VERSION@@ARCHIVE_EXT@$