Package: release.debian.org Severity: normal Tags: buster User: release.debian....@packages.debian.org Usertags: pu X-Debbugs-Cc: Debian Perl Group <pkg-perl-maintain...@lists.alioth.debian.org>
* Add patch to fix FTBFS after 09 Jun 2021. (Closes: #991649)
diff -Nru libhttp-cookiejar-perl-0.008/debian/changelog libhttp-cookiejar-perl-0.008/debian/changelog --- libhttp-cookiejar-perl-0.008/debian/changelog 2015-11-08 19:01:33.000000000 +0200 +++ libhttp-cookiejar-perl-0.008/debian/changelog 2022-08-26 19:58:25.000000000 +0300 @@ -1,3 +1,10 @@ +libhttp-cookiejar-perl (0.008-1+deb10u1) buster; urgency=medium + + * Non-maintainer upload. + * Add patch to fix FTBFS after 09 Jun 2021. (Closes: #991649) + + -- Adrian Bunk <b...@debian.org> Fri, 26 Aug 2022 19:58:25 +0300 + libhttp-cookiejar-perl (0.008-1) unstable; urgency=medium * Import upstream version 0.008. diff -Nru libhttp-cookiejar-perl-0.008/debian/patches/postpone-test-expiry.patch libhttp-cookiejar-perl-0.008/debian/patches/postpone-test-expiry.patch --- libhttp-cookiejar-perl-0.008/debian/patches/postpone-test-expiry.patch 1970-01-01 02:00:00.000000000 +0200 +++ libhttp-cookiejar-perl-0.008/debian/patches/postpone-test-expiry.patch 2022-08-26 19:58:12.000000000 +0300 @@ -0,0 +1,21 @@ +Description: postpone expiry dates in test suites to 2041 +Author: David Golden +Origin: upstream, https://github.com/dagolden/HTTP-CookieJar/commit/7a3b9b163526784bf18a69172df736d190c15940 +Bug: https://github.com/dagolden/HTTP-CookieJar/issues/11 +Bug-Debian: https://bugs.debian.org/991649 +Applied-Upstream: 0.011 +Reviewed-by: Étienne Mollier <emoll...@debian.org> +Last-Update: 2021-07-29 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- libhttp-cookiejar-perl.orig/t/examples.t ++++ libhttp-cookiejar-perl/t/examples.t +@@ -38,7 +38,7 @@ + + subtest "expiration" => sub { + $jar->clear; +- $jar->add( $req, "lang=en-US; Expires=Wed, 09 Jun 2021 10:18:14 GMT" ); ++ $jar->add( $req, "lang=en-US; Expires=Sun, 09 Jun 2041 10:18:14 GMT" ); + is( $jar->cookie_header($req), "lang=en-US" ); + $jar->add( $req, "lang=; Expires=Sun, 06 Nov 1994 08:49:37 GMT" ); + is( $jar->cookie_header($req), "" ); diff -Nru libhttp-cookiejar-perl-0.008/debian/patches/series libhttp-cookiejar-perl-0.008/debian/patches/series --- libhttp-cookiejar-perl-0.008/debian/patches/series 1970-01-01 02:00:00.000000000 +0200 +++ libhttp-cookiejar-perl-0.008/debian/patches/series 2021-07-29 20:12:41.000000000 +0300 @@ -0,0 +1 @@ +postpone-test-expiry.patch