Version in base suite: 1.65-1 Base version: libfinance-quote-perl_1.65-1 Target version: libfinance-quote-perl_1.65-1+deb13u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/libf/libfinance-quote-perl/libfinance-quote-perl_1.65-1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/libf/libfinance-quote-perl/libfinance-quote-perl_1.65-1+deb13u1.dsc changelog | 8 ++++++++ patches/series | 1 + patches/xetra-date.patch | 27 +++++++++++++++++++++++++++ 3 files changed, 36 insertions(+) dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmplotpuo40/libfinance-quote-perl_1.65-1.dsc: no acceptable signature found dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmplotpuo40/libfinance-quote-perl_1.65-1+deb13u1.dsc: no acceptable signature found diff -Nru libfinance-quote-perl-1.65/debian/changelog libfinance-quote-perl-1.65/debian/changelog --- libfinance-quote-perl-1.65/debian/changelog 2025-05-16 14:03:06.000000000 +0000 +++ libfinance-quote-perl-1.65/debian/changelog 2026-04-06 16:53:21.000000000 +0000 @@ -1,3 +1,11 @@ +libfinance-quote-perl (1.65-1+deb13u1) trixie; urgency=medium + + * Team upload. + * xetra-date.patch: new patch, fixes date in quotes retrieved from XETRA + source (Closes: #1132870) + + -- Sébastien Villemot Mon, 06 Apr 2026 18:53:21 +0200 + libfinance-quote-perl (1.65-1) unstable; urgency=medium * Import upstream version 1.65. diff -Nru libfinance-quote-perl-1.65/debian/patches/series libfinance-quote-perl-1.65/debian/patches/series --- libfinance-quote-perl-1.65/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ libfinance-quote-perl-1.65/debian/patches/series 2026-04-06 16:53:21.000000000 +0000 @@ -0,0 +1 @@ +xetra-date.patch diff -Nru libfinance-quote-perl-1.65/debian/patches/xetra-date.patch libfinance-quote-perl-1.65/debian/patches/xetra-date.patch --- libfinance-quote-perl-1.65/debian/patches/xetra-date.patch 1970-01-01 00:00:00.000000000 +0000 +++ libfinance-quote-perl-1.65/debian/patches/xetra-date.patch 2026-04-06 16:53:21.000000000 +0000 @@ -0,0 +1,27 @@ +Description: Fix date in quotes retrieved from XETRA source +Origin: upstream, https://github.com/finance-quote/finance-quote/commit/2c4877d79b8a80098d2a52ec5f6df2d7d28d421b +Bug: https://github.com/finance-quote/finance-quote/issues/556 +Bug-Debian: https://bugs.debian.org/1132870 +Reviewed-by: Sébastien Villemot +Last-Update: 2026-04-06 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- a/lib/Finance/Quote/XETRA.pm ++++ b/lib/Finance/Quote/XETRA.pm +@@ -20,6 +20,7 @@ package Finance::Quote::XETRA; + use strict; + use warnings; + use HTML::Entities; ++use String::Util qw(trim); + + use constant DEBUG => $ENV{DEBUG}; + use if DEBUG, 'Smart::Comments'; +@@ -102,7 +103,7 @@ sub xetra { + + $td1 = ($lastvalue->look_down('_tag'=>'td'))[7]; + @child = $td1->content_list; +- my $date = substr($child[0], 0, 8); ++ my $date = substr(trim($child[0]), 0, 8); + + $td1 = ($lastvalue->look_down('_tag'=>'td'))[9]; + @child = $td1->content_list;