Bug#1065376: bookworm-pu: package libxml-stream-perl/1.24-4+deb12u1

2024-03-03 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bookworm
X-Debbugs-Cc: libxml-stream-p...@packages.debian.org
Control: affects -1 + src:libxml-stream-perl
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libxml-stream-perl/1.24-4+deb12u1 to bookworm in order
to fix #1064058.

The upload contains the same patch which is in unstable (and testing)
since 2 weeks.

The patch adjusts the code to a change in IO-Socket-SSL 2.078
regarding hostname verificaton; without this change, SSL connections
with libxml-stream-perl are broken, which also breaks libnet-xmpp-perl
and all users of libnet-xmpp-perl like sendxmpp (cf. the merged
bugs).

Complete debdiff attached (please note that the only relevant part
are the 3 lines in lib/XML/Stream.pm, as the tests are not run during
package build in Debian)


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmXklDdfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgZxJBAAvYW8KRtJkFGjw9HegALvoKjjOKNTupQIXGXWkUESmXIb/fbWii0CE7k6
8rwMV6ujsnHIZyT51kua9JGGMy36MWi9+sRq2dOVeYamCwPjF/x/iZgOJT8W9n3A
M+bVNaYhtgW1YOrRVcfBRRopPhEqWlhk1K7zuzOr+N4j+5vK9RoJSQzpCuLtIiD7
Jhs9r0Bspox3Xl0MQNrvZKrlNjFgZseo8UyzgBhwh3O1+KdZr5HZZb/p1Br0GZ+P
Dfvr4ZWnm2KVd2c0GvirBDSv1KdetOnieqCUrqHRtfNn5AftUhIXEEUN1EGfrE1s
mv2MYq5t0ygFRf6EJyrQ3nEde/FwyjHmRmuoHRqiRA2DPrq1yNe4QFrUBV2ylJ1X
kCfipKKEeXSyqOmD6whqmTvPbXtMVjckVeQV/J/NlWqULQ24pIsLyfmKebFmQ8bW
3pPeeXlkCDVAcpYBWNtKFtybllyc0i7UKzEznugkSqZiPk3uCEASDovizmuw0SBq
T55M9PGILDyvhCTyrhaHMlt3xJ6pAT8o6EB5fKM9GI9lxoNMEJ+eHMRdbuA8B1s8
BtC+CrK5NuA7chTwBUBYU18BZLzTibC1VxhOafuSy2cbimKVf6x41wgLn6+xenta
JaJmQBPEUtdkwEnl5tyMjoxUqFhyyVTwqAlFcYzEdqMmilYXOU0=
=1lnC
-END PGP SIGNATURE-
diff -Nru libxml-stream-perl-1.24/debian/changelog 
libxml-stream-perl-1.24/debian/changelog
--- libxml-stream-perl-1.24/debian/changelog2021-01-20 18:34:25.0 
+0100
+++ libxml-stream-perl-1.24/debian/changelog2024-03-03 16:02:42.0 
+0100
@@ -1,3 +1,13 @@
+libxml-stream-perl (1.24-4+deb12u1) bookworm; urgency=medium
+
+  * Team upload.
+  * Add Set_SSL_verifycn_name_parameter_to_fix_hostname_verification.patch
+to adjust to IO::Socket::SSL >= 2.078.
+Thanks to Manfred Stock for the bug report and the patch.
+(Closes: #1064058)
+
+ -- gregor herrmann   Sun, 03 Mar 2024 16:02:42 +0100
+
 libxml-stream-perl (1.24-4) unstable; urgency=medium
 
   * Team upload.
diff -Nru 
libxml-stream-perl-1.24/debian/patches/Set_SSL_verifycn_name_parameter_to_fix_hostname_verification.patch
 
libxml-stream-perl-1.24/debian/patches/Set_SSL_verifycn_name_parameter_to_fix_hostname_verification.patch
--- 
libxml-stream-perl-1.24/debian/patches/Set_SSL_verifycn_name_parameter_to_fix_hostname_verification.patch
   1970-01-01 01:00:00.0 +0100
+++ 
libxml-stream-perl-1.24/debian/patches/Set_SSL_verifycn_name_parameter_to_fix_hostname_verification.patch
   2024-03-03 16:02:42.0 +0100
@@ -0,0 +1,85 @@
+From 7d3de1e8afe7eb46d7bda336fb1f54d3b75f4e6d Mon Sep 17 00:00:00 2001
+From: Manfred Stock 
+Date: Fri, 16 Feb 2024 10:45:43 +0100
+Subject: [PATCH] Set SSL_verifycn_name parameter to fix hostname verification
+
+IO-Socket-SSL 2.078 reverted a "decision from 2014 to not verify
+hostname by default if hostname is IP address but no explicit
+verification scheme given" [1]. Since start_SSL uses SSL_verifycn_name
+or SSL_hostname when verifying the hostname and falls back to the IP
+address of the peer if neither of them are set, the hostname
+verification failed with newer versions of IO-Socket-SSL even if the
+certificate presented by the peer was valid.
+
+Passing SSL_verifycn_name to start_SSL fixes this issue. The logic to
+determine the parameter value is based on my current understanding of
+[2] and thus uses the same logic that is also used in OpenStream to
+determine the 'to' address in the initial stream header.
+
+[1]: 
https://github.com/noxxi/p5-io-socket-ssl/commit/c0a063b70f0a3ad033da0a51923c65bd2ff118a0
+[2]: https://datatracker.ietf.org/doc/html/rfc6120#section-13.7.2.1
+
+
+Bug: https://github.com/dap/XML-Stream/pull/28
+Bug-Debian: https://bugs.debian.org/1064058
+
+---
+ lib/XML/Stream.pm |  3 +++
+ t/tcpip2ssl.t | 21 +
+ 2 files changed, 20 insertions(+), 4 deletions(-)
+
+--- a/lib/XML/Stream.pm
 b/lib/XML/Stream.pm
+@@ -632,6 +632,9 @@
+ {
+ my %ssl_params = (
+ SSL_verify_mode => $self->{SIDS}->{newconnection}->{ssl_verify},
++SSL_verifycn_name => $self->{SIDS}->{newconnection}->{to}
++? $self->{SIDS}->{newconnection}->{to}
++: $self->{SIDS}->{newconnection}->{hostname},
+ );
+ 
+ if ( 0x00 != $self->{SIDS}->{newconnection}->{ssl_verify} )
+--- a/t/tcpip2ssl.t

Bug#1062686: bookworm-pu: package libdatetime-timezone-perl/1:2.60-1+2024a

2024-02-02 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bookworm
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: libdatetime-timezone-p...@packages.debian.org
Control: affects -1 + src:libdatetime-timezone-perl

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.60-1+2024a to bookworm.

It contains the data from the Olson DB release 2024a as a new quilt
patch.

Changes in the timezone data, taken from the tzdata upstream release:

Kazakhstan unifies on UTC+5 beginning 2024-03-01.
Palestine springs forward a week later after Ramadan.

Kazakhstan unifies on UTC+5.  This affects Asia/Almaty and
Asia/Qostanay which together represent the eastern portion of the
country that will transition from UTC+6 on 2024-03-01 at 00:00 to
join the western portion.  (Thanks to Zhanbolat Raimbekov.)

Palestine springs forward a week later than previously predicted
in 2024 and 2025.  (Thanks to Heba Hamad.)  Change spring-forward
predictions to the second Saturday after Ramadan, not the first;
this also affects other predictions starting in 2039.

Manually stripped down debdiff attached.

If possible, it would be nice to get this into the upcoming point
release.


Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmW9MChfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgZ2XRAAlXUujeRvDiZm+GNu3uHJMArQLIBRjnLMP6EtWYZJEH+vu2j0TF/G2LUY
phrqe0zpJrZs62ZuX/3OuwWGeZ7lwyllssQl4jdB4l1sYlEoLX9ATJqmvA+otI97
zI21oNafatZTD1O0Fnt5O+WPxGQCfSb4q2hzgxbLG6PrVcp2/gMQAcDNi+s2lWca
6dUnvft6SQVhPIS55sCF+g99B8Lm9FEzPQHyRU9MaegqRbtpDgEQsviO4ZF0/z5U
GFHwMRLYkzXPYnOIlulgL75Jk6W6Qaqapt9T1+dq43XYowF5VzTc0F0OPXHaEmLw
b2AN/lQOrojVf/XcM5ohzO0+AE9lm9bvObVxofJ0tqHQpQJyV3tok5yBUVbe3Ba9
bFZWUyxmfzri7p0AaX2dDYPQJe1cYVS5ts0Nmpr8D13Mr7fpDppDV6+Di4h9wWv0
p44eiSKaiRn95yCmhu9x1JQj4+ENbRWwpZMlpyRql5cTjhQJ+P3L5ha6cWkxdOKI
bTmchUiNO6hZSB6VlA/uWb3TzrmY1CUWkW2HsEt/lka7+5gpRqqwdQaUD0R9PgAc
UKjnea+B6Z2UHHTF0SU0KqDVqgoD7gQk73LUHCnjGCupGVTJEPe4jspflEe2+AH+
brZUTS4ljYmiahNKkU24Q5c1PG3XSN6OBWAkMHtdUtkxe3tnERU=
=DwiJ
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.60/debian/changelog 
libdatetime-timezone-perl-2.60/debian/changelog
--- libdatetime-timezone-perl-2.60/debian/changelog 2023-12-23 
01:27:56.0 +0100
+++ libdatetime-timezone-perl-2.60/debian/changelog 2024-02-02 
18:59:53.0 +0100
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.60-1+2024a) bookworm; urgency=medium
+
+  * Update data to Olson database version 2024a.
+This update contains contemporary changes for Kazakhstan and Palestine.
+
+ -- gregor herrmann   Fri, 02 Feb 2024 18:59:53 +0100
+
 libdatetime-timezone-perl (1:2.60-1+2023d) bookworm; urgency=medium
 
   * Update data to Olson database version 2023d.
diff -Nru libdatetime-timezone-perl-2.60/debian/patches/olson-2024a 
libdatetime-timezone-perl-2.60/debian/patches/olson-2024a
--- libdatetime-timezone-perl-2.60/debian/patches/olson-2024a   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.60/debian/patches/olson-2024a   2024-02-02 
18:59:53.0 +0100
@@ -0,0 +1,12415 @@
+Description: Update to Olson DB 2024a
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2024-02-02
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2023d
++# Generated from debian/tzdata/africa.  Olson data version 2024a
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,11 +43,11 @@
+ ],
+ ];
+ 
+-sub olson_version {'2023d'}
++sub olson_version {'2024a'}
+ 
+ sub has_dst_changes {0}
+ 
+-sub _max_year {2033}
++sub _max_year {2034}
+ 
+ sub _new_instance {
+ return shift->_init( @_, spans => $spans );
+--- a/lib/DateTime/TimeZone/Asia/Almaty.pm
 b/lib/DateTime/TimeZone/Asia/Almaty.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/asia.  Olson data version 2023d
++# Generated from debian/tzdata/asia.  Olson data version 2024a
+ #
+ # Do not edit this file directly.
+ #
+@@ -484,20 +484,29 @@
+ ],
+ [
+ 63234849600, #utc_start 2004-10-30 20:00:00 (Sat)
+-DateTime::TimeZone::INFINITY, #  utc_end
++63844912800, #  utc_end 2024-02-29 18:00:00 (Thu)
+ 63234871200, #  local_start 2004-10-31 02:00:00 (Sun)
+-DateTime::TimeZone::INFINITY, #local_end
++63844934400, #local_end 2024-03-01 00:00:00 (Fri)
+ 21600,
+ 0,
+ '+06',
+ ],
++[
++63844912800, #utc_start 2024-02-29 18:00:00 (Thu)
++DateTime::TimeZone::INFINITY, #  utc_end
++63844930800, #  local_start 2024-02-29 23:00:00 (Thu)
++DateTime::TimeZone::INFINITY, #local_end
++18000,
++0,

Bug#1062685: bullseye-pu: package libdatetime-timezone-perl/1:2.47-1+2024a

2024-02-02 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: libdatetime-timezone-p...@packages.debian.org
Control: affects -1 + src:libdatetime-timezone-perl

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.47-1+2024a to bullseye.

It contains the data from the Olson DB release 2024a as a new quilt
patch.

Changes in the timezone data, taken from the tzdata upstream release:

Kazakhstan unifies on UTC+5 beginning 2024-03-01.
Palestine springs forward a week later after Ramadan.

Kazakhstan unifies on UTC+5.  This affects Asia/Almaty and
Asia/Qostanay which together represent the eastern portion of the
country that will transition from UTC+6 on 2024-03-01 at 00:00 to
join the western portion.  (Thanks to Zhanbolat Raimbekov.)

Palestine springs forward a week later than previously predicted
in 2024 and 2025.  (Thanks to Heba Hamad.)  Change spring-forward
predictions to the second Saturday after Ramadan, not the first;
this also affects other predictions starting in 2039.

Manually stripped down debdiff attached.

If possible, it would be nice to get this into the upcoming point
release.


Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmW9MCZfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYHRBAAp/bDs3BJ8P6M1+hAwJnM2SXMsNquJBWVar3SJEaA67wZHFcLgAp6Vx9N
4Fb/iJ4XeLTjZTm9ioU4SW+R4tsc7geg5pnocIJDm8JAB6odk7EZ33QXkXD7lE19
zMl06twBkfGXoOgXWPo89x6SlxIa90w0IOe5+OIZZy11zn1ojJxM13JpVwSj0EiK
g0dzHEdOHToxOjzORpl97p4oBp0qPp9N73Nl2WZhOVTrTEZ5aqahkqXQzHtdzlAE
sMmEoEPLsPwy2hqbdS2b1gv3JOpONmOKMURovX8Tax2sdgAZlB/P6MjjM9p+9ymn
iypiqeT2M6mXACI4SPQqa9ILAKasjA1QSUwoNl5XbJjllkOQybwbL/xp3nfNRGin
OBYvzvdQhgl7n90FsGLCrmVUpiP5wz2yA0RrVdksZ/lsNCannseVf+Gl6YJf+J6F
uWztkiK208ARR8H3LMHUHxR7UKoSzhyeIPIi9OGPGf6vgoQ41HhAZ0aGZ8BBRE9Y
0+cVCJmgqAp2UzRXT3E5g+s7m25H+O/kYK/wNVnlSJnGrY3IUiNs0nuAZYU67L/1
0Hzog6uOdEqRAgR+j+M44OULmjKfg+HwC1Ef3YH5aff4h8O8ZyuP5O/JBTzE8URu
UBvfJjevble5S5vR38DUn9aegi7aC4zbUtadnwK+nt1aBecJTaA=
=G4Mm
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.47/debian/changelog 
libdatetime-timezone-perl-2.47/debian/changelog
--- libdatetime-timezone-perl-2.47/debian/changelog 2023-12-23 
01:50:44.0 +0100
+++ libdatetime-timezone-perl-2.47/debian/changelog 2024-02-02 
18:51:35.0 +0100
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.47-1+2024a) bullseye; urgency=medium
+
+  * Update data to Olson database version 2024a.
+This update contains contemporary changes for Kazakhstan and Palestine.
+
+ -- gregor herrmann   Fri, 02 Feb 2024 18:51:35 +0100
+
 libdatetime-timezone-perl (1:2.47-1+2023d) bullseye; urgency=medium
 
   * Update data to Olson database version 2023d.
diff -Nru libdatetime-timezone-perl-2.47/debian/patches/olson-2024a 
libdatetime-timezone-perl-2.47/debian/patches/olson-2024a
--- libdatetime-timezone-perl-2.47/debian/patches/olson-2024a   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.47/debian/patches/olson-2024a   2024-02-02 
18:51:35.0 +0100
@@ -0,0 +1,12302 @@
+Description: Update to Olson DB 2024a
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2024-02-02
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2023d
++# Generated from debian/tzdata/africa.  Olson data version 2024a
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,11 +43,11 @@
+ ],
+ ];
+ 
+-sub olson_version {'2023d'}
++sub olson_version {'2024a'}
+ 
+ sub has_dst_changes {0}
+ 
+-sub _max_year {2033}
++sub _max_year {2034}
+ 
+ sub _new_instance {
+ return shift->_init( @_, spans => $spans );
+--- a/lib/DateTime/TimeZone/Asia/Almaty.pm
 b/lib/DateTime/TimeZone/Asia/Almaty.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/asia.  Olson data version 2023d
++# Generated from debian/tzdata/asia.  Olson data version 2024a
+ #
+ # Do not edit this file directly.
+ #
+@@ -484,20 +484,29 @@
+ ],
+ [
+ 63234849600, #utc_start 2004-10-30 20:00:00 (Sat)
+-DateTime::TimeZone::INFINITY, #  utc_end
++63844912800, #  utc_end 2024-02-29 18:00:00 (Thu)
+ 63234871200, #  local_start 2004-10-31 02:00:00 (Sun)
+-DateTime::TimeZone::INFINITY, #local_end
++63844934400, #local_end 2024-03-01 00:00:00 (Fri)
+ 21600,
+ 0,
+ '+06',
+ ],
++[
++63844912800, #utc_start 2024-02-29 18:00:00 (Thu)
++DateTime::TimeZone::INFINITY, #  utc_end
++63844930800, #  local_start 2024-02-29 23:00:00 (Thu)
++DateTime::TimeZone::INFINITY, #local_end
++18000,
++0,

Bug#1061579: bookworm-pu: package libspreadsheet-parsexlsx-perl/0.27-3+deb12u2

2024-01-26 Thread gregor herrmann
On Fri, 26 Jan 2024 20:53:01 +0100, gregor herrmann wrote:

> I've uploaded libspreadsheet-parsexlsx-perl/0.27-3+deb12u2 to
> bookworm to fix a non-DSA security bug: CVE-2024-22368 / #1061098 (XEE
> injection vulnerability).

Sorry, wrong CVE number, d/changelog and the patch correctly mention
CVE-2024-23525. 

Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at -- Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member VIBE!AT & SPI Inc. -- Supporter Free Software Foundation Europe
   `-   


signature.asc
Description: Digital Signature


Bug#1061578: bullseye-pu: package libspreadsheet-parsexlsx-perl/0.27-2.1+deb11u2

2024-01-26 Thread gregor herrmann
On Fri, 26 Jan 2024 20:52:59 +0100, gregor herrmann wrote:

> I've uploaded libspreadsheet-parsexlsx-perl/0.27-2.1+deb11u2 to
> bullseye to fix a non-DSA security bug: CVE-2024-22368 / #1061098 (XEE
> injection vulnerability).

Sorry, wrong CVE number, d/changelog and the patch correctly mention
CVE-2024-23525.

Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at -- Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member VIBE!AT & SPI Inc. -- Supporter Free Software Foundation Europe
   `-   


signature.asc
Description: Digital Signature


Bug#1061579: bookworm-pu: package libspreadsheet-parsexlsx-perl/0.27-3+deb12u2

2024-01-26 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bookworm
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: libspreadsheet-parsexlsx-p...@packages.debian.org
Control: affects -1 + src:libspreadsheet-parsexlsx-perl

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libspreadsheet-parsexlsx-perl/0.27-3+deb12u2 to
bookworm to fix a non-DSA security bug: CVE-2024-22368 / #1061098 (XEE
injection vulnerability).

The patch is just one line [0] and is taken from upstream Git / upstream
release 0.30. The fix is included in trixie and sid in 0.31-1 since a
couple of days.

Full debdiff against -deb12u1 in proposed-updates attached.


Thanks in advance,
gregor


[0]
+--- a/lib/Spreadsheet/ParseXLSX.pm
 b/lib/Spreadsheet/ParseXLSX.pm
+@@ -1107,6 +1107,7 @@
+ 
'http://schemas.openxmlformats.org/officeDocument/2006/relationships' => 'rels',
+ 'http://schemas.openxmlformats.org/drawingml/2006/main' => 
'drawmain',
+ },
++no_xxe => 1,
+ keep_original_prefix => 1,
+ %opts,
+ );

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmW0DZ1fFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYnrRAAt7GtL179slaqAf2G1bah9oAgwN6eEpMkl8KgNeo6psR+MiZKVhYh8NL2
qk/pmwQlrqfFIEpVVzXbTUxIeropvjqvo2nXrqQdth+BN4itB7bwzp665QQ34bAu
EJrcNzt3DbOf9mS+2xuYXVTMxQQnv/oskZrq3I0l+iA+BLm1InJdNJshCYYHeWMG
QWq0WlBkQQ9cx51D8EWPwytmDSLjNniURyi5rb+B+73LeavejIJnWBxcfIldh7YU
HUVUfbnjf7iXvOU2KmsLLXdW/yYFHQAFjhY/AYhXoZcs7n6A2D/CgMhz5ADumOE0
y/5AL9AZ+NEGZyPKkjJPdzNdwCmnRR9V7qm6aV3M0x0IE3CSEGXzvpjJp5lmKdj4
OyXYKu1/DoFPnpTmZs2bmfoHnHYzpQsTwr1fzw5dIirPTgoLFf7Cw9BOc4jBn2Ln
0VU77FawxPGv9oZe8DCYSbk//KeO+efn9J9G/ISXDGQEVMYKgxw7neLirqARypSl
RRrIKbyJS+YTz3dxs+mo9rz53NnoOiUu68wLA07QgUtKKz+U230c/aDI0HUQLAio
ItlGinQ1yhAsGyIkfuMBpfUfn3wcVfk5lapIu6855mVo4YBSEMhIz50GcsuSeK8t
1frXdy5bm4Df2PXVsAk5SuNGfbaWt2zs0t2AxLnN45+OTBPvCBE=
=hMLL
-END PGP SIGNATURE-
diff -Nru libspreadsheet-parsexlsx-perl-0.27/debian/changelog 
libspreadsheet-parsexlsx-perl-0.27/debian/changelog
--- libspreadsheet-parsexlsx-perl-0.27/debian/changelog 2024-01-12 
21:25:50.0 +0100
+++ libspreadsheet-parsexlsx-perl-0.27/debian/changelog 2024-01-26 
20:37:26.0 +0100
@@ -1,3 +1,13 @@
+libspreadsheet-parsexlsx-perl (0.27-3+deb12u2) bookworm; urgency=medium
+
+  * Team upload.
+  * Add a patch to fix an xml external entity (XEE) injection bug.
+[CVE-2024-23525]
+Patch taken from an upstream Git commit contained in the 0.30 release.
+(Closes: #1061098)
+
+ -- gregor herrmann   Fri, 26 Jan 2024 20:37:26 +0100
+
 libspreadsheet-parsexlsx-perl (0.27-3+deb12u1) bookworm; urgency=medium
 
   * Team upload.
diff -Nru 
libspreadsheet-parsexlsx-perl-0.27/debian/patches/CVE-2024-23525.patch 
libspreadsheet-parsexlsx-perl-0.27/debian/patches/CVE-2024-23525.patch
--- libspreadsheet-parsexlsx-perl-0.27/debian/patches/CVE-2024-23525.patch  
1970-01-01 01:00:00.0 +0100
+++ libspreadsheet-parsexlsx-perl-0.27/debian/patches/CVE-2024-23525.patch  
2024-01-26 20:37:26.0 +0100
@@ -0,0 +1,25 @@
+Description: Fix xml external entity (XEE) injection bug CVE-2024-23525
+Origin: upstream, commit 1d55f90, as released in 0.30
+Reviewed-by: gregor herrmann 
+Last-Update: 2024-01-26
+Bug-Debian: https://bugs.debian.org/1061098
+Bug: https://github.com/MichaelDaum/spreadsheet-parsexlsx/issues/10
+
+From 1d55f90caf433c7442e5be21a1849af2b5522ffe Mon Sep 17 00:00:00 2001
+From: Michael Daum 
+Date: Wed, 17 Jan 2024 12:31:20 +0100
+Subject: [PATCH] Fixed xml external entity (XEE) injection bug
+
+reported by @phvietan, fixes issue #10
+
+
+--- a/lib/Spreadsheet/ParseXLSX.pm
 b/lib/Spreadsheet/ParseXLSX.pm
+@@ -1107,6 +1107,7 @@
+ 
'http://schemas.openxmlformats.org/officeDocument/2006/relationships' => 'rels',
+ 'http://schemas.openxmlformats.org/drawingml/2006/main' => 
'drawmain',
+ },
++no_xxe => 1,
+ keep_original_prefix => 1,
+ %opts,
+ );
diff -Nru libspreadsheet-parsexlsx-perl-0.27/debian/patches/series 
libspreadsheet-parsexlsx-perl-0.27/debian/patches/series
--- libspreadsheet-parsexlsx-perl-0.27/debian/patches/series2024-01-12 
21:25:50.0 +0100
+++ libspreadsheet-parsexlsx-perl-0.27/debian/patches/series2024-01-26 
20:37:26.0 +0100
@@ -1,2 +1,3 @@
 001_fix-NAME-section-in-pod.patch
 CVE-2024-22368.patch
+CVE-2024-23525.patch


Bug#1061578: bullseye-pu: package libspreadsheet-parsexlsx-perl/0.27-2.1+deb11u2

2024-01-26 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: libspreadsheet-parsexlsx-p...@packages.debian.org
Control: affects -1 + src:libspreadsheet-parsexlsx-perl

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libspreadsheet-parsexlsx-perl/0.27-2.1+deb11u2 to
bullseye to fix a non-DSA security bug: CVE-2024-22368 / #1061098 (XEE
injection vulnerability).

The patch is just one line [0] and is taken from upstream Git / upstream
release 0.30. The fix is included in trixie and sid in 0.31-1 since a
couple of days.

Full debdiff against -deb11u1 in oldstable-proposed-updates attached.


Thanks in advance,
gregor


[0]
+--- a/lib/Spreadsheet/ParseXLSX.pm
 b/lib/Spreadsheet/ParseXLSX.pm
+@@ -1107,6 +1107,7 @@
+ 
'http://schemas.openxmlformats.org/officeDocument/2006/relationships' => 'rels',
+ 'http://schemas.openxmlformats.org/drawingml/2006/main' => 
'drawmain',
+ },
++no_xxe => 1,
+ keep_original_prefix => 1,
+ %opts,
+ );

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmW0DZtfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgapXxAAwg0HlPsrKMe+Bwrcu2qGEDcCH8V9pUgn0EwdYd+qNTt1FFlLZr4nVCHH
XxfkTr1gD7ed8lwfGq9Xjv+hvktvzT5VMlxqw+UjGcGjcBA6Y3cTgSLm8mKFkVpt
5g8vhDPnovHjctK6smA4vPe/n+VNvFj7RtIzZ3/MKC+WGeC+nxg7s2dMGpsQFWXU
7AaJ9JBWWPrcNYblXYsgjtgmJk0e/HB2ol17nga2YLT6MQW4St2qlrNzAIxJfB0t
sHni1ZF7qyX7Y8L+aDniS2H/cJZ7NEXPor1Dr0ukIY5L27d/+0J4vbDB2xqKTQg1
gkoN8YHUkhXbV/BhRlkaaHucRn0ZUn/4G8WH/Jb1h3LJmkMo7X9U08C11Q3hATM2
d4DnQqUvENjJnYyGNX1L7NoX3Qt5Z8BeIeM0wknFtp19r7h4S44TelkcsIQs8KJB
RM82AwImz7QCaT065MR/5OI/yJXAoT5Glb/k99bSYXThNqC3bGfqmHSOQoYkqwvR
m87NUc6sriWVgz90jfnmwC81/Hy3euoqOMjovT/DnaK+D9e44gmRwBELYEc8Mqhr
aw0j5QiN13fOFiiC7L8kzGyEVmeeNR7gwDabVfOZeM2RY8PHbqMyKT5VPzSqZuc8
q/998F3rsaYKKUZLabuJTyDgJKITUbOvgxLS+APFEZArzCmP6go=
=qFLM
-END PGP SIGNATURE-
diff -Nru libspreadsheet-parsexlsx-perl-0.27/debian/changelog 
libspreadsheet-parsexlsx-perl-0.27/debian/changelog
--- libspreadsheet-parsexlsx-perl-0.27/debian/changelog 2024-01-12 
21:21:42.0 +0100
+++ libspreadsheet-parsexlsx-perl-0.27/debian/changelog 2024-01-26 
20:34:16.0 +0100
@@ -1,3 +1,13 @@
+libspreadsheet-parsexlsx-perl (0.27-2.1+deb11u2) bullseye; urgency=medium
+
+  * Team upload.
+  * Add a patch to fix an xml external entity (XEE) injection bug.
+[CVE-2024-23525]
+Patch taken from an upstream Git commit contained in the 0.30 release.
+(Closes: #1061098)
+
+ -- gregor herrmann   Fri, 26 Jan 2024 20:34:16 +0100
+
 libspreadsheet-parsexlsx-perl (0.27-2.1+deb11u1) bullseye; urgency=medium
 
   * Team upload.
diff -Nru 
libspreadsheet-parsexlsx-perl-0.27/debian/patches/CVE-2024-23525.patch 
libspreadsheet-parsexlsx-perl-0.27/debian/patches/CVE-2024-23525.patch
--- libspreadsheet-parsexlsx-perl-0.27/debian/patches/CVE-2024-23525.patch  
1970-01-01 01:00:00.0 +0100
+++ libspreadsheet-parsexlsx-perl-0.27/debian/patches/CVE-2024-23525.patch  
2024-01-26 20:34:16.0 +0100
@@ -0,0 +1,25 @@
+Description: Fix xml external entity (XEE) injection bug CVE-2024-23525
+Origin: upstream, commit 1d55f90, as released in 0.30
+Reviewed-by: gregor herrmann 
+Last-Update: 2024-01-26
+Bug-Debian: https://bugs.debian.org/1061098
+Bug: https://github.com/MichaelDaum/spreadsheet-parsexlsx/issues/10
+
+From 1d55f90caf433c7442e5be21a1849af2b5522ffe Mon Sep 17 00:00:00 2001
+From: Michael Daum 
+Date: Wed, 17 Jan 2024 12:31:20 +0100
+Subject: [PATCH] Fixed xml external entity (XEE) injection bug
+
+reported by @phvietan, fixes issue #10
+
+
+--- a/lib/Spreadsheet/ParseXLSX.pm
 b/lib/Spreadsheet/ParseXLSX.pm
+@@ -1107,6 +1107,7 @@
+ 
'http://schemas.openxmlformats.org/officeDocument/2006/relationships' => 'rels',
+ 'http://schemas.openxmlformats.org/drawingml/2006/main' => 
'drawmain',
+ },
++no_xxe => 1,
+ keep_original_prefix => 1,
+ %opts,
+ );
diff -Nru libspreadsheet-parsexlsx-perl-0.27/debian/patches/series 
libspreadsheet-parsexlsx-perl-0.27/debian/patches/series
--- libspreadsheet-parsexlsx-perl-0.27/debian/patches/series2024-01-12 
21:21:42.0 +0100
+++ libspreadsheet-parsexlsx-perl-0.27/debian/patches/series2024-01-26 
20:34:16.0 +0100
@@ -1,2 +1,3 @@
 001_fix-NAME-section-in-pod.patch
 CVE-2024-22368.patch
+CVE-2024-23525.patch


Bug#1060689: bullseye-pu: package libspreadsheet-parsexlsx-perl/0.27-2.1+deb11u1

2024-01-12 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: libspreadsheet-parsexlsx-p...@packages.debian.org
Control: affects -1 + src:libspreadsheet-parsexlsx-perl

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libspreadsheet-parsexlsx-perl/0.27-2.1+deb11u1 to
bullseye.

This upload fixes CVE-2024-22368 (potential memory bomb) by adding a
quilt patch, which is taken from 2 upstream commits that are released
in 0.28 (and are in testing/unstable in 0.29-1 since a week).

https://security-tracker.debian.org/tracker/CVE-2024-22368

Complete debdiff attached.


Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmWhs+NfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgZHfQ/9EUCz97a2oS2P48MIFgCsthWvAPDf5e4ZY3hA1usDrk/+m62qjZd+SoqY
nZANzU/WLqfQ/4m67zZSqPhJUzPsa9sQzVYYXTfaKBr6RYlvaxJvaIaQMDVZRu1T
l0HaYtYm4NSXPk39rIl1gC7U3dqO8+joYDxuEQxlPPe8Fah746F90hh9GUqu0joP
m4j6nL5SBRZ7JeGd68mtLzmI4n8WUeQak7wGAfF9fGugyYCRkqcGlyNVtg+A4xEi
nMqLA9JXZZY84AohCnQgK9C9mww9eqjN4whYGw/SQX4b5SbIs11y5z058Esctptc
vCMQflDPm0ekY+58y7Gg1JTuH5vsNPw0LuYEZjL2+KWkDsrfzEwXSPMOGlmbAaE6
3VWoK94qe8APCXvWyyi0AnrSa0eTb9r8kZ2BBRWx9ST/GMnkmax/AMU7WL9Theyk
0WmBRafm5J+RxMy3aSK4T9U/5gFw0Z+Z7j9NXNI/PtyeQ2sr7oEmDX2iewXFXSy5
0s5zy7vFIlG6BS4FgXjBi+lic3IH2oAkblUczAdmlzNdutV6Wy22Q4wJGtJDKrS8
Ty7fMpNEQ52AJyFH2hb0rAV8v0smvLDPTbZO3fRHHJJAnsXfqlH4OwgfT9fr6dAv
DOksztrqTOFhIU6ZIAVcET30RTuh9/EfoUJryPA5T/IinCLSC9c=
=4oCb
-END PGP SIGNATURE-
diff -Nru libspreadsheet-parsexlsx-perl-0.27/debian/changelog 
libspreadsheet-parsexlsx-perl-0.27/debian/changelog
--- libspreadsheet-parsexlsx-perl-0.27/debian/changelog 2021-01-04 
15:20:56.0 +0100
+++ libspreadsheet-parsexlsx-perl-0.27/debian/changelog 2024-01-12 
21:21:42.0 +0100
@@ -1,3 +1,11 @@
+libspreadsheet-parsexlsx-perl (0.27-2.1+deb11u1) bullseye; urgency=medium
+
+  * Team upload.
+  * Add a patch to fix a possible memory bomb. [CVE-2024-22368]
+Patch taken from two upstream Git commits contained in the 0.28 release.
+
+ -- gregor herrmann   Fri, 12 Jan 2024 21:21:42 +0100
+
 libspreadsheet-parsexlsx-perl (0.27-2.1) unstable; urgency=medium
 
   * Non maintainer upload by the Reproducible Builds team.
diff -Nru 
libspreadsheet-parsexlsx-perl-0.27/debian/patches/CVE-2024-22368.patch 
libspreadsheet-parsexlsx-perl-0.27/debian/patches/CVE-2024-22368.patch
--- libspreadsheet-parsexlsx-perl-0.27/debian/patches/CVE-2024-22368.patch  
1970-01-01 01:00:00.0 +0100
+++ libspreadsheet-parsexlsx-perl-0.27/debian/patches/CVE-2024-22368.patch  
2024-01-12 21:21:42.0 +0100
@@ -0,0 +1,111 @@
+Description: Fix memory bomb CVE-2024-22368
+Origin: upstream, commits 39b25b9 and 47ff82d, as released in 0.28
+Reviewed-by: gregor herrmann 
+Last-Update: 2024-01-12
+
+
+From 39b25b91fcb939a9c8ea807fdc80386c1ae5be0c Mon Sep 17 00:00:00 2001
+From: MichaelDaum 
+Date: Sun, 31 Dec 2023 11:56:25 +0100
+Subject: [PATCH] fix possible memory bomb
+
+as reported in 
https://github.com/haile01/perl_spreadsheet_excel_rce_poc/blob/main/parse_xlsx_bomb.md
+---
+ lib/Spreadsheet/ParseXLSX.pm | 43 
+ 1 file changed, 29 insertions(+), 14 deletions(-)
+
+
+From 47ff82d74fbd014b8ec3cab80fa4fd25db9e8242 Mon Sep 17 00:00:00 2001
+From: MichaelDaum 
+Date: Sun, 31 Dec 2023 12:23:19 +0100
+Subject: [PATCH] minor rewrite and perltidy
+
+---
+ lib/Spreadsheet/ParseXLSX.pm | 16 +++-
+ 1 file changed, 7 insertions(+), 9 deletions(-)
+
+--- a/lib/Spreadsheet/ParseXLSX.pm
 b/lib/Spreadsheet/ParseXLSX.pm
+@@ -176,8 +176,6 @@ sub _parse_sheet {
+ $sheet->{MaxCol} = -1;
+ $sheet->{Selection} = [ 0, 0 ];
+ 
+-my %merged_cells;
+-
+ my @column_formats;
+ my @column_widths;
+ my @columns_hidden;
+@@ -187,7 +185,6 @@ sub _parse_sheet {
+ my $default_row_height   = 15;
+ my $default_column_width = 10;
+ 
+-my %cells;
+ my $row_idx = 0;
+ 
+ my $sheet_xml = $self->_new_twig(
+@@ -263,11 +260,6 @@ sub _parse_sheet {
+ $toprow, $leftcol,
+ $bottomrow, $rightcol,
+ ];
+-for my $row ($toprow .. $bottomrow) {
+-for my $col ($leftcol .. $rightcol) {
+-$merged_cells{"$row;$col"} = 1;
+-}
+-}
+ }
+ 
+ $twig->purge;
+@@ -415,7 +407,6 @@ sub _parse_sheet {
+ $cell->{_Value} = $sheet->{_Book}{FmtClass}->ValFmt(
+ $cell, $sheet->{_Book}
+ );
+-$cells{"$row;$col"} = $cell;
+ $sheet->{Cells}[$row][$col] = $cell;
+ $col_idx++;

Bug#1060688: bookworm-pu: package libspreadsheet-parsexlsx-perl/0.27-3+deb12u1

2024-01-12 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bookworm
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: libspreadsheet-parsexlsx-p...@packages.debian.org
Control: affects -1 + src:libspreadsheet-parsexlsx-perl

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libspreadsheet-parsexlsx-perl/0.27-3+deb12u1 to
bookworm.

This upload fixes CVE-2024-22368 (potential memory bomb) by adding a
quilt patch, which is taken from 2 upstream commits that are released
in 0.28 (and are in testing/unstable in 0.29-1 since a week).

https://security-tracker.debian.org/tracker/CVE-2024-22368

Complete debdiff attached.


Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmWhs+VfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgZ02RAAiWujisM7g1V91tVdZ1N9SKD/n3tdkjpRYRE32OeWMF0su5u8/u0RaWeo
O9bpK8goHQF6gt70K/wqPLNKenj45dH86n01q/rLznd5WvPNtytbK/5btj3nze6q
hRYt5P5a1WG7D8ZKyldYSNX9qMbjvFwTegptdAu0Kq6aAYbECcwVeD0SqzxHPzgL
Q9njmCJSuUVsSVcS5e4xkTNLf1N7Ul1cp46UXbaqe40LgThN9EBLMAg+gZJtS6IM
SzQsfwzaQQmtDyhqcUy/RRBBt7l+F77DvT7UiG1BjjYEM8A4AR9UtOfqGNZWe13C
bXy6ccHzoBx4EvI6RoNFGX2u9RzeiDFlOsCf+3Apqpq/uXQJ4t5cjgI2x0USD/gm
gUwjzrPNzpOyTTK/L2DLs6Y7Yo4vJ7mPo6i5yG+6M+hXpkRyqg0a4EK0VQkbhsci
sEQrJUOOeaAwllLfMoY61P05QB1fpuUOKpNOSS7XqPxgWmyz/lWSyLfYIUiPyHAU
Fx5YBqcYZI292UjH2c3+h0lh2Bj58hV3TzzuzRM5yP2W+7AH0pukjUgwLEhWR25s
Z1rigRFK+Ou46n/HJejDiWn4/OW4veK/mIKYow/WgBnKyL48DyALIu5iEzxTYo7U
1QIPn+ivK5IoR3J34e719SBrSeixcruU6hvNlQJjNgq6msLh5oU=
=YJjE
-END PGP SIGNATURE-
diff -Nru libspreadsheet-parsexlsx-perl-0.27/debian/changelog 
libspreadsheet-parsexlsx-perl-0.27/debian/changelog
--- libspreadsheet-parsexlsx-perl-0.27/debian/changelog 2022-11-19 
21:22:53.0 +0100
+++ libspreadsheet-parsexlsx-perl-0.27/debian/changelog 2024-01-12 
21:25:50.0 +0100
@@ -1,3 +1,11 @@
+libspreadsheet-parsexlsx-perl (0.27-3+deb12u1) bookworm; urgency=medium
+
+  * Team upload.
+  * Add a patch to fix a possible memory bomb. [CVE-2024-22368]
+Patch taken from two upstream Git commits contained in the 0.28 release.
+
+ -- gregor herrmann   Fri, 12 Jan 2024 21:25:50 +0100
+
 libspreadsheet-parsexlsx-perl (0.27-3) unstable; urgency=medium
 
   [ gregor herrmann ]
diff -Nru 
libspreadsheet-parsexlsx-perl-0.27/debian/patches/CVE-2024-22368.patch 
libspreadsheet-parsexlsx-perl-0.27/debian/patches/CVE-2024-22368.patch
--- libspreadsheet-parsexlsx-perl-0.27/debian/patches/CVE-2024-22368.patch  
1970-01-01 01:00:00.0 +0100
+++ libspreadsheet-parsexlsx-perl-0.27/debian/patches/CVE-2024-22368.patch  
2024-01-12 21:25:50.0 +0100
@@ -0,0 +1,111 @@
+Description: Fix memory bomb CVE-2024-22368
+Origin: upstream, commits 39b25b9 and 47ff82d, as released in 0.28
+Reviewed-by: gregor herrmann 
+Last-Update: 2024-01-12
+
+
+From 39b25b91fcb939a9c8ea807fdc80386c1ae5be0c Mon Sep 17 00:00:00 2001
+From: MichaelDaum 
+Date: Sun, 31 Dec 2023 11:56:25 +0100
+Subject: [PATCH] fix possible memory bomb
+
+as reported in 
https://github.com/haile01/perl_spreadsheet_excel_rce_poc/blob/main/parse_xlsx_bomb.md
+---
+ lib/Spreadsheet/ParseXLSX.pm | 43 
+ 1 file changed, 29 insertions(+), 14 deletions(-)
+
+
+From 47ff82d74fbd014b8ec3cab80fa4fd25db9e8242 Mon Sep 17 00:00:00 2001
+From: MichaelDaum 
+Date: Sun, 31 Dec 2023 12:23:19 +0100
+Subject: [PATCH] minor rewrite and perltidy
+
+---
+ lib/Spreadsheet/ParseXLSX.pm | 16 +++-
+ 1 file changed, 7 insertions(+), 9 deletions(-)
+
+--- a/lib/Spreadsheet/ParseXLSX.pm
 b/lib/Spreadsheet/ParseXLSX.pm
+@@ -176,8 +176,6 @@ sub _parse_sheet {
+ $sheet->{MaxCol} = -1;
+ $sheet->{Selection} = [ 0, 0 ];
+ 
+-my %merged_cells;
+-
+ my @column_formats;
+ my @column_widths;
+ my @columns_hidden;
+@@ -187,7 +185,6 @@ sub _parse_sheet {
+ my $default_row_height   = 15;
+ my $default_column_width = 10;
+ 
+-my %cells;
+ my $row_idx = 0;
+ 
+ my $sheet_xml = $self->_new_twig(
+@@ -263,11 +260,6 @@ sub _parse_sheet {
+ $toprow, $leftcol,
+ $bottomrow, $rightcol,
+ ];
+-for my $row ($toprow .. $bottomrow) {
+-for my $col ($leftcol .. $rightcol) {
+-$merged_cells{"$row;$col"} = 1;
+-}
+-}
+ }
+ 
+ $twig->purge;
+@@ -415,7 +407,6 @@ sub _parse_sheet {
+ $cell->{_Value} = $sheet->{_Book}{FmtClass}->ValFmt(
+ $cell, $sheet->{_Book}
+ );
+-$cells{"$row;$col"} = $cell;
+ $sheet->{Cells}[$row][$col] = $cell;
+ $col_idx++;
+ }
+@@ -428,11 +419,15 @

Bug#1059344: bookworm-pu: package libdatetime-timezone-perl/1:2.60-1+2023d

2023-12-24 Thread gregor herrmann
On Sun, 24 Dec 2023 16:19:07 +, Jonathan Wiltshire wrote:

> On Sat, Dec 23, 2023 at 01:36:11AM +0100, gregor herrmann wrote:
> > I've uploaded libdatetime-timezone-perl/1:2.60-1+2023d to bookworm.
> > As usual, it contains the tzdata data 2023d as a quilt patch.
> Thanks. Should it and the bullseye one be released to stable-updates as
> usual? Text along the lines of the previous SUA?

Thanks for asking!
I didn't include this request this time, as the changes probably
don't affect too many people and I thought that you might be busy with
other things at this time of the year :)

But if it's not too much hassle (and without any time pressure
whatsoever), having them in *-updates before the next point releases
would be nice. And basing the wording of the announcements on the
previous examples would be perfect.


Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at -- Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member VIBE!AT & SPI Inc. -- Supporter Free Software Foundation Europe
   `-   


signature.asc
Description: Digital Signature


Bug#1059345: bullseye-pu: package libdatetime-timezone-perl/1:2.47-1+2023d

2023-12-22 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: libdatetime-timezone-p...@packages.debian.org
Control: affects -1 + src:libdatetime-timezone-perl

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.47-1+2023d to bullseye.
It includes the new tzdata release as a quilt patch.

Manually stripped down debdiff attached.


Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmWGMpdfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgY9jw/+IcD4/fkUGMcuy63JbEYHnHPtHA1Tci8bHYnyYef/aY6/KxDuAqcJHAbM
UGUgS09njELipkV21V+U/9SGrV9AhUia+2EneuMNZFTb+wCuTQGNm6C1Uo7WYJmw
1L1pHmsrlV3ShOZkjYmQODeIJfCyjYNQAcIGkrSMAIO1eK1xMVWuL7J64aWnHTnV
Be5ib3LaArz1caA7aas5WLE5sh9c0htZYTkceNXCiPjeNUJFG9YZAjyCTyBeMbsk
H+V29YyjksiOHW03lQdlOa/HulB6sGYzkEWNIzr0GfIYgpGlLOYSNnGiFY5YC2Ji
ePea3z01VyxYYlSehEGpdG2g33FcQwFzaY991g3Ey0zvSJ62dtre75w9kbU/dIEf
lxHKiZU/2qv2YUKN4hggt8Fjccz6oK4U/4uZB/O/MfP8GxoAEb7Udrllihjx/+xV
FiejEQmm+OSJJrFzDlmAmqYCk4AkP/gWuiZyaJ9otwtMnq1DaLdiw4wpazXrvRr4
OAdfR/rb2h+yZE0+idxmgg903eTFEwCIAx+hCVlulk+m2L2OY8q7i0wQhPDR4H9z
AAADq8m8ro/iLCNKST979NyceTBErjn9aNrzXZwi27VmI5ZNFnvxlv5gEtYqTA0W
3p7mRGZUXJy3U0zza05VKmK5iXOpKp8nUcfHZHVhdYg8mzXNpYw=
=lgAZ
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.47/debian/changelog 
libdatetime-timezone-perl-2.47/debian/changelog
--- libdatetime-timezone-perl-2.47/debian/changelog 2023-03-29 
20:21:49.0 +0200
+++ libdatetime-timezone-perl-2.47/debian/changelog 2023-12-23 
01:50:44.0 +0100
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.47-1+2023d) bullseye; urgency=medium
+
+  * Update data to Olson database version 2023d.
+This update contains contemporary changes for Antarctica and Greenland.
+
+ -- gregor herrmann   Sat, 23 Dec 2023 01:50:44 +0100
+
 libdatetime-timezone-perl (1:2.47-1+2023c) bullseye; urgency=medium
 
   * Update data to Olson database version 2023c.
diff -Nru libdatetime-timezone-perl-2.47/debian/patches/olson-2023d 
libdatetime-timezone-perl-2.47/debian/patches/olson-2023d
--- libdatetime-timezone-perl-2.47/debian/patches/olson-2023d   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.47/debian/patches/olson-2023d   2023-12-23 
01:50:44.0 +0100
@@ -0,0 +1,7146 @@
+Description: Update to Olson DB 2023d
+Origin: vendor
+Author: gregor herrmann 
+Reviewed-by: gregor herrmann 
+Last-Update: 2023-12-23
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2023c
++# Generated from debian/tzdata/africa.  Olson data version 2023d
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2023c'}
++sub olson_version {'2023d'}
+ 
+ sub has_dst_changes {0}
+ 
+--- /dev/null
 b/lib/DateTime/TimeZone/Antarctica/Vostok.pm
+@@ -0,0 +1,86 @@
++# This file is auto-generated by the Perl DateTime Suite time zone
++# code generator (0.08) This code generator comes with the
++# DateTime::TimeZone module distribution in the tools/ directory
++
++#
++# Generated from debian/tzdata/antarctica.  Olson data version 2023d
++#
++# Do not edit this file directly.
++#
++package DateTime::TimeZone::Antarctica::Vostok;
++
++use strict;
++use warnings;
++use namespace::autoclean;
++
++our $VERSION = '2.47';
++
++use Class::Singleton 1.03;
++use DateTime::TimeZone;
++use DateTime::TimeZone::OlsonDB;
++
++@DateTime::TimeZone::Antarctica::Vostok::ISA = ( 'Class::Singleton', 
'DateTime::TimeZone' );
++
++my $spans =
++[
++[
++DateTime::TimeZone::NEG_INFINITY, #utc_start
++61755609600, #  utc_end 1957-12-16 00:00:00 (Mon)
++DateTime::TimeZone::NEG_INFINITY, #  local_start
++61755609600, #local_end 1957-12-16 00:00:00 (Mon)
++0,
++0,
++'-00',
++],
++[
++61755609600, #utc_start 1957-12-16 00:00:00 (Mon)
++62895718800, #  utc_end 1994-01-31 17:00:00 (Mon)
++61755634800, #  local_start 1957-12-16 07:00:00 (Mon)
++62895744000, #local_end 1994-02-01 00:00:00 (Tue)
++25200,
++0,
++'+07',
++],
++[
++62895718800, #utc_start 1994-01-31 17:00:00 (Mon)
++62919331200, #  utc_end 1994-11-01 00:00:00 (Tue)
++62895718800, #  local_start 1994-01-31 17:00:00 (Mon)
++62919331200, #local_end 1994-11-01 00:00:00 (Tue)
++0,
++0,
++'-00',
++],
++[
++62919331200, #utc_start 1994-11-01 00:00:00 (Tue)
++63838522800, #  utc_end 2023-12-17 19:00:00 (Sun)
++62919356400, #  local_start 1994-11-01 07:00:00 (Tue)
++63838548000, #local_end 2023-12-18 02:00:00 (Mon)
++25200,
++0,
++'+07',
++],
++[
++63838522800, #utc_start 2023-12-17 19:00:00 (Sun)
++DateTime::TimeZone::INFINITY

Bug#1059344: bookworm-pu: package libdatetime-timezone-perl/1:2.60-1+2023d

2023-12-22 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bookworm
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: libdatetime-timezone-p...@packages.debian.org
Control: affects -1 + src:libdatetime-timezone-perl

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.60-1+2023d to bookworm.
As usual, it contains the tzdata data 2023d as a quilt patch.

Manually stripped down debdiff attached.



Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmWGK3tfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgaueA/7BufaCNIYWZfeI5Unp8avYsvGkU9BSOc/1nl7T80D6s/kwn/QXFPnqze5
f9JL59YGiq7ALJ1vQK1TewCWKx6OsjbexVVTRIpjMNXL1QqPkVcJwhkZTOmhkHGu
xGG7MPw6Rr4UlG4NxV0Rbny6KSF0PCasoDEyd9GzqSARKupNvyPFxkFDyt7oZ/x4
5cvbI0RhOYTR8sm2Hg/ws+7YWbL735brv1E4+vMozV5jXXiljynT1GaQB03kk+dx
pdueZSzRftrelYxI1kM8nji3GtVAzG4gcx7C+PMMbXNE5XPyGt/klCUGRkJCX5rS
/2usevQdAsSv04v1wMQK8Fce56+J2wig5KP423UIX5AvtANIF3VJUuFYQKVv+Uo/
I5awNmuSqbs0zOPi4z72zn4+oS7tIdU6ABWK+SFuaxbH6dslyVL+nzVMmfmjeEFF
oFQawN88lyf7wcLdfCbhiTYlBFTrmrUbKUbGFuOD6oGTfbmhz+zl27VNjj2MOf2M
KYKDCNSccTpVzl34rOOXlQJQUb+Q66PbcYkkghNAY9LChgoUFw7BPR/2dkj52gQA
Ltat77yQWp386jrX7FquhejUMVmRP9qcx1EVuLO10DExKAXdc/vEjrt2UIfmXfHa
91xgevUJGyArw7LIyBcOvc8TkoXzadKLNSxx4VU3d9ecmIk453o=
=dLDF
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.60/debian/changelog 
libdatetime-timezone-perl-2.60/debian/changelog
--- libdatetime-timezone-perl-2.60/debian/changelog 2023-03-29 
19:46:25.0 +0200
+++ libdatetime-timezone-perl-2.60/debian/changelog 2023-12-23 
01:27:56.0 +0100
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.60-1+2023d) bookworm; urgency=medium
+
+  * Update data to Olson database version 2023d.
+This update contains contemporary changes for Antarctica and Greenland.
+
+ -- gregor herrmann   Sat, 23 Dec 2023 01:27:56 +0100
+
 libdatetime-timezone-perl (1:2.60-1+2023c) unstable; urgency=medium
 
   * Import upstream version 2.60.
diff -Nru libdatetime-timezone-perl-2.60/debian/patches/olson-2023d 
libdatetime-timezone-perl-2.60/debian/patches/olson-2023d
--- libdatetime-timezone-perl-2.60/debian/patches/olson-2023d   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.60/debian/patches/olson-2023d   2023-12-23 
01:27:56.0 +0100
@@ -0,0 +1,7155 @@
+Description: Update to Olson DB 2023d
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2023-12-23
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from /tmp/DzE_ngvtVe/africa.  Olson data version 2023c
++# Generated from debian/tzdata/africa.  Olson data version 2023d
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2023c'}
++sub olson_version {'2023d'}
+ 
+ sub has_dst_changes {0}
+ 
+--- /dev/null
 b/lib/DateTime/TimeZone/Antarctica/Vostok.pm
+@@ -0,0 +1,86 @@
++# This file is auto-generated by the Perl DateTime Suite time zone
++# code generator (0.08) This code generator comes with the
++# DateTime::TimeZone module distribution in the tools/ directory
++
++#
++# Generated from debian/tzdata/antarctica.  Olson data version 2023d
++#
++# Do not edit this file directly.
++#
++package DateTime::TimeZone::Antarctica::Vostok;
++
++use strict;
++use warnings;
++use namespace::autoclean;
++
++our $VERSION = '2.60';
++
++use Class::Singleton 1.03;
++use DateTime::TimeZone;
++use DateTime::TimeZone::OlsonDB;
++
++@DateTime::TimeZone::Antarctica::Vostok::ISA = ( 'Class::Singleton', 
'DateTime::TimeZone' );
++
++my $spans =
++[
++[
++DateTime::TimeZone::NEG_INFINITY, #utc_start
++61755609600, #  utc_end 1957-12-16 00:00:00 (Mon)
++DateTime::TimeZone::NEG_INFINITY, #  local_start
++61755609600, #local_end 1957-12-16 00:00:00 (Mon)
++0,
++0,
++'-00',
++],
++[
++61755609600, #utc_start 1957-12-16 00:00:00 (Mon)
++62895718800, #  utc_end 1994-01-31 17:00:00 (Mon)
++61755634800, #  local_start 1957-12-16 07:00:00 (Mon)
++62895744000, #local_end 1994-02-01 00:00:00 (Tue)
++25200,
++0,
++'+07',
++],
++[
++62895718800, #utc_start 1994-01-31 17:00:00 (Mon)
++62919331200, #  utc_end 1994-11-01 00:00:00 (Tue)
++62895718800, #  local_start 1994-01-31 17:00:00 (Mon)
++62919331200, #local_end 1994-11-01 00:00:00 (Tue)
++0,
++0,
++'-00',
++],
++[
++62919331200, #utc_start 1994-11-01 00:00:00 (Tue)
++63838522800, #  utc_end 2023-12-17 19:00:00 (Sun)
++62919356400, #  local_start 1994-11-01 07:00:00 (Tue)
++63838548000, #local_end 2023-12-18 02:00:00 (Mon)
++25200,
++0,
++'+07',
++],
++[
++63838522800, #utc_start 2023-12-17 19:00:00 (Sun)
++DateTime::TimeZone::INFINITY, #  utc_end
++63838540800, #  local_start 2023-12

Bug#1059343: bookworm-pu: package libfirefox-marionette-perl/1.35-1+deb12u1

2023-12-22 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bookworm
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: libfirefox-marionette-p...@packages.debian.org
Control: affects -1 + src:libfirefox-marionette-perl

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libfirefox-marionette-perl/1.35-1+deb12u1 to bookworm.

Compared to 1.35-1 it contains one small patch, taken from an
upstream commit which is in the 1.36 release, which adjusts the
Firefox Capabilities handling to Firefox 112+.

This upload fixes the FTBFS bug #1042299.

Upstream bug report: https://github.com/david-dick/firefox-marionette/issues/21
Related firefox issue: https://bugzilla.mozilla.org/show_bug.cgi?id=1819029
Upstream commit (= patch): 
https://github.com/david-dick/firefox-marionette/commit/1e8785004852e561c8b7a98701bc82fb7a537ffd

Full debdiff attached.


Thanks in advance,
gregor


-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmWGF1VfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgb3DhAAw0+ye42GcRoBBymTiCrJR6TzCxT1SI0gwBnC6bTczNkv5yg8sEYAlXMe
NpG4RRNG77x6oqBB95yXt/USUCMZdgjlpJcgqZrK3NiZ3QLuMC+erghsToWSCL6S
WqRy4DHJPx4xsOenGsyVIgMqQzxtlkg1wsr93vjI5ToL1fAppki3QZuN/ovXl7wU
p6yb/aoTXaW1jn7ZN7FbLBe6KNC1Vl6NX5JNuCR0iihBxXZDQTLoZDle60s/7Hjc
TZpuSK7KTwhW2f3Rg8kYvuuA4VlX8x2uVuGb4q7ptvUTHWlSdKjRcPeMKLOcb9NQ
h3YFhhSxS1Cofn0sX8Rz67yfnYkVnY+QEJZESueEIyhgp0NDpWMoiVqSeiOWyjXy
kBYIIupb6eaPKSVnCd0Cbqbf9IuTeotP6YukS9xIdAZRwaPu4dEYIVH52i+U4oXT
ZoX/Pe6GruG+4UFrP/Elo5VSSxuHFhM3Z8tfa2OMGUd47KfehbZFbikAH+2uX1/v
9n5liqIMwTJl3rJBfSMYPKSZFukICnvFiqwIP44uTG6WYgHaQwUUcLmzMQyPXTFO
8zZSU5EFqG8jEjp9j/z6IxzVI5VtRI+cU7UIc0ZHkcMtsdVBVkIXel60lfetynsg
2XxuUt5g+10f1KJAmGWIOgixc/8JMPz88XpLhI1OpycG5NpL1cg=
=bm57
-END PGP SIGNATURE-
diff -Nru libfirefox-marionette-perl-1.35/debian/changelog 
libfirefox-marionette-perl-1.35/debian/changelog
--- libfirefox-marionette-perl-1.35/debian/changelog2023-01-30 
20:40:55.0 +0100
+++ libfirefox-marionette-perl-1.35/debian/changelog2023-12-22 
23:49:39.0 +0100
@@ -1,3 +1,12 @@
+libfirefox-marionette-perl (1.35-1+deb12u1) bookworm; urgency=medium
+
+  * Add patch 0001-Fixes-to-capabilities-for-Firefox-112.-Looks-
+related.patch: "Fixes to capabilities for Firefox 112."
+(This is upstream commit 1e87850, included in the 1.36 release.)
+Closes: #1042299
+
+ -- gregor herrmann   Fri, 22 Dec 2023 23:49:39 +0100
+
 libfirefox-marionette-perl (1.35-1) unstable; urgency=medium
 
   * Import upstream version 1.35.
diff -Nru 
libfirefox-marionette-perl-1.35/debian/patches/0001-Fixes-to-capabilities-for-Firefox-112.-Looks-related.patch
 
libfirefox-marionette-perl-1.35/debian/patches/0001-Fixes-to-capabilities-for-Firefox-112.-Looks-related.patch
--- 
libfirefox-marionette-perl-1.35/debian/patches/0001-Fixes-to-capabilities-for-Firefox-112.-Looks-related.patch
  1970-01-01 01:00:00.0 +0100
+++ 
libfirefox-marionette-perl-1.35/debian/patches/0001-Fixes-to-capabilities-for-Firefox-112.-Looks-related.patch
  2023-12-22 23:49:39.0 +0100
@@ -0,0 +1,39 @@
+From 1e8785004852e561c8b7a98701bc82fb7a537ffd Mon Sep 17 00:00:00 2001
+From: David Dick 
+Date: Sat, 29 Apr 2023 13:37:28 +1000
+Subject: [PATCH] Fixes to capabilities for Firefox 112.  Looks related to
+ https://bugzilla.mozilla.org/show_bug.cgi?id=1819029. Thanks to toreau for
+ the bug report in GH#21
+
+Bugs-Debian: https://bugs.debian.org/1042299
+
+---
+ lib/Firefox/Marionette.pm | 12 ++--
+ 1 file changed, 10 insertions(+), 2 deletions(-)
+
+diff --git a/lib/Firefox/Marionette.pm b/lib/Firefox/Marionette.pm
+index 2d10d85..6b8440b 100644
+--- a/lib/Firefox/Marionette.pm
 b/lib/Firefox/Marionette.pm
+@@ -7670,8 +7670,16 @@ sub capabilities {
+ );
+ my $response = $self->_get_response($message_id);
+ if ( $self->marionette_protocol() == _MARIONETTE_PROTOCOL_VERSION_3() ) {
+-return $self->_create_capabilities(
+-$response->result()->{capabilities} );
++if (   ( $response->result()->{value} )
++&& ( $response->result()->{value}->{capabilities} ) )
++{
++return $self->_create_capabilities(
++$response->result()->{value}->{capabilities} );
++}
++else {
++return $self->_create_capabilities(
++$response->result()->{capabilities} );
++}
+ }
+ else {
+ return $self->_create_capabilities( $response->result()->{value} );
+-- 
+2.43.0
+
diff -Nru libfirefox-marionette-perl-1.35/debian/patches/series 
libfirefox-marionette-perl-1.35/debian/patches/series
--- libfirefox-marionette-perl-1.35/debian/patches/series   2023-01-30 
20:40:55.0 +0100
+++ libfirefox-marionette-perl-1.35/debian/patches/series   2023-12-22 
23:49:

Bug#1055955: transition: perl 5.38

2023-12-09 Thread gregor herrmann
On Sat, 09 Dec 2023 13:15:23 +0200, Niko Tyni wrote:

> We have one new blocker, not related to Perl 5.38 but preventing
> the necessary rebuild:
>   libgit-raw-perl #1057318

I've uploaded libgit-raw-perl 0.90+ds-2 with a patch to fix the test
failures.
 
> The (unrelated) pandoc mess causes quite a few failures in sid that
> interfered with the testing though.

According to my last aptitude run pandoc seems to be fixed as well.
 

Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at -- Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member VIBE!AT & SPI Inc. -- Supporter Free Software Foundation Europe
   `-   


signature.asc
Description: Digital Signature


Bug#1036060: unblock libfinance-quote-perl

2023-05-15 Thread gregor herrmann
On Mon, 15 May 2023 20:17:40 +, Sebastian Ramacher wrote:

> Unblocked.

Thank you!


Cheers,
gregor


-- 
 .''`.  https://info.comodo.priv.at -- Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member VIBE!AT & SPI Inc. -- Supporter Free Software Foundation Europe
   `-   


signature.asc
Description: Digital Signature


Bug#1036060: unblock: libfinance-quote-perl/1.54-3

2023-05-14 Thread gregor herrmann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock
X-Debbugs-Cc: libfinance-quote-p...@packages.debian.org
Control: affects -1 + src:libfinance-quote-perl

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libfinance-quote-perl/1.54-3 to unstable, targetting
bookworm.

In comparison to -2, the upload contains 4 patches from upstream Git
commits/PRs. While this sounds a bit scary at this stage of the
freeze, all changes are minimal and fix issues.

I'm attaching a full debdiff but in practice the code changes are as
follows (the rest is documentation, patch metadata, a skipped online
test, …):

1) debian/patches/GH263_URL_MorningstarJP.patch: 1 URL changed:

- --- a/lib/Finance/Quote/MorningstarJP.pm
+++ b/lib/Finance/Quote/MorningstarJP.pm
@@ -32,7 +32,7 @@
 
 # NAV information (basis price)
 $MORNINGSTAR_JP_URL =
- -  ('https://www.morningstar.co.jp/FundData/DownloadStdYmd.do?fnc=');
+  ('https://www.wealthadvisor.co.jp/FundData/DownloadStdYmd.do?fnc=');
 
 sub methods { return ( morningstarjp => \ ); }
 sub labels  { return ( morningstarjp => [qw/symbol date nav/] ); }


2) debian/patches/GH262_Regex_FTfunds.patch: 1 regexp changed:

- --- a/lib/Finance/Quote/FTfunds.pm
+++ b/lib/Finance/Quote/FTfunds.pm
@@ -182,7 +182,7 @@
my $currency;
my $price;
if ($webdoc->content =~
- - m[Price 
[(]([A-Z]{3})[)]([\.\,0-9]*)]  )
+   m[]*>Price 
[(]([A-Z]{3})[)]([\.\,0-9]*)]  )
 {
$currency = $1;
$price= $2;


3) debian/patches/GH267_TRV_AlphaVantage.patch: 1 entry added to a
   hash table:

- --- a/lib/Finance/Quote/AlphaVantage.pm
+++ b/lib/Finance/Quote/AlphaVantage.pm
@@ -58,6 +58,7 @@
 '.SA'  => "BRL",# Brazil   Sao Paolo
 '.BR'  => "EUR",# Belgium  Brussels
 '.TO'  => "CAD",# Canada   Toronto
+'.TRV' => "CAD",# CanadaToronto Venture
 '.V'   => "CAD",#  Toronto Venture
 '.TRT' => "CAD",# CanadaToronto
 '.SN'  => "CLP",# ChileSantiago


4) debian/patches/GH268_URL_YahooJSON.patch: 1 URL changed:

- --- a/lib/Finance/Quote/YahooJSON.pm
+++ b/lib/Finance/Quote/YahooJSON.pm
@@ -35,7 +35,7 @@
 
 our $VERSION = '1.54'; # VERSION
 
- -my $YIND_URL_HEAD = 
'https://query1.finance.yahoo.com/v7/finance/quote?symbols=';
+my $YIND_URL_HEAD = 
'https://query1.finance.yahoo.com/v6/finance/quote?symbols=';
 my $YIND_URL_TAIL = '';
 
 sub methods {

(This is Debian bug #1035690)


All these changes are also in the new 1.55 upstream release which
I've chosen not to take as it also contains other/more code changes.

Having these changes in bookworm would help users to have working
stock quote modules, and as the changes are minimal there should be
no risk for regressions.


unblock libfinance-quote-perl/1.54-3
age-days 5 libfinance-quote-perl/1.54-3



Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmRhJ9RfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgauYg/+IpHCLWKfRn18h5jiQruWhQkosM3n8cPaXVqiCbm2V1o/I4DC5Rx6xK4W
uZ/255jydt1DI771a4p2zlgl/svKIXCBCqsk9c3aUzpCrkeAVghOW6OGqD9X2P+Q
o8W1ADpEbG/gI6kGHn7Yj5x428L6PtG/t0rUTEKnEEUznPnLFufszFkr1/aifwbr
bbX1sjSxcdNQjtaiMVRusK7CD8sfqgRaDSZJC7iN9NjIbMnYEo/3UYiSDpBnXC6/
QP/VZrAdrbfsmWCahJtcZ/ZlvpKN1rmQI6fnaTIFFGewQmyj2uMAnVa1bLSm2lI0
6yo5oc33TDfxCR0nnJOr4jE3ruB1sYenIoUilNxLtglCRCJZhoZCQP6IPq2wCTe3
U18L4dH0lAppXGx7MHq2bnEXTV5JB6pcz0EBDe66iupmotQrgOwoNRVOt8A6GMah
2+MCWGSTub2Z0RAFQWv/HTdSZWhsjq+TgMNoxOcxGjXBUdgBAl+JkrfxeZ3e2RLd
oY42kFhTIimDKnyHOe9CdA2Zp/PvISnHdafiMoeHBrnZfMmvG3dttqcxDxn9GPAL
wievCeyj27th12taQN5/Rg5qPU07cr3yiFE9v8ccSsKPcQzmT27nx+qFEYALcYxn
fXlgcIMsRuWaIfc1okSgus7Q8QhxAQk3Ep2vZrPQ5cuoOC91so4=
=apkh
-END PGP SIGNATURE-
diff -Nru libfinance-quote-perl-1.54/debian/changelog 
libfinance-quote-perl-1.54/debian/changelog
--- libfinance-quote-perl-1.54/debian/changelog 2023-02-05 14:24:34.0 
+0100
+++ libfinance-quote-perl-1.54/debian/changelog 2023-05-14 20:04:45.0 
+0200
@@ -1,3 +1,17 @@
+libfinance-quote-perl (1.54-3) unstable; urgency=medium
+
+  * Add patch GH263_URL_MorningstarJP.patch from upstream Git repo.
+URL change in MorningstarJP.pm. (GH#263)
+  * Add patch GH262_Regex_FTfunds.patch from upstream Git repo.
+Tweak regex to fix FTfunds.pm. (GH#262)
+  * Add patch GH267_TRV_AlphaVantage.patch from upstream Git repo.
+Added currency map .TRV => CAD. (GH#267)
+  * Add patch GH268_URL_YahooJSON.patch from upstream Git repo.
+Quick fix to YahooJSON.pm. (GH#268)
+Thanks to David Engel for the bug report. (Closes: #1035690)
+
+ -- gregor herrmann   S

Bug#1033669: bullseye-pu: package libdatetime-timezone-perl/1:2.47-1+2023c

2023-03-29 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: libdatetime-timezone-p...@packages.debian.org, 
debian-p...@lists.debian.org
Control: affects -1 + src:libdatetime-timezone-perl

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

New week, new tzdata release!

I've uploaded libdatetime-timezone-perl/1:2.47-1+2023c to bullseye.
It includes data from the tzdata 2023c release as a quilt patch. The
only change wrt. {1:2.47-1+,}2023b is that the DST postponement for
Lebanon is undone, so the patch effectively changes only
lib/DateTime/TimeZone/Asia/Beirut.pm.

Manually stripped down debdiff attached (the rest are just version
numbers).


Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmQkhC9fFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgbyJg/+JEiLIfZc9fsOl5vzlFvT2wetL/XT0LsW6QTUmaouwY410OxZ1MB0KrIm
JgpCt2G6hPUzZdLOv+T6wyqB7cU3OXTJQQ0q1laPM1wIL9BgbF2MAsXbQVuR2q2+
h/JGLn8AG9d35kn/GD06B3IY8VyGl+YNAHlsvetIo7UX53onrb0iE9cb47Qqv+uM
kSYe47Ms9+UCchZX54cLFO8q/ZIv92RZnX3SwuWCgzWpNsMYxz9cTMYZcGYgur+9
MEMm3A7ods5A+XP7okP++iVVuK/BbCZ+mgHQoxzLEHamB0YXR4IO5XCZtAQ5jfcH
iX8UfIjPV8wNFAJEtbUAsGeTX/G9VnaUznBPFUX3eFMdjMANNEWaLNLr5gR5fhZS
bdnfbgEF+4QavZodnnuGGru1S2t0jPw4Bs1hJu63OkmveLy58WmpHDPmS3DSZIz3
mVy1gGmZuagxnU1Y8XpQckQvi2VbHriPZmNUPPkKeOvdD/n8Is0i1nmK25rgRnRi
4rIHgNEb2123/dOywUWqjGsD1gfSwU+bfc3SRIeDrFKyBLXF9O1BVHiEO/qLBDek
xeu9QTean7Ipe5on5x5r+Xf9Pdx62DYdY4sUxqYMNWGbVCOEWSUBkP8qIyeU4H8Q
a7JTT+0a73Ic4SUIE+W7TkMWPj+WBDozPHzPyIqX9i7NrH9F1Zo=
=p1Lh
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.47/debian/changelog 
libdatetime-timezone-perl-2.47/debian/changelog
--- libdatetime-timezone-perl-2.47/debian/changelog 2023-03-24 
16:58:22.0 +0100
+++ libdatetime-timezone-perl-2.47/debian/changelog 2023-03-29 
20:21:49.0 +0200
@@ -1,3 +1,11 @@
+libdatetime-timezone-perl (1:2.47-1+2023c) bullseye; urgency=medium
+
+  * Update data to Olson database version 2023c.
+This update has the same zone data as 2023a, undoing the changes for
+Lebanon from the 2023b release past week.
+
+ -- gregor herrmann   Wed, 29 Mar 2023 20:21:49 +0200
+
 libdatetime-timezone-perl (1:2.47-1+2023b) bullseye; urgency=medium
 
   * Update data to Olson database version 2023b.
diff -Nru libdatetime-timezone-perl-2.47/debian/patches/olson-2023c 
libdatetime-timezone-perl-2.47/debian/patches/olson-2023c
--- libdatetime-timezone-perl-2.47/debian/patches/olson-2023c   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.47/debian/patches/olson-2023c   2023-03-29 
20:21:49.0 +0200
@@ -0,0 +1,6513 @@
+Description: Update to Olson DB 2023c
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2023-03-29
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2023b
++# Generated from debian/tzdata/africa.  Olson data version 2023c
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2023b'}
++sub olson_version {'2023c'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Asia/Beirut.pm
 b/lib/DateTime/TimeZone/Asia/Beirut.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/asia.  Olson data version 2023b
++# Generated from debian/tzdata/asia.  Olson data version 2023c
+ #
+ # Do not edit this file directly.
+ #
+@@ -1024,17 +1024,17 @@
+ ],
+ [
+ 63802760400, #utc_start 2022-10-29 21:00:00 (Sat)
+-63817711200, #  utc_end 2023-04-20 22:00:00 (Thu)
++63815464800, #  utc_end 2023-03-25 22:00:00 (Sat)
+ 63802767600, #  local_start 2022-10-29 23:00:00 (Sat)
+-63817718400, #local_end 2023-04-21 00:00:00 (Fri)
++63815472000, #local_end 2023-03-26 00:00:00 (Sun)
+ 7200,
+ 0,
+ 'EET',
+ ],
+ [
+-63817711200, #utc_start 2023-04-20 22:00:00 (Thu)
++63815464800, #utc_start 2023-03-25 22:00:00 (Sat)
+ 6383421, #  utc_end 2023-10-28 21:00:00 (Sat)
+-63817722000, #  local_start 2023-04-21 01:00:00 (Fri)
++63815475600, #  local_start 2023-03-26 01:00:00 (Sun)
+ 63834220800, #local_end 2023-10-29 00:00:00 (Sun)
+ 10800,
+ 1,
+@@ -1240,7 +1240,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2023b'}
++sub olson_version {'2023c'}
+ 
+ sub has_dst_changes {67}
+ 
+@@ -1293,24 +1293,24 @@
+ my $rules = [
+   bless( {
+ 'at' => '0:00',
+-'from' => '1999',
+-'in' => 'Oct',
+-'letter' => '',
++'from' => '1993',
++'in' => 'Mar',
++'letter' => 'S',
+ 'name' => 'Lebanon',
+-'offset_from_std' => 0,
++'offset_from_std' => 3600,
+ 'on' =&

Bug#1033664: unblock: libdatetime-timezone-perl/1:2.60-1+2023c

2023-03-29 Thread gregor herrmann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock
X-Debbugs-Cc: libdatetime-timezone-p...@packages.debian.org, 
debian-p...@lists.debian.org
Control: affects -1 + src:libdatetime-timezone-perl

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

New week, new tzdata release!

I've uploaded libdatetime-timezone-perl 1:2.60-1+2023c to unstable.
This is the new 2.60 upstream release, which incorporates the tzdata
changes from 2023c.

The only change is in the lib/DateTime/TimeZone/Asia/Beirut.pm,
mirroring the tzdata change (reverting the data back to 2023a /
undoing the changes for Lebanon in 2023b after the decision to not
postpone DST any longer).

I'm attaching a manually stripped down debdiff against the last
upload (1:2.59-1+2023b) which was already unblocked; the exlcuded
files only contain changes in the versions (2.59 -> 2.60 and 2023b ->
2023c).


unblock libdatetime-timezone-perl/1:2.60-1+2023c


Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmQkfE9fFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgbMpBAAse3vS6BgkfNXvrN9iC7yr4QzG4pYdhyM7keMIapecfIhU68i74lwDKH/
XOpgFbrqB+al1pYqu+Dx4WGYjJhQX4cSARApKHNWfocfK6nvwEpB5C/C+CuFGME/
XFRQ7aSMERXE7x3w6he3Aco36jRuAd9MyzURtXAPShvxc+tYskbfy4ET+5SQBrxL
meBOvDHtcUQVuiTJneU0niMT4X5Fdu1pS83I+oZdqPLs4KZZoBsXnHQZBUr74Lph
5RKGKw8q85ANB3u7/PZiwhLDg21HOmZvlVNomjUbR7Zcb2bsoofJcnQiRej+MhDF
qV7n3BQzphnkiBPSjjj61uxG0gxRKFQc6SUmGWMC7SSuwsCKpBLDrjAs0npF0JK7
4+VoN56gZv/Zgw36FwsgrQP9dJpCvtGTu1QT9mkvXhTNhjBZSRe6Ci8I7l5kz2wL
Bcp00yvj3A3sdLz+sjVmKDmxgH9TzVEKApGthokHm2zWA1geaoaG0ycOj5w9i3gs
axoAGgqMh8KCmcyjxzuRIHyxBBs6Ac22l9VSpdcU3JbBw9MrUuT7vDuOdD2v4UPu
Ky8CvI/Hm2vC6U3ApTDixFYOfmsGD1yPaqol27tb3yErbrouq+n21l6B9i4XR8dy
Qz8iXiNI05TJAT4Bq8tPMJeDeYdh4x8Qp9sQ4Q+w/5HB6MFBkoA=
=ld/4
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.59/Changes 
libdatetime-timezone-perl-2.60/Changes
--- libdatetime-timezone-perl-2.59/Changes  2023-03-24 05:36:13.0 
+0100
+++ libdatetime-timezone-perl-2.60/Changes  2023-03-29 04:44:55.0 
+0200
@@ -1,3 +1,10 @@
+2.602023-03-28
+
+- This release is based on version 2023c of the Olson database. The 2023c
+  release has the same zone data as 2023a, undoing the changes for Lebanon
+  from the past week.
+
+
 2.592023-03-23
 
 - This release is based on version 2023b of the Olson database. This release
diff -Nru libdatetime-timezone-perl-2.59/META.json 
libdatetime-timezone-perl-2.60/META.json
diff -Nru libdatetime-timezone-perl-2.59/debian/changelog 
libdatetime-timezone-perl-2.60/debian/changelog
--- libdatetime-timezone-perl-2.59/debian/changelog 2023-03-24 
16:38:06.0 +0100
+++ libdatetime-timezone-perl-2.60/debian/changelog 2023-03-29 
19:46:25.0 +0200
@@ -1,3 +1,12 @@
+libdatetime-timezone-perl (1:2.60-1+2023c) unstable; urgency=medium
+
+  * Import upstream version 2.60.
+This release is based on version 2023c of the Olson database. It has the
+same zone data as 2023a, undoing the changes for Lebanon from the past
+week.
+
+ -- gregor herrmann   Wed, 29 Mar 2023 19:46:25 +0200
+
 libdatetime-timezone-perl (1:2.59-1+2023b) unstable; urgency=medium
 
   * Import upstream version 2.59.
diff -Nru 
libdatetime-timezone-perl-2.59/lib/DateTime/TimeZone/Africa/Abidjan.pm 
libdatetime-timezone-perl-2.60/lib/DateTime/TimeZone/Africa/Abidjan.pm
--- libdatetime-timezone-perl-2.59/lib/DateTime/TimeZone/Africa/Abidjan.pm  
2023-03-24 05:36:13.0 +0100
+++ libdatetime-timezone-perl-2.60/lib/DateTime/TimeZone/Africa/Abidjan.pm  
2023-03-29 04:44:55.0 +0200
@@ -3,7 +3,7 @@
 # DateTime::TimeZone module distribution in the tools/ directory
 
 #
-# Generated from /tmp/D3ET7029pk/africa.  Olson data version 2023b
+# Generated from /tmp/DzE_ngvtVe/africa.  Olson data version 2023c
 #
 # Do not edit this file directly.
 #
@@ -13,7 +13,7 @@
 use warnings;
 use namespace::autoclean;
 
-our $VERSION = '2.59';
+our $VERSION = '2.60';
 
 use Class::Singleton 1.03;
 use DateTime::TimeZone;
@@ -43,7 +43,7 @@
 ],
 ];
 
-sub olson_version {'2023b'}
+sub olson_version {'2023c'}
 
 sub has_dst_changes {0}
 
diff -Nru libdatetime-timezone-perl-2.59/lib/DateTime/TimeZone/Asia/Beirut.pm 
libdatetime-timezone-perl-2.60/lib/DateTime/TimeZone/Asia/Beirut.pm
--- libdatetime-timezone-perl-2.59/lib/DateTime/TimeZone/Asia/Beirut.pm 
2023-03-24 05:36:13.0 +0100
+++ libdatetime-timezone-perl-2.60/lib/DateTime/TimeZone/Asia/Beirut.pm 
2023-03-29 04:44:55.0 +0200
@@ -3,7 +3,7 @@
 # DateTime::TimeZone module distribution in the tools/ directory
 
 #
-# Generated from /tmp/D3ET7029pk/asia.  Olson data version 2023b
+# Generated from /tmp/DzE_ngvtVe/asia.  Olson data version 2023c
 #
 # Do not edit this file directly.
 #
@@ -13,7 +13,7 @@
 use warnings;
 use namespace::aut

Bug#1033412: bullseye-pu: package libdatetime-timezone-perl/1:2.47-1+2023b

2023-03-24 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: libdatetime-timezone-p...@packages.debian.org, 
debian-p...@lists.debian.org
Control: affects -1 + src:libdatetime-timezone-perl

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.47-1+2023b to bullseye,
with the changes from the Olson db 2023b release included as a new
quilt patch.


tzdata changes:

2023a:
Egypt now uses DST again, from April through October.
This year Morocco springs forward April 23, not April 30.
Palestine delays the start of DST this year.
Much of Greenland still uses DST from 2024 on.

2023b:
Lebanon delays the start of DST this year.


Manually stripped down debdiff attached.


Thanks in advacne,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmQdzJxfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgbX8xAAwcp/vWGgjoaZg/Z8nvkRaaGcheJh5ZjQAz5bV7Qdq0NIINPzFVI+qQ3f
bXPUfTxjYRuYln7defgYxpeFkze30temxzLmhZxFq65BlR3ELqnrNTo95FSfA+lR
S5loojeFgTO3ZSMU/1KcjawF4G6jLXqPef4cO/7IC66OY32Z3JbWpK86KyJImO3D
/dohaZ3NFhvTZPWbkQGePFTCQEk0yOtvs7PwIcH3chXhVbeIWxxF9H96QuOQZk/z
5kcQBljccNSh0b5B0yuXhcUTn6o/MR/lmr8luJgTZNbe+p79cnwyzssNJLrAX6OK
rUNBIkfZypZ1kanuR+ZqbWjO3sv/hcHLXrad5A1Ldd1l7QnX7wFHXiyaBjvBmhtB
XFd/1ZzRC1S6P8Co0+3fOaylziGFL4vkZ89JO4//MZfr76iPxodSisQlP9aW4cPI
r9rn7BuQKbTzcdoZW8Oeui2nwgv/gXfBxIaLeAtQE1vsrgTi8wa2/cBb+IlNyeSR
XCwIMx6FReZ1qp2Q+C8iMmeKRv+w2judEOmXglyt538J4l7juIhjv2mVCZRah7rQ
5ZI/nZws8PhGxR622Q/P7VwC/wfkjeCVNXWoGICoqByZ0OHtFhF2FX1/Dc+s+XqN
AYo2er4wwv2rmbf5zygNY/CigSgWI4fp9ydfmqV2mFW9HmzOmDA=
=hp+9
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.47/debian/changelog 
libdatetime-timezone-perl-2.47/debian/changelog
--- libdatetime-timezone-perl-2.47/debian/changelog 2022-11-30 
18:14:07.0 +0100
+++ libdatetime-timezone-perl-2.47/debian/changelog 2023-03-24 
16:58:22.0 +0100
@@ -1,3 +1,11 @@
+libdatetime-timezone-perl (1:2.47-1+2023b) bullseye; urgency=medium
+
+  * Update data to Olson database version 2023b.
+This update contains contemporary changes for Egypt, Greenland, Morocco,
+and Palestine (2023a), and for Lebanon (2023b).
+
+ -- gregor herrmann   Fri, 24 Mar 2023 16:58:22 +0100
+
 libdatetime-timezone-perl (1:2.47-1+2022g) bullseye; urgency=medium
 
   * Update data to Olson database version 2022g.
diff -Nru libdatetime-timezone-perl-2.47/debian/patches/olson-2023b 
libdatetime-timezone-perl-2.47/debian/patches/olson-2023b
--- libdatetime-timezone-perl-2.47/debian/patches/olson-2023b   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.47/debian/patches/olson-2023b   2023-03-24 
16:58:22.0 +0100
@@ -0,0 +1,16906 @@
+Description: Update to Olson DB 2023b
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2023-03-24
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2022g
++# Generated from debian/tzdata/africa.  Olson data version 2023b
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,11 +43,11 @@
+ ],
+ ];
+ 
+-sub olson_version {'2022g'}
++sub olson_version {'2023b'}
+ 
+ sub has_dst_changes {0}
+ 
+-sub _max_year {2032}
++sub _max_year {2033}
+ 
+ sub _new_instance {
+ return shift->_init( @_, spans => $spans );
+--- a/lib/DateTime/TimeZone/Asia/Beirut.pm
 b/lib/DateTime/TimeZone/Asia/Beirut.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/asia.  Olson data version 2022g
++# Generated from debian/tzdata/asia.  Olson data version 2023b
+ #
+ # Do not edit this file directly.
+ #
+@@ -1024,17 +1024,17 @@
+ ],
+ [
+ 63802760400, #utc_start 2022-10-29 21:00:00 (Sat)
+-63815464800, #  utc_end 2023-03-25 22:00:00 (Sat)
++63817711200, #  utc_end 2023-04-20 22:00:00 (Thu)
+ 63802767600, #  local_start 2022-10-29 23:00:00 (Sat)
+-63815472000, #local_end 2023-03-26 00:00:00 (Sun)
++63817718400, #local_end 2023-04-21 00:00:00 (Fri)
+ 7200,
+ 0,
+ 'EET',
+ ],
+ [
+-63815464800, #utc_start 2023-03-25 22:00:00 (Sat)
++63817711200, #utc_start 2023-04-20 22:00:00 (Thu)
+ 6383421, #  utc_end 2023-10-28 21:00:00 (Sat)
+-63815475600, #  local_start 2023-03-26 01:00:00 (Sun)
++63817722000, #  local_start 2023-04-21 01:00:00 (Fri)
+ 63834220800, #local_end 2023-10-29 00:00:00 (Sun)
+ 10800,
+ 1,
+@@ -1220,13 +1220,31 @@
+ 1,
+ 'EEST',
+ ],
++[
++64149915600, #utc_start 2033-10-29 21:00:00 (Sat)
++6416262, #  utc_end 2034-03-25 22:00:00 (Sat)
++64149922800, #  local_start 2033-10-29 23:00:00 (Sat)
++64162627200, #local_end 2034-03

Bug#1033411: unblock: libdatetime-timezone-perl/1:2.59-1+2023b

2023-03-24 Thread gregor herrmann
 of upstream and packaging copyright.
+  * Declare compliance with Debian Policy 4.6.2.
+
+ -- gregor herrmann   Fri, 24 Mar 2023 16:38:06 +0100
+
 libdatetime-timezone-perl (1:2.56-1+2022g) unstable; urgency=high
 
   * Update data to Olson database version 2022g. This update contains
diff -Nru libdatetime-timezone-perl-2.56/debian/control 
libdatetime-timezone-perl-2.59/debian/control
--- libdatetime-timezone-perl-2.56/debian/control   2022-11-30 
18:03:44.0 +0100
+++ libdatetime-timezone-perl-2.59/debian/control   2023-03-24 
16:38:06.0 +0100
@@ -19,7 +19,7 @@
  libtest-taint-perl ,
  libtry-tiny-perl ,
  perl
-Standards-Version: 4.6.1
+Standards-Version: 4.6.2
 Vcs-Browser: 
https://salsa.debian.org/perl-team/modules/packages/libdatetime-timezone-perl
 Vcs-Git: 
https://salsa.debian.org/perl-team/modules/packages/libdatetime-timezone-perl.git
 Homepage: http://datetime.perl.org/
diff -Nru libdatetime-timezone-perl-2.56/debian/copyright 
libdatetime-timezone-perl-2.59/debian/copyright
--- libdatetime-timezone-perl-2.56/debian/copyright 2022-11-30 
18:03:44.0 +0100
+++ libdatetime-timezone-perl-2.59/debian/copyright 2023-03-24 
16:38:06.0 +0100
@@ -4,7 +4,7 @@
 Source: https://metacpan.org/release/DateTime-TimeZone
 
 Files: *
-Copyright: 2022, David Rolsky 
+Copyright: 2023, David Rolsky 
 License: Artistic or GPL-1+
 
 Files: debian/*
@@ -12,7 +12,7 @@
  2008, Damyan Ivanov 
  2008, Krzysztof Krzyżaniak (eloy) 
  2009-2011, Jonathan Yu 
- 2009-2022, gregor herrmann 
+ 2009-2023, gregor herrmann 
  2011, Nicholas Bamber 
 License: Artistic or GPL-1+
 
diff -Nru libdatetime-timezone-perl-2.56/debian/patches/series 
libdatetime-timezone-perl-2.59/debian/patches/series
--- libdatetime-timezone-perl-2.56/debian/patches/series2022-11-30 
18:03:44.0 +0100
+++ libdatetime-timezone-perl-2.59/debian/patches/series1970-01-01 
01:00:00.0 +0100
@@ -1 +0,0 @@
-olson-2022g
diff -Nru 
libdatetime-timezone-perl-2.56/lib/DateTime/TimeZone/Africa/Abidjan.pm 
libdatetime-timezone-perl-2.59/lib/DateTime/TimeZone/Africa/Abidjan.pm
--- libdatetime-timezone-perl-2.56/lib/DateTime/TimeZone/Africa/Abidjan.pm  
2022-10-29 05:14:21.0 +0200
+++ libdatetime-timezone-perl-2.59/lib/DateTime/TimeZone/Africa/Abidjan.pm  
2023-03-24 05:36:13.0 +0100
@@ -3,7 +3,7 @@
 # DateTime::TimeZone module distribution in the tools/ directory
 
 #
-# Generated from /tmp/ehRi0awH48/africa.  Olson data version 2022f
+# Generated from /tmp/D3ET7029pk/africa.  Olson data version 2023b
 #
 # Do not edit this file directly.
 #
@@ -13,7 +13,7 @@
 use warnings;
 use namespace::autoclean;
 
-our $VERSION = '2.56';
+our $VERSION = '2.59';
 
 use Class::Singleton 1.03;
 use DateTime::TimeZone;
@@ -43,11 +43,11 @@
 ],
 ];
 
-sub olson_version {'2022f'}
+sub olson_version {'2023b'}
 
 sub has_dst_changes {0}
 
-sub _max_year {2032}
+sub _max_year {2033}
 
 sub _new_instance {
 return shift->_init( @_, spans => $spans );
diff -Nru 
libdatetime-timezone-perl-2.56/lib/DateTime/TimeZone/Africa/Algiers.pm 
libdatetime-timezone-perl-2.59/lib/DateTime/TimeZone/Africa/Algiers.pm
diff -Nru libdatetime-timezone-perl-2.56/lib/DateTime/TimeZone/Asia/Beirut.pm 
libdatetime-timezone-perl-2.59/lib/DateTime/TimeZone/Asia/Beirut.pm
--- libdatetime-timezone-perl-2.56/lib/DateTime/TimeZone/Asia/Beirut.pm 
2022-10-29 05:14:21.0 +0200
+++ libdatetime-timezone-perl-2.59/lib/DateTime/TimeZone/Asia/Beirut.pm 
2023-03-24 05:36:13.0 +0100
@@ -3,7 +3,7 @@
 # DateTime::TimeZone module distribution in the tools/ directory
 
 #
-# Generated from /tmp/ehRi0awH48/asia.  Olson data version 2022f
+# Generated from /tmp/D3ET7029pk/asia.  Olson data version 2023b
 #
 # Do not edit this file directly.
 #
@@ -13,7 +13,7 @@
 use warnings;
 use namespace::autoclean;
 
-our $VERSION = '2.56';
+our $VERSION = '2.59';
 
 use Class::Singleton 1.03;
 use DateTime::TimeZone;
@@ -1024,17 +1024,17 @@
 ],
 [
 63802760400, #utc_start 2022-10-29 21:00:00 (Sat)
-63815464800, #  utc_end 2023-03-25 22:00:00 (Sat)
+63817711200, #  utc_end 2023-04-20 22:00:00 (Thu)
 63802767600, #  local_start 2022-10-29 23:00:00 (Sat)
-63815472000, #local_end 2023-03-26 00:00:00 (Sun)
+63817718400, #local_end 2023-04-21 00:00:00 (Fri)
 7200,
 0,
 'EET',
 ],
 [
-63815464800, #utc_start 2023-03-25 22:00:00 (Sat)
+63817711200, #utc_start 2023-04-20 22:00:00 (Thu)
 6383421, #  utc_end 2023-10-28 21:00:00 (Sat)
-63815475600, #  local_start 2023-03-26 01:00:00 (Sun)
+63817722000, #  local_start 2023-04-21 01:00:00 (Fri)
 63834220800, #local_end 2023-10-29 00:00:00 (Sun)
 10800,
 1,
@@ -1220,13 +1220,31 @@
 1,
 'EEST',
 ],
+[
+64149915600, #utc_start 2033-10-29 21:00:00 (Sat)
+6416262, #  utc_end 2034-03-25 22:00:00 (Sat)
+64149922800, #  local_start 2033-10-29 23:00:0

Bug#1032389: unblock: libdate-manip-perl/6.91-1

2023-03-05 Thread gregor herrmann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock
X-Debbugs-Cc: libdate-manip-p...@packages.debian.org, 
debian-p...@lists.debian.org
Control: affects -1 + src:libdate-manip-perl

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdate-manip-perl/6.91-1 to unstable, and I think this
should go into bookworm. If I'm doing the math correctly, it won't
migrate before the start of the hard freeze and then needs a manual
review and unblock, as it's considered a key package.

6.91 is a bugfix release, it has only one small change but that one
fixes a bug:

#v+
commit e68bafb046aee9b34763b0e8207ce8359467b83a
Author: Sandi Wallendahl 
Date:   Thu Feb 23 17:52:14 2023 +0200

Check also the Alias hash from Zones.pm for the zone verification.

diff --git a/lib/Date/Manip/TZ.pm b/lib/Date/Manip/TZ.pm
index f2aad0f7b..0fb41287e 100644
- --- a/lib/Date/Manip/TZ.pm
+++ b/lib/Date/Manip/TZ.pm
@@ -762,7 +762,8 @@ sub _zoneinfo_file_name_to_zone {
my($file,$zoneinfo) = @_;
require File::Spec;
my $zone = File::Spec->abs2rel($file,$zoneinfo);
- -   return $zone  if (exists $Date::Manip::Zones::ZoneNames{lc($zone)});
+   return $zone  if (exists $Date::Manip::Zones::ZoneNames{lc($zone)} ||
+ exists $Date::Manip::Zones::Alias{lc($zone)});
return;
 }
#v-

That's https://github.com/SBECK-github/Date-Manip/pull/43


I'm attaching a stripped down debdiff with all relevant changes (the
rest are bumped versions and copyright years in each and every of the
upstream files).


unblock libdate-manip-perl/6.91-1


Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmQE3W9fFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgaclQ/+JOfMpUffQ02FC2ToXQ0ac6APplUw5Gy8fxJjGcWP9x8sW+EZMZUm2O81
je+WHkxcGoASQyK7IleK9hp+A7VQnSgDt2UvQbxhGfVO8bQrptgF0XxJ60EWMVDB
nzhrgcfei7Qhk51QOhm0HFvc5rHj+MECrCM0939sg03lz4z/Lomq6oHZwgYfo246
OmNhN9+2aE2HnLQit0McgFgx41IT8Uc4OkYsZ0mXC+pjjWEItHTxgUNf0pDFXBt4
VE1aZEcOTrS1QthMvpbp21FvO2FuSveE1d1PafgGQ3UNS65oTCXi+v9urLIsfTjk
JuRUTpoFzM1pY78HuMFuUT6UWIxG2H3MFNf8Ao1DJUH0Aj4/fKlJPJ7y8/8A+YDJ
+ymmi2EsMe2Nd9OmfvpLkFqyj9721veoxGMW4vmmZL5hfDPWal+AAyLy8fbVd7Ml
PloCYm4MngVAZWub1CmfKD8KfoQtej73i0fyZJnc+sDPh5x/8CfwwAGzaRE4b6J0
v6MmuddRT09Dn6TtaVhuECaBCDsTA4HtgiWOHJfU5YI0E4jzqnjHxIG5yVFh1Tvq
ZNq+JFrucjJ4oISWjjYb1USkqT8fpXBv54rLy2zs3Q5j+WoIvLxPljQrECOm4Yp7
tXC4Wf1ms10PcCeBBOmFFtvsmA/FZEknKsBeCD7sQol7bslMP3k=
=wHu2
-END PGP SIGNATURE-
diff -Nru libdate-manip-perl-6.90/Changes libdate-manip-perl-6.91/Changes
--- libdate-manip-perl-6.90/Changes 2022-12-02 18:58:17.0 +0100
+++ libdate-manip-perl-6.91/Changes 2023-03-01 17:56:24.0 +0100
@@ -15,6 +15,12 @@
 and that document should be considered the canonical source for all change
 related information.
 
+6.91  2023-03-01
+  -  Fixed bug where timezone alias wasn't handled
+ On linux systems configured to be in a timezone that is an alias,
+ the system timezone wasn't recognized, and it defaulted to GMT.
+ This is now fixed. Patch supplied by Sandi Wallendahl (GitHub #43)
+
 6.90  2022-12-02
   -  Time zone fixes
  Aliases in the tzdata database were not being added to the timezone
diff -Nru libdate-manip-perl-6.90/README.first 
libdate-manip-perl-6.91/README.first
--- libdate-manip-perl-6.90/README.first2022-03-02 21:19:25.0 
+0100
+++ libdate-manip-perl-6.91/README.first2023-03-01 17:55:59.0 
+0100
@@ -1,4 +1,4 @@
-Copyright (c) 1995-2022 Sullivan Beck. All rights reserved.
+Copyright (c) 1995-2023 Sullivan Beck. All rights reserved.
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
 
diff -Nru libdate-manip-perl-6.90/debian/changelog 
libdate-manip-perl-6.91/debian/changelog
--- libdate-manip-perl-6.90/debian/changelog2022-12-03 18:44:50.0 
+0100
+++ libdate-manip-perl-6.91/debian/changelog2023-03-05 19:06:02.0 
+0100
@@ -1,3 +1,11 @@
+libdate-manip-perl (6.91-1) unstable; urgency=medium
+
+  * Import upstream version 6.91.
+  * Update years of upstream and packaging copyright.
+  * Declare compliance with Debian Policy 4.6.2.
+
+ -- gregor herrmann   Sun, 05 Mar 2023 19:06:02 +0100
+
 libdate-manip-perl (6.90-1) unstable; urgency=medium
 
   * Fix typo in changelog entry for 6.89-1.
diff -Nru libdate-manip-perl-6.90/debian/control 
libdate-manip-perl-6.91/debian/control
--- libdate-manip-perl-6.90/debian/control  2022-12-03 18:44:50.0 
+0100
+++ libdate-manip-perl-6.91/debian/control  2023-03-05 19:06:02.0 
+0100
@@ -9,7 +9,7 @@
 Build-Depends: debhelper-compat (= 13)
 Build-Depends-Indep: libtest-inter-perl (>= 1.09) ,
  perl
-Standards-Version: 4.6.1
+Standards-Version: 4.6.2
 Vcs-Browser: 

Re: Accepted wxwidgets3.2 3.2.2+dfsg-1 (source) into unstable

2023-02-12 Thread gregor herrmann
On Mon, 13 Feb 2023 00:09:20 +0100, Cyril Brulebois wrote:

> Debian FTP Masters  (2023-02-11):
> > Format: 1.8
> > Date: Sat, 11 Feb 2023 13:15:16 -0500
> > Source: wxwidgets3.2
> > Architecture: source
> > Version: 3.2.2+dfsg-1
> > Distribution: unstable
> > Urgency: medium
> > Maintainer: wxWidgets Maintainers 
> > Changed-By: Scott Talbert 
> > Closes: 1028427
> > Changes:
> >  wxwidgets3.2 (3.2.2+dfsg-1) unstable; urgency=medium
> >  .
> >* d/watch: fix download URL when using GitHub API
> >* Update to new upstream release 3.2.2
> >* Add Breaks/Replaces to libwxgtk-gl3.2-1 (Closes: #1028427)
> 
> This seems to have made libalien-wxwidgets-perl uninstallable, as seen in
> my devel chroot but also for any systems, as mentioned on tracker:
>   https://tracker.debian.org/pkg/wxwidgets3.2

If we're lucky, a binNMU of libalien-wxwidgets-perl against
libwxgtk3.2-dev,libwxgtk-media3.2-dev 3.2.2 (and later of libwx-perl
against the rebuilt libalien-wxwidgets-perl) might be enough.

A local rebuild of libalien-wxwidgets-perl runs through, including
autopkgtests.

(I haven't tried the second step with libwx-perl.)
 

Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at -- Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member VIBE!AT & SPI Inc. -- Supporter Free Software Foundation Europe
   `-   


signature.asc
Description: Digital Signature


Bug#1025173: bullseye-pu: package libdatetime-timezone-perl/1:2.47-1+2022g

2022-11-30 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

tzdata 2022g was released, so I've uploaded
libdatetime-timezone-perl/1:2.47-1+2022g to bullseye with the data
changes as a quilt patch.

Information from tzdata upstream about the changes:

  Changes to future timestamps

In the Mexican state of Chihuahua, the border strip near the US
will change to agree with nearby US locations on 2022-11-30.
The strip's western part, represented by Ciudad Juárez, switches
from -06 all year to -07/-06 with US DST rules, like El Paso, TX.
The eastern part, represented by Ojinaga, will observe US DST next
year, like Presidio, TX.  (Thanks to Heitor David Pinto.)
A new Zone America/Ciudad_Juarez splits from America/Ojinaga.

Much of Greenland, represented by America/Nuuk, stops observing
winter time after March 2023, so its daylight saving time becomes
standard time.  (Thanks to Jonas Nyrup and Jürgen Appel.)


A manually stripped down debdiff is attached.

Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmOHkTRfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qga/WQ//UkDeY2YazD4np7Coyv1fzrceMmU+WpMkVGE+3byb66Xkw+N8MOFYEKRb
SHYNNEDrARmflDimPRjZkGgchdXU789HGHbB+tAKYE5Ev1WEMIKjbLsL9zkV6G09
UjFe5SIoY3V90jblOONtRWUxHaO5DsKt9jQYRc7LHbsEdgQq+Nkq+Kj+jCHGILXo
1nLxi/Qxe6vbozFVQewTJery7pg706tQzxzKfR+9t8maS+dpf88aVoJoRld98yvc
5n2WyHZS8CcJsrHvqkBiZtRoyde5kN4x/bO8Y1xdme+ToUJ3aJLmWNmnPbLaIe7H
tI8LnPCziVyYjf/il3FVkD2EwoxfZZEMng2jkYo1At1azYOcCLTpM46OYI3SoCBW
i5sBp0A6FtA1+5JlE2zXz59ofbeoVCk+w6FZnuQe+OQcbEGpC7kra9zr/gnZylXl
6k1nmjDucmvSnDzChbOclEZR95B1z/d+iCwzdkiTpDK3sGCTNNZsqqc6gMeb250I
WvmxYvx/dY0Y/6tqkQuKwipT904h/6YJ/ccWRPtxZzMd4FG+ghtkTQxQ7aQ8wXuv
liOdNs63JsZTjT2RpfoinmnBZpzKAZvwlC165zqdUGr8eT3kGuU903eksBOgLETG
eM3HdZbmFgbbCBKi5QSDZZm7MV71cBN8E/jqQACRCg9oFks1Z1I=
=qen3
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.47/debian/changelog 
libdatetime-timezone-perl-2.47/debian/changelog
--- libdatetime-timezone-perl-2.47/debian/changelog 2022-10-29 
22:24:15.0 +0200
+++ libdatetime-timezone-perl-2.47/debian/changelog 2022-11-30 
18:14:07.0 +0100
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.47-1+2022g) bullseye; urgency=medium
+
+  * Update data to Olson database version 2022g.
+This update contains contemporary changes for Mexico and Greenland.
+
+ -- gregor herrmann   Wed, 30 Nov 2022 18:14:07 +0100
+
 libdatetime-timezone-perl (1:2.47-1+2022f) bullseye; urgency=medium
 
   * Update to Olson database version 2022f.
diff -Nru libdatetime-timezone-perl-2.47/debian/patches/olson-2022g 
libdatetime-timezone-perl-2.47/debian/patches/olson-2022g
--- libdatetime-timezone-perl-2.47/debian/patches/olson-2022g   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.47/debian/patches/olson-2022g   2022-11-30 
18:14:07.0 +0100
@@ -0,0 +1,10257 @@
+Description: Update to Olson DB 2022g
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2022-11-30
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2022f
++# Generated from debian/tzdata/africa.  Olson data version 2022g
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2022f'}
++sub olson_version {'2022g'}
+ 
+ sub has_dst_changes {0}
+ 
+--- /dev/null
 b/lib/DateTime/TimeZone/America/Ciudad_Juarez.pm
+@@ -0,0 +1,881 @@
++# This file is auto-generated by the Perl DateTime Suite time zone
++# code generator (0.08) This code generator comes with the
++# DateTime::TimeZone module distribution in the tools/ directory
++
++#
++# Generated from debian/tzdata/northamerica.  Olson data version 2022g
++#
++# Do not edit this file directly.
++#
++package DateTime::TimeZone::America::Ciudad_Juarez;
++
++use strict;
++use warnings;
++use namespace::autoclean;
++
++our $VERSION = '2.47';
++
++use Class::Singleton 1.03;
++use DateTime::TimeZone;
++use DateTime::TimeZone::OlsonDB;
++
++@DateTime::TimeZone::America::Ciudad_Juarez::ISA = ( 'Class::Singleton', 
'DateTime::TimeZone' );
++
++my $spans =
++[
++[
++DateTime::TimeZone::NEG_INFINITY, #utc_start
++60620943600, #  utc_end 1922-01-01 07:00:00 (Sun)
++DateTime::TimeZone::NEG_INFINITY, #  local_start
++60620918044, #local_end 1921-12-31 23:54:04 (Sat)
++-25556,
++0,
++'LMT',
++],
++[
++60620943600, #utc_start 1922-01-01 07:00:00 (Sun)
++60792616800, #  utc_end 1927-06-11 06:00:00 (Sat)
++60620918400, #  local_start 1922-01-01 00:00:00 (Sun)
++60792591600, #local_end 1927-06-10 23:00:00 (Fri)
++-25200,
++0

Bug#1023064: bullseye-pu: package libdatetime-timezone-perl/1:2.47-1+2022f

2022-10-29 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: debian-p...@lists.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.47-1+2022f to bullseye,
with the changes from tzdata 2022f applied to the perl data
structures as a quilt patch.

Changes, taken from tzdata upstream:

   Mexico will no longer observe DST after 2022, except for areas
near the US border that continue to observe US DST rules.
On 2022-10-30 at 02:00 the Mexican state of Chihuahua moves
from -07 (-06 with DST) to year-round -06, thus not changing
its clocks that day.  The new law states that Chihuahua
near the US border no longer observes US DST.
(Thanks to gera for the heads-up about Chihuahua.)

Fiji will not observe DST in 2022/3.  (Thanks to Shalvin Narayan.)
For now, assume DST is suspended indefinitely.


I'm attaching a stripped down debdiff.


Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmNdjaRfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgaWSg/+OUnckBHcKKHqHLaYmfF32B5XK2y3l0w1Hd2Rotg2g/GGvL/2Tdg4tVya
mMaKgjyLl2jGLefyQrgKHNsMxbiGatcwcZzDyQZJQoCaEPBLKL8t1AviRVzHdUod
FRhCoKF1MjZYkT/ccDwVWn2uJcp1KYbjtK7IBCfB/4MUXx7i034VEWmNB23kBREf
R9QMbBVZ8dCChUrzRXNHXYkbg13UrSHDWMKIiQpUXWhsRAPz4tgm6iZ5nIoe9XTI
biLmB2slQ1aKQ0m2vvQXu2YLch0tf8FPizA707KQGKqV96NX8cycVULaL8zbcEMk
33Xt7aqEUbvlyHmwAYGiKl8YtBqKtz6eF6kMrAKekVNjereQK+Jjt+r2zZmiceim
xUgfom2TIeDQJKD2ip2vzH55xIGxyBuXjQKc9G64dNo5Ee3nuR331s1dMEEESCdV
356+Rm/ny/OptaVpLN6+SjwDxhAW6JRVeVUC7oD0TDzaneDw256Htl6n8xH22nrX
EVbYtXcSACEePd8CmTZHDjPgBY6NHo25UeYrE3B9zxdpjiOUdEuLoV5yOpl655zH
uBMpUYXSGwi80xokTbLbNYEruN7ZNkBn4v/0tXMdwNVyqGBhlPtG76OSt53n7Mj1
d/82QeUuKC9gZ+QOEnZLM94b1zdD2mFneYhcyg0VS2Lcjp0gnPc=
=XjJx
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.47/debian/changelog 
libdatetime-timezone-perl-2.47/debian/changelog
--- libdatetime-timezone-perl-2.47/debian/changelog 2022-10-14 
15:26:55.0 +0200
+++ libdatetime-timezone-perl-2.47/debian/changelog 2022-10-29 
22:24:15.0 +0200
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.47-1+2022f) bullseye; urgency=medium
+
+  * Update to Olson database version 2022f.
+This update includes contemporary changes for Fiji and Mexico.
+
+ -- gregor herrmann   Sat, 29 Oct 2022 22:24:15 +0200
+
 libdatetime-timezone-perl (1:2.47-1+2022e) bullseye; urgency=medium
 
   * Update to Olson database version 2022e.
diff -Nru libdatetime-timezone-perl-2.47/debian/patches/olson-2022f 
libdatetime-timezone-perl-2.47/debian/patches/olson-2022f
--- libdatetime-timezone-perl-2.47/debian/patches/olson-2022f   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.47/debian/patches/olson-2022f   2022-10-29 
22:24:15.0 +0200
@@ -0,0 +1,12698 @@
+Description: Update to Olson DB 2022f
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2022-10-29
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2022e
++# Generated from debian/tzdata/africa.  Olson data version 2022f
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2022e'}
++sub olson_version {'2022f'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/America/Merida.pm
 b/lib/DateTime/TimeZone/America/Merida.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/northamerica.  Olson data version 2022e
++# Generated from debian/tzdata/northamerica.  Olson data version 2022f
+ #
+ # Do not edit this file directly.
+ #
+@@ -538,207 +538,18 @@
+ ],
+ [
+ 63802796400, #utc_start 2022-10-30 07:00:00 (Sun)
+-63816105600, #  utc_end 2023-04-02 08:00:00 (Sun)
++DateTime::TimeZone::INFINITY, #  utc_end
+ 63802774800, #  local_start 2022-10-30 01:00:00 (Sun)
+-63816084000, #local_end 2023-04-02 02:00:00 (Sun)
++DateTime::TimeZone::INFINITY, #local_end
+ -21600,
+ 0,
+ 'CST',
+ ],
+-[
+-63816105600, #utc_start 2023-04-02 08:00:00 (Sun)
+-63834246000, #  utc_end 2023-10-29 07:00:00 (Sun)
+-63816087600, #  local_start 2023-04-02 03:00:00 (Sun)
+-63834228000, #local_end 2023-10-29 02:00:00 (Sun)
+--18000,
+-1,
+-'CDT',
+-],
+-[
+-63834246000, #utc_start 2023-10-29 07:00:00 (Sun)
+-6384816, #  utc_end 2024-04-07 08:00:00 (Sun)
+-63834224400, #  local_start 2023-10-29 01:00:00 (Sun)
+-63848138400, #local_end 2024-04-07 02:00:00 (Sun)
+--21600,
+-0,
+-'CST',
+-],
+-[
+-6384816, #utc_start 2024-04-07 08:00:00 (Sun)
+-63865695600, #  utc_end 2024

Bug#1021777: bullseye-pu: package libdatetime-timezone-perl/1:2.47-1+2022e

2022-10-14 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: debian-p...@lists.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.47-1+2022e to bullseye,
with the changes from the Olson DB 2022e as a quilt patch.

Changes (from tzdata upstream):

Jordan and Syria are abandoning the DST regime and are changing to
permanent +03, so they will not fall back from +03 to +02 on
2022-10-28.

Manually stripped down debdiff attached.


Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmNJZYdfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgbaeg/+PKRORnH6t1JUDsGS8vhhRPvqaQdJ8igUXLRNs1NE/1yX8S/E3oVTBO5t
hyFvTgBcTmCpHoxRaBpH+7xrqQqa2k+OpZ3R0sEhQmB3l48wvC8hQyTqip/QIwlb
FnSWDos/drJ9HMA6z35S7fY7hiQU9PTYyIoG42YKylS46tl0ph8GXu7NtkY6MCtI
ryBXbUeVLEbae4Hn2GjG2qHSf5/heFNu423VNhoYxjbemD9PHcUI/s7ODx83Pw1h
nTDszMSjRCw/t272pE3X8q3OQplYQOQMx80m35L+X1/pQbxrj+GsjF/kTvKAyK0G
+GDVZIja2UUvIOcwR2yQQjCNlZi138VFdAt9UMJIrGL6TBke65IRDvWyiPaPXkT7
k+FaKjjnB/x/5b60fUoP7RCs8/gbZPGDDStD62wVhU7l2YLLgYrrn2JwycOmonKW
BvD5AurfclQ/Sugzv0ICgwBauZlPeGy1/WCULzKjVX65zWXmMj6hg3l+DOWaaXYy
zu+vKkKUlsPI8K5eBk13jBWhL1weVzY+RTMuArSSKUkpBHY0kD+Yvrfry4Q1sCqm
UpZwv/yADDLvrIG/ePfmE4ENrDuK6THIfNW7/PkJieD5xTCEl6vm/bt60/fPgo77
JzZ2RIZJxaZD87JaUMfd7UDLlH2grMFZH1awW4gTqELyfZWnFRk=
=xf9h
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.47/debian/changelog 
libdatetime-timezone-perl-2.47/debian/changelog
--- libdatetime-timezone-perl-2.47/debian/changelog 2022-09-27 
17:14:16.0 +0200
+++ libdatetime-timezone-perl-2.47/debian/changelog 2022-10-14 
15:26:55.0 +0200
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.47-1+2022e) bullseye; urgency=medium
+
+  * Update to Olson database version 2022e.
+This update includes contemporary changes for Jordan and Syria.
+
+ -- gregor herrmann   Fri, 14 Oct 2022 15:26:55 +0200
+
 libdatetime-timezone-perl (1:2.47-1+2022d) bullseye; urgency=medium
 
   * Update to Olson database version 2022d.
diff -Nru libdatetime-timezone-perl-2.47/debian/patches/olson-2022e 
libdatetime-timezone-perl-2.47/debian/patches/olson-2022e
--- libdatetime-timezone-perl-2.47/debian/patches/olson-2022e   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.47/debian/patches/olson-2022e   2022-10-14 
15:26:55.0 +0200
@@ -0,0 +1,7209 @@
+Description: Update to Olson DB 2022e
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2022-10-14
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2022d
++# Generated from debian/tzdata/africa.  Olson data version 2022e
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2022d'}
++sub olson_version {'2022e'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Asia/Damascus.pm
 b/lib/DateTime/TimeZone/Asia/Damascus.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/asia.  Olson data version 2022d
++# Generated from debian/tzdata/asia.  Olson data version 2022e
+ #
+ # Do not edit this file directly.
+ #
+@@ -1114,207 +1114,18 @@
+ ],
+ [
+ 63802587600, #utc_start 2022-10-27 21:00:00 (Thu)
+-63815896800, #  utc_end 2023-03-30 22:00:00 (Thu)
+-63802594800, #  local_start 2022-10-27 23:00:00 (Thu)
+-63815904000, #local_end 2023-03-31 00:00:00 (Fri)
+-7200,
+-0,
+-'EET',
+-],
+-[
+-63815896800, #utc_start 2023-03-30 22:00:00 (Thu)
+-63834037200, #  utc_end 2023-10-26 21:00:00 (Thu)
+-63815907600, #  local_start 2023-03-31 01:00:00 (Fri)
+-63834048000, #local_end 2023-10-27 00:00:00 (Fri)
+-10800,
+-1,
+-'EEST',
+-],
+-[
+-63834037200, #utc_start 2023-10-26 21:00:00 (Thu)
+-63847346400, #  utc_end 2024-03-28 22:00:00 (Thu)
+-63834044400, #  local_start 2023-10-26 23:00:00 (Thu)
+-63847353600, #local_end 2024-03-29 00:00:00 (Fri)
+-7200,
+-0,
+-'EET',
+-],
+-[
+-63847346400, #utc_start 2024-03-28 22:00:00 (Thu)
+-63865486800, #  utc_end 2024-10-24 21:00:00 (Thu)
+-63847357200, #  local_start 2024-03-29 01:00:00 (Fri)
+-63865497600, #local_end 2024-10-25 00:00:00 (Fri)
+-10800,
+-1,
+-'EEST',
+-],
+-[
+-63865486800, #utc_start 2024-10-24 21:00:00 (Thu)
+-63878796000, #  utc_end 2025-03-27 22:00:00 (Thu)
+-63865494000, #  local_start 2024-10-24 23:00:00 (Thu)
+-63878803200, #local_end 2025-03-28 00:00:00 (Fri)
+-7200,
+-0,
+-'EET',
+-],
+-[
+-63878796000, #utc_start 2025-03-27 22:00:00 (Thu)
+-63897541200, #  utc_end 2025-10-30 21:00

Bug#1020853: bullseye-pu: package libdatetime-timezone-perl/1:2.47-1+2022d

2022-09-27 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: debian-p...@lists.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.47-1+2022d to bullseye,
with the tzdata update from 2022d as a quilt patch.

>From the tzdata (upstream) changelog:

Palestine now springs forward and falls back at 02:00 on the
first Saturday on or after March 24 and October 24, respectively.
This means 2022 falls back 10-29 at 02:00, not 10-28 at 01:00.

Manually stripped down debdiff attached.


Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmMzFXhfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgaycA//SchVwvM0B8vV+wzTEHoFgcp28i9HTc8beVdGdzoWv9+vZDE5JOzd8Onz
yzBQHGwZvEho7Yvc+e502f0SZHpDyO666PqBWMbesbGXTL+jOis01xwgOpNX901/
fQ+TzdXRmnL86ZcFIZohT47TVdr+Wc9Z3lTvHl07ygtuv68KPTzpW519NAv9dg6G
M/NiiWMixFNRvS3NWwFCKe0jZ34RQOJnkDlzBrf3zxAIkGWNIuSegXJFpJcd7a90
V3lvJ5taQzAEIyU+8RRqDb92bJxAenJGfc7EtX4KGZDGikg9qyULIO0vI8+gfG6z
NhrjSgiEX14jtjYYYUWXUvZhFREvrVXHjwNbxGYtDTURtbojhzn79iD1QX27R86f
1Mj3pb3W3ppJPuCP/VH+D44CS5kvj3s6ozi281gZ2GvJz7o5/mdJ9mp43MOlCjLs
pBWVSQTlOsNGmiN0NhjVnLFqTpHdC+nUsC4l4QPlzf8RlRyCfqSTXaboelfCTpdQ
HJRfM3WqnSMei9QAdzpuOzeceCLTq7hPXfX/1xLhQ3YsdIhGwol5Sf3cqotXfyN1
lUhfpSJJ3hxOFS/5M75oMuekMSkkZQGv6VDBkRzx7hU8Is/bJ1Iv6xG4LJW/5hC2
0OclLIGj259rQitc6T6p4znzvnVPUE6/9EdroND/wcFErjJ25b0=
=Kyya
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.47/debian/changelog 
libdatetime-timezone-perl-2.47/debian/changelog
--- libdatetime-timezone-perl-2.47/debian/changelog 2022-08-12 
14:35:14.0 +0200
+++ libdatetime-timezone-perl-2.47/debian/changelog 2022-09-27 
17:14:16.0 +0200
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.47-1+2022d) bullseye; urgency=medium
+
+  * Update to Olson database version 2022d.
+This update includes contemporary changes for Palestine.
+
+ -- gregor herrmann   Tue, 27 Sep 2022 17:14:16 +0200
+
 libdatetime-timezone-perl (1:2.47-1+2022b) bullseye; urgency=medium
 
   * Update to Olson database version 2022b.
diff -Nru libdatetime-timezone-perl-2.47/debian/patches/olson-2022d 
libdatetime-timezone-perl-2.47/debian/patches/olson-2022d
--- libdatetime-timezone-perl-2.47/debian/patches/olson-2022d   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.47/debian/patches/olson-2022d   2022-09-27 
17:14:16.0 +0200
@@ -0,0 +1,9599 @@
+Description: Update to Olson DB 2022d
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2022-09-27
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2022b
++# Generated from debian/tzdata/africa.  Olson data version 2022d
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2022b'}
++sub olson_version {'2022d'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Asia/Hebron.pm
 b/lib/DateTime/TimeZone/Asia/Hebron.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/asia.  Olson data version 2022b
++# Generated from debian/tzdata/asia.  Olson data version 2022d
+ #
+ # Do not edit this file directly.
+ #
+@@ -1132,214 +1132,214 @@
+ ],
+ [
+ 63784015200, #utc_start 2022-03-26 22:00:00 (Sat)
+-63802591200, #  utc_end 2022-10-27 22:00:00 (Thu)
++63802681200, #  utc_end 2022-10-28 23:00:00 (Fri)
+ 63784026000, #  local_start 2022-03-27 01:00:00 (Sun)
+-63802602000, #local_end 2022-10-28 01:00:00 (Fri)
++63802692000, #local_end 2022-10-29 02:00:00 (Sat)
+ 10800,
+ 1,
+ 'EEST',
+ ],
+ [
+-63802591200, #utc_start 2022-10-27 22:00:00 (Thu)
+-63815464800, #  utc_end 2023-03-25 22:00:00 (Sat)
+-63802598400, #  local_start 2022-10-28 00:00:00 (Fri)
+-63815472000, #local_end 2023-03-26 00:00:00 (Sun)
++63802681200, #utc_start 2022-10-28 23:00:00 (Fri)
++63815385600, #  utc_end 2023-03-25 00:00:00 (Sat)
++63802688400, #  local_start 2022-10-29 01:00:00 (Sat)
++63815392800, #local_end 2023-03-25 02:00:00 (Sat)
+ 7200,
+ 0,
+ 'EET',
+ ],
+ [
+-63815464800, #utc_start 2023-03-25 22:00:00 (Sat)
+-63834040800, #  utc_end 2023-10-26 22:00:00 (Thu)
+-63815475600, #  local_start 2023-03-26 01:00:00 (Sun)
+-63834051600, #local_end 2023-10-27 01:00:00 (Fri)
++63815385600, #utc_start 2023-03-25 00:00:00 (Sat)
++63834130800, #  utc_end 2023-10-27 23:00:00 (Fri)
++63815396400, #  local_start 2023-03-25 03:00:00 (Sat)
++63834141600, #local_end 2023-10-28 02:00:00 (Sat)
+ 10800,
+ 1,
+ 'EEST',
+ ],
+ [
+-63834040800, #utc_st

Bug#1017112: buster-pu: package libdatetime-timezone-perl/1:2.23-1+2022b

2022-08-13 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

After being reminded by 
https://lists.debian.org/debian-project/2022/08/msg6.html
that buster is still a thing, I've now uploaded
libdatetime-timezone-perl/1:2.23-1+2022b there as well.

Copying from #1017054 (bullseye):

… updating the data to the new tzdata 2022b release via a quilt patch.

Changes (from tzdata package):
- Chile's 2022 DST start is delayed from September 4 to September 11.
- Iran plans to stop observing DST permanently, after it falls back
  on 2022-09-21.


Manually stripped down debdiff attached.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmL4TulfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgZFYg/+JoPHtnhXnhpQpCe1J6npYHIaViNDHVfLqynl1uWSdrblgO0y9fzYQHnE
/bvEoTCCeoTpBA2GPnoj6umu+SJyQ+nmaA8D2gfJ4LSoAMcCDdmZj4nkPxQfyde6
rDVROqrIRQ5eHa8fJQM7EzEhYDIYe12g2BeAAoJAXDKRgW17/GdgmM7xftResGJn
FwIGt6LXqxav7aiF9G23CwRjwHsbQL+fTstJPTWaYhOtcoYfzrXYP9SPPVuxHsvK
eifhBqgbrf4ZG3Q1GVRWtRrm382la2Q7X9DZgUNzRJlWj9qRK54slzler5cI8VY4
v+9VHPaWcALpLuQ+iIpAsysRcyFLrRm71Q8iJujHTElwl2rorkYAJO3CQdikSArY
qbBXvX17kh51ZSjAf6fjEGJBWoz1uLKUFo2AvfXL/Bn8scRQSWt7u7Yl9NRuwGs9
ro/6hvDVx+E03vwPZBd9B6LWOxlECLCcacf0IwtCaA/6k9pM1QDEKnb2krXTSD4l
w6nvBg2GVL7KgQLZHh9BLaqk9a+epDeYPq6HI1O8aUJqZPOE/IRyBjSLC6KuBG/5
hsqE9GyHOZXxoGrYC9u/UasFMYKt4hp6qjTynLxOavx0G0Rnf6YScMtI7Zvq7+a+
v8RK4QTdmYBTuL228hT7tvdDMeBXrTr/9JdptHfBgyl4gaBxKMM=
=A3Jb
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.23/debian/changelog 
libdatetime-timezone-perl-2.23/debian/changelog
--- libdatetime-timezone-perl-2.23/debian/changelog 2022-03-19 
15:58:02.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/changelog 2022-08-14 
03:15:00.0 +0200
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.23-1+2022b) buster; urgency=medium
+
+  * Update to Olson database version 2022b.
+This update includes contemporary changes for Chile and Iran.
+
+ -- gregor herrmann   Sun, 14 Aug 2022 03:15:00 +0200
+
 libdatetime-timezone-perl (1:2.23-1+2022a) buster; urgency=medium
 
   * Update to Olson database version 2022a.
diff -Nru libdatetime-timezone-perl-2.23/debian/patches/olson-2022b 
libdatetime-timezone-perl-2.23/debian/patches/olson-2022b
--- libdatetime-timezone-perl-2.23/debian/patches/olson-2022b   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/patches/olson-2022b   2022-08-14 
03:15:00.0 +0200
@@ -0,0 +1,21549 @@
+Description: Update to Olson DB 2022b
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2022-08-14
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2022a
++# Generated from debian/tzdata/africa.  Olson data version 2022b
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2022a'}
++sub olson_version {'2022b'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/America/Santiago.pm
 b/lib/DateTime/TimeZone/America/Santiago.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/southamerica.  Olson data version 2022a
++# Generated from debian/tzdata/southamerica.  Olson data version 2022b
+ #
+ # Do not edit this file directly.
+ #
+@@ -196,20 +196,20 @@
+ ],
+ [
+ 61395163200, #utc_start 1946-07-15 04:00:00 (Mon)
+-61399306800, #  utc_end 1946-09-01 03:00:00 (Sun)
++61399047600, #  utc_end 1946-08-29 03:00:00 (Thu)
+ 61395152400, #  local_start 1946-07-15 01:00:00 (Mon)
+-61399296000, #local_end 1946-09-01 00:00:00 (Sun)
++61399036800, #local_end 1946-08-29 00:00:00 (Thu)
+ -10800,
+ 1,
+ '-03',
+ ],
+ [
+-61399306800, #utc_start 1946-09-01 03:00:00 (Sun)
++61399047600, #utc_start 1946-08-29 03:00:00 (Thu)
+ 61417627200, #  utc_end 1947-04-01 04:00:00 (Tue)
+-61399292400, #  local_start 1946-08-31 23:00:00 (Sat)
++61399033200, #  local_start 1946-08-28 23:00:00 (Wed)
+ 61417612800, #local_end 1947-04-01 00:00:00 (Tue)
+ -14400,
+-0,
++1,
+ '-04',
+ ],
+ [
+@@ -1177,17 +1177,17 @@
+ ],
+ [
+ 63784638000, #utc_start 2022-04-03 03:00:00 (Sun)
+-63797947200, #  utc_end 2022-09-04 04:00:00 (Sun)
++63798552000, #  utc_end 2022-09-11 04:00:00 (Sun)
+ 63784623600, #  local_start 2022-04-02 23:00:00 (Sat)
+-63797932800, #local_end 2022-09-04 00:00:00 (Sun)
++63798537600, #local_end 2022-09-11 00:00:00 (Sun)
+ -14400,
+ 0,
+ '-04',
+ ],
+ [
+-63797947200, #utc_start 2022-09-04 04:00:00 (Sun)
++63798552000, #utc_start 2022-09-11 04:00

Bug#1017054: bullseye-pu: package libdatetime-timezone-perl/1:2.47-1+2022b

2022-08-12 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.47-1+2022b to bullseye,
updating the data to the new tzdata 2022b release via a quilt patch.

Changes (from tzdata package):
- Chile's 2022 DST start is delayed from September 4 to September 11.
- Iran plans to stop observing DST permanently, after it falls back
  on 2022-09-21.


Manually stripped down debdiff attached.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmL2S0dfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgbd2w//Wngrc3zLX4xsvg771bO/8RDhLbS29NwaWQ6G05y5HHp9ykfnywCL+XD+
DTliAJL1rADNM8T5mRaIvutgiphR6njzvA+Bnlc28X2nq0UgF7uGb7Xawba/jEVO
50w3MmaSSHHhKe0vkyOb5g+LP5lAQVz2UjlXzPaEbZikqBFUwyxMV45a33dDzytZ
vezEaMRVgii+OzF9eTLXusdms6IFA5GlnI+8k9UIMxEGVs7m1ZSdHUG/8X5oP1yZ
m0yc2XUy3Wff7qaMSiGD4kG0JbNTpy2wgKaMMy6zqR5bdwIH8wZ0tTLC0i/mKwOK
WZlPdGUZo9QJWd4cN/YHUcwmTBBV/F/oXmMSakSPLXEUguivqbpJRp+VZqR1bZm8
wGK096z9AdCztuTpIOV7u/PG+3wSpxU7yClcv5IFsnUe5I8gUqbIiWl5v1CWjcD2
feJLoVLA8h1Ms3LAuXy+JljmkzB+O7VdJeVSpPsPU5k6yZI2waVyMwOLj88NH9Uv
jORnht/qLh3AxbAXpj9TnTK6uLjA+4rK79XFTlBFmzSox3z51pLpDlDtFL5n+Wv0
sDLFVZq+syLt5Q/aWfqMLOynoALWkg/udXjA42OAEgAglQQn8TnL1vdB0bcS0x3R
bk+4lB4qbyW14XQUIQdesCcMiHpz8gCvT6Yf5Ph78zVPw7GHEFw=
=6jjm
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.47/debian/changelog 
libdatetime-timezone-perl-2.47/debian/changelog
--- libdatetime-timezone-perl-2.47/debian/changelog 2022-03-19 
15:48:18.0 +0100
+++ libdatetime-timezone-perl-2.47/debian/changelog 2022-08-12 
14:35:14.0 +0200
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.47-1+2022b) bullseye; urgency=medium
+
+  * Update to Olson database version 2022b.
+This update includes contemporary changes for Chile and Iran.
+
+ -- gregor herrmann   Fri, 12 Aug 2022 14:35:14 +0200
+
 libdatetime-timezone-perl (1:2.47-1+2022a) bullseye; urgency=medium
 
   * Update to Olson database version 2022a.
diff -Nru libdatetime-timezone-perl-2.47/debian/patches/olson-2022b 
libdatetime-timezone-perl-2.47/debian/patches/olson-2022b
--- libdatetime-timezone-perl-2.47/debian/patches/olson-2022b   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.47/debian/patches/olson-2022b   2022-08-12 
14:35:14.0 +0200
@@ -0,0 +1,21549 @@
+Description: Update to Olson DB 2022b
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2022-08-12
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2022a
++# Generated from debian/tzdata/africa.  Olson data version 2022b
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2022a'}
++sub olson_version {'2022b'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/America/Santiago.pm
 b/lib/DateTime/TimeZone/America/Santiago.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/southamerica.  Olson data version 2022a
++# Generated from debian/tzdata/southamerica.  Olson data version 2022b
+ #
+ # Do not edit this file directly.
+ #
+@@ -196,20 +196,20 @@
+ ],
+ [
+ 61395163200, #utc_start 1946-07-15 04:00:00 (Mon)
+-61399306800, #  utc_end 1946-09-01 03:00:00 (Sun)
++61399047600, #  utc_end 1946-08-29 03:00:00 (Thu)
+ 61395152400, #  local_start 1946-07-15 01:00:00 (Mon)
+-61399296000, #local_end 1946-09-01 00:00:00 (Sun)
++61399036800, #local_end 1946-08-29 00:00:00 (Thu)
+ -10800,
+ 1,
+ '-03',
+ ],
+ [
+-61399306800, #utc_start 1946-09-01 03:00:00 (Sun)
++61399047600, #utc_start 1946-08-29 03:00:00 (Thu)
+ 61417627200, #  utc_end 1947-04-01 04:00:00 (Tue)
+-61399292400, #  local_start 1946-08-31 23:00:00 (Sat)
++61399033200, #  local_start 1946-08-28 23:00:00 (Wed)
+ 61417612800, #local_end 1947-04-01 00:00:00 (Tue)
+ -14400,
+-0,
++1,
+ '-04',
+ ],
+ [
+@@ -1177,17 +1177,17 @@
+ ],
+ [
+ 63784638000, #utc_start 2022-04-03 03:00:00 (Sun)
+-63797947200, #  utc_end 2022-09-04 04:00:00 (Sun)
++63798552000, #  utc_end 2022-09-11 04:00:00 (Sun)
+ 63784623600, #  local_start 2022-04-02 23:00:00 (Sat)
+-63797932800, #local_end 2022-09-04 00:00:00 (Sun)
++63798537600, #local_end 2022-09-11 00:00:00 (Sun)
+ -14400,
+ 0,
+ '-04',
+ ],
+ [
+-63797947200, #utc_start 2022-09-04 04:00:00 (Sun)
++63798552000, #utc_start 2022-09-11 04:00:00 (Sun)
+ 63816087600, #  utc_end 2023-04-02 03:00:00 (Sun)
+-63797936400, #  local_start 2022-09-04 01:00:00 (Sun)
++63798541200, #  local_start

Bug#1012585: bullseye-pu: package libintl-perl/1.26-3+deb11u1

2022-06-09 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libintl-perl/1.26-3+deb11u1 to bullseye in order to fix
#1012570:

What happened is that in the packaging overhaul for 1.26-3 we missed
that one of the 2 code files in libintl-xs-perl was not installed,
which makes the package useless.

And the fix is equally easy: install the file :)

The bug is also fixed in unstable in 1.26-4, where I additionally
enabled the non-default tests to make sure that the XS part works.
I've left this out for bullseye obviously.

The complete debdiff is:

#v+
diff -Nru libintl-perl-1.26/debian/changelog libintl-perl-1.26/debian/changelog
- --- libintl-perl-1.26/debian/changelog2021-01-03 01:56:12.0 
+0100
+++ libintl-perl-1.26/debian/changelog  2022-06-09 21:14:57.0 +0200
@@ -1,3 +1,12 @@
+libintl-perl (1.26-3+deb11u1) bullseye; urgency=medium
+
+  * Team upload.
+  * Install the missing gettext_xs.pm file.
+Thanks to Xan Charbonnet for the bug report.
+(Closes: #1012570)
+
+ -- gregor herrmann   Thu, 09 Jun 2022 21:14:57 +0200
+
 libintl-perl (1.26-3) unstable; urgency=medium
 
   * Take over for the Debian Perl Group; Closes: #945988 -- RFA/ITA
diff -Nru libintl-perl-1.26/debian/libintl-xs-perl.install 
libintl-perl-1.26/debian/libintl-xs-perl.install
- --- libintl-perl-1.26/debian/libintl-xs-perl.install  2021-01-03 
01:56:12.0 +0100
+++ libintl-perl-1.26/debian/libintl-xs-perl.install2022-06-09 
21:14:57.0 +0200
@@ -1,2 +1,3 @@
 usr/lib/* usr/lib/
+usr/share/perl5/Locale/gettext_xs.pm usr/share/perl5/Locale/
 usr/share/man/man3/Locale::gettext_xs.3pm usr/share/man/man3/
#v-


As this has not been noticed since the bullseye release, I guess
there is no particular hurry to push this through stable-updates, but
having it in the next point release would be appreciated.


Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKSBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmKiR2ZfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgbeXA/4pdOHte5zlSeymjJdejkBXLdGFmKdEMGi9UHOBr6A6gASju4Siy27dxOz
H0AQDgfR1GHbCkb7D/uEEQ0MhLNDujxoNi7eSLDQctd/k50EQU4HhOWIYApldVf5
YivQkudhUaPbqE4osbOx7jiML9AP9PmQLKnjjM9k0Cc20bmoqeg5y+MoPtcI2s9+
/x4QXTBXGVtqAqvRKkg9ST0cwirzjYT9LAXTc85q2lzzgJUosT06cZgKf0DKcNJb
rhDCQRTawGqXeyM/Aq3e1ujLSU19DuLDq3Vpk3ngC7nhIBWDFDghQqTXlbT0ew66
W+YFU0iRkGYfts83lqRTJ4fvqydbHkH8zyp14JCWv7Z1oTfjs9OEy1F2YIyzBjlp
Qa+bM1+oJwJ41Yh9jRDKjqRTSEuYdZWqpRZ6HIlG3ChGXrX32W05Xzw9QZUxkvIM
GfZec8HYZtYdKnXHDj0gLDcxXXdQdWwjJYEPPPHS0ScPPyCDBiY8gehAOYYvyLUf
le5ffXb0XMCSvLliZKIKMcvqqHHBaBTGQMTKWUYDs1dvHtr+r7O7pEmRHz26506S
w2ucObjmzkPUzubumoJg0uKsvBPIU0z/JAz3ZYs7VgZEkEwug+vxWb96gJX18+vu
QsswrFfv0pFiOdP7/tOs8SQyHcQXq6xZLEOOTZydOAhxRJSdKg==
=MXhI
-END PGP SIGNATURE-



Bug#1007964: buster-pu: package libdatetime-timezone-perl/1:2.23-1+2022a

2022-03-19 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: debian-p...@lists.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.23-1+2022a to buster.
This update contains the changes from the Olson db version 2022a (as
a quilt patch):

Palestine will spring forward on 2022-03-27, not -03-26.

I'm attaching a manually stripped down debdiff.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmI18glfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYE6A//eAIz36LKrdS9/3r7tiU8pDbIG8OQpzVaH6LSS0KVdAESdughLSPQyLz1
2odE29frnO1V354ZUyqU74bQsaEj3FL/Q5ogzaCovUnAZ9WWBxWWYYAbTq5WFqly
9cHJbfik2c16tCLOIaSn4nQ30RFLSZhCGPuHhf4ZkhKqpXmMAmKxUPhZPixdWUIl
aZ+5C8Mnr2/0x65hX5wOLTePgJzyBYcDY0vZEBfDrfdEUdfko7oTEw7eu9keaH09
wJxONo8FFWxQjyr5rjlmwp9zGZBswVxFIVBsBWWI6BdKJ8+usWaeDbpIk2pXWxaj
L/6QkLG1Y6mm6PmpjXXki17W31immBjx61vlvynMPAj8PJf5uzl74Mt/eZMXM2+5
cVjBARkPmNqobA0fC4NZbSossnoHTOvqbAYx1n/REM76TaX0dMdSL2JKsAMrmi8B
kFjba955ZoTHBNCpmLOjKfLJdblYV2MiRItR3yauP7Jgcv1aRSedSR2u5q2R/j0Z
D+CmuPhXRfN42F4gkfcfHFhn0hlW5kV2N3AYciVko0aBo49SWSRe0KzSdkRVymMO
DlfG7D06LJpmvegaHaCVuRmcgxRttRxvIJ1sCbnunDguUiyLd/Lc4VdAWsHYVqgQ
fjlIRfQyKW2InnljLVAERPf9r9ciXqmIG/FHSKyocAjamKIxwV4=
=pTQP
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.23/debian/changelog 
libdatetime-timezone-perl-2.23/debian/changelog
--- libdatetime-timezone-perl-2.23/debian/changelog 2021-10-23 
18:24:33.0 +0200
+++ libdatetime-timezone-perl-2.23/debian/changelog 2022-03-19 
15:58:02.0 +0100
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.23-1+2022a) buster; urgency=medium
+
+  * Update to Olson database version 2022a.
+This update includes contemporary changes for Palestine.
+
+ -- gregor herrmann   Sat, 19 Mar 2022 15:58:02 +0100
+
 libdatetime-timezone-perl (1:2.23-1+2021e) buster; urgency=medium
 
   * Update to Olson database version 2021e.
diff -Nru libdatetime-timezone-perl-2.23/debian/patches/olson-2022a 
libdatetime-timezone-perl-2.23/debian/patches/olson-2022a
--- libdatetime-timezone-perl-2.23/debian/patches/olson-2022a   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/patches/olson-2022a   2022-03-19 
15:58:02.0 +0100
@@ -0,0 +1,12941 @@
+Description: Update to Olson DB 2022a
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2022-03-19
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2021e
++# Generated from debian/tzdata/africa.  Olson data version 2022a
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,11 +43,11 @@
+ ],
+ ];
+ 
+-sub olson_version {'2021e'}
++sub olson_version {'2022a'}
+ 
+ sub has_dst_changes {0}
+ 
+-sub _max_year {2031}
++sub _max_year {2032}
+ 
+ sub _new_instance {
+ return shift->_init( @_, spans => $spans );
+--- a/lib/DateTime/TimeZone/Asia/Gaza.pm
 b/lib/DateTime/TimeZone/Asia/Gaza.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/asia.  Olson data version 2021e
++# Generated from debian/tzdata/asia.  Olson data version 2022a
+ #
+ # Do not edit this file directly.
+ #
+@@ -1132,17 +1132,17 @@
+ ],
+ [
+ 63771141600, #utc_start 2021-10-28 22:00:00 (Thu)
+-63783928800, #  utc_end 2022-03-25 22:00:00 (Fri)
++63784015200, #  utc_end 2022-03-26 22:00:00 (Sat)
+ 63771148800, #  local_start 2021-10-29 00:00:00 (Fri)
+-63783936000, #local_end 2022-03-26 00:00:00 (Sat)
++63784022400, #local_end 2022-03-27 00:00:00 (Sun)
+ 7200,
+ 0,
+ 'EET',
+ ],
+ [
+-63783928800, #utc_start 2022-03-25 22:00:00 (Fri)
++63784015200, #utc_start 2022-03-26 22:00:00 (Sat)
+ 63802591200, #  utc_end 2022-10-27 22:00:00 (Thu)
+-63783939600, #  local_start 2022-03-26 01:00:00 (Sat)
++63784026000, #  local_start 2022-03-27 01:00:00 (Sun)
+ 63802602000, #local_end 2022-10-28 01:00:00 (Fri)
+ 10800,
+ 1,
+@@ -1150,17 +1150,17 @@
+ ],
+ [
+ 63802591200, #utc_start 2022-10-27 22:00:00 (Thu)
+-63815378400, #  utc_end 2023-03-24 22:00:00 (Fri)
++63815464800, #  utc_end 2023-03-25 22:00:00 (Sat)
+ 63802598400, #  local_start 2022-10-28 00:00:00 (Fri)
+-63815385600, #local_end 2023-03-25 00:00:00 (Sat)
++63815472000, #local_end 2023-03-26 00:00:00 (Sun)
+ 7200,
+ 0,
+ 'EET',
+ ],
+ [
+-63815378400, #utc_start 2023-03-24 22:00:00 (Fri)
++63815464800, #utc_start 2023-03-25 22:00:00 (Sat)
+ 63834040800, #  utc_end 2023-10-26 22:00:00 (Thu)
+-63815389200, #  local_start 2023-03-25 01:00:00 (Sat)
++63815475600, #  local_start 2023-03-26 01:00:0

Bug#1007963: bullseye-pu: package libdatetime-timezone-perl/1:2.47-1+2022a

2022-03-19 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: debian-p...@lists.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.47-1+2022a to bullseye.
This update contains the changes from the Olson db version 2022a (as
a quilt patch):

Palestine will spring forward on 2022-03-27, not -03-26.

I'm attaching a manually stripped down debdiff.


Cheers,
gregor


-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmI18ghfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgZ7XA//ULLqIzMHo6Lp8DyIHvwT3/Ka+EnvqyD1mSMVhIPPrv7v/bmbxlckLHkP
nmvj/biM9Dh+WJi73nVDs6NqXgTWyVSJ/QX0aI0reOiMfXN7rb8ZKQJLXAsYqthX
EapF5I5D9CQNB0II6D/FqovqO1aPHlxJ/NliTZQmGgCodD8BNqt2FmiKPgOHxk4D
GXOyn1yAyqOPJZEIZHuVb/eqAGRBCdSP+0gULWkXCfOr+CRr4SxtoyQIxOIgNqSp
VYW9swfsYlkAec803r6a1SAjtGzoZSYFKkeeChwUyLnN2VdYMgQTru0elDE8SDJS
Eoe+98XzgrW0Sj9R6e+tp4dr+Mz925d5f+ueMYf5QwmSmTgKn1+eLFvD5qIo0sG2
CO0OtwGfyRpA8rsNn5fDgefYPjaioYod/RAweOp7r5Uolc0Ryps6eCf5QL2MobPw
d1DAj0AShUlFxSKC2HM/oz1XAM9NkjUDU2HlP2Kn1qbZrNRbNBV1IjXY2LNclmR9
wloimE2mLpywRhvfLgNTtPgov0ohNG840Ph+9dT0Ks1IvOHxhsMzl9w/Gw0zePxD
PMfRUgH8xicWngr2bE22E56H3AHn3Ivcllsp1SLnbv41fVJoUzmL1DNho9rTF3TP
NazeKhVi/emLydGECe6lI5W6u3RIvCHgpPJBgnXqFWqDGrNoVP8=
=xgkD
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.47/debian/changelog 
libdatetime-timezone-perl-2.47/debian/changelog
--- libdatetime-timezone-perl-2.47/debian/changelog 2021-10-23 
18:16:08.0 +0200
+++ libdatetime-timezone-perl-2.47/debian/changelog 2022-03-19 
15:48:18.0 +0100
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.47-1+2022a) bullseye; urgency=medium
+
+  * Update to Olson database version 2022a.
+This update includes contemporary changes for Palestine.
+
+ -- gregor herrmann   Sat, 19 Mar 2022 15:48:18 +0100
+
 libdatetime-timezone-perl (1:2.47-1+2021e) bullseye; urgency=medium
 
   * Update to Olson database version 2021e.
diff -Nru libdatetime-timezone-perl-2.47/debian/patches/olson-2022a 
libdatetime-timezone-perl-2.47/debian/patches/olson-2022a
--- libdatetime-timezone-perl-2.47/debian/patches/olson-2022a   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.47/debian/patches/olson-2022a   2022-03-19 
15:48:18.0 +0100
@@ -0,0 +1,12941 @@
+Description: Update to Olson DB 2022a
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2022-03-19
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2021e
++# Generated from debian/tzdata/africa.  Olson data version 2022a
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,11 +43,11 @@
+ ],
+ ];
+ 
+-sub olson_version {'2021e'}
++sub olson_version {'2022a'}
+ 
+ sub has_dst_changes {0}
+ 
+-sub _max_year {2031}
++sub _max_year {2032}
+ 
+ sub _new_instance {
+ return shift->_init( @_, spans => $spans );
+--- a/lib/DateTime/TimeZone/Asia/Gaza.pm
 b/lib/DateTime/TimeZone/Asia/Gaza.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/asia.  Olson data version 2021e
++# Generated from debian/tzdata/asia.  Olson data version 2022a
+ #
+ # Do not edit this file directly.
+ #
+@@ -1132,17 +1132,17 @@
+ ],
+ [
+ 63771141600, #utc_start 2021-10-28 22:00:00 (Thu)
+-63783928800, #  utc_end 2022-03-25 22:00:00 (Fri)
++63784015200, #  utc_end 2022-03-26 22:00:00 (Sat)
+ 63771148800, #  local_start 2021-10-29 00:00:00 (Fri)
+-63783936000, #local_end 2022-03-26 00:00:00 (Sat)
++63784022400, #local_end 2022-03-27 00:00:00 (Sun)
+ 7200,
+ 0,
+ 'EET',
+ ],
+ [
+-63783928800, #utc_start 2022-03-25 22:00:00 (Fri)
++63784015200, #utc_start 2022-03-26 22:00:00 (Sat)
+ 63802591200, #  utc_end 2022-10-27 22:00:00 (Thu)
+-63783939600, #  local_start 2022-03-26 01:00:00 (Sat)
++63784026000, #  local_start 2022-03-27 01:00:00 (Sun)
+ 63802602000, #local_end 2022-10-28 01:00:00 (Fri)
+ 10800,
+ 1,
+@@ -1150,17 +1150,17 @@
+ ],
+ [
+ 63802591200, #utc_start 2022-10-27 22:00:00 (Thu)
+-63815378400, #  utc_end 2023-03-24 22:00:00 (Fri)
++63815464800, #  utc_end 2023-03-25 22:00:00 (Sat)
+ 63802598400, #  local_start 2022-10-28 00:00:00 (Fri)
+-63815385600, #local_end 2023-03-25 00:00:00 (Sat)
++63815472000, #local_end 2023-03-26 00:00:00 (Sun)
+ 7200,
+ 0,
+ 'EET',
+ ],
+ [
+-63815378400, #utc_start 2023-03-24 22:00:00 (Fri)
++63815464800, #utc_start 2023-03-25 22:00:00 (Sat)
+ 63834040800, #  utc_end 2023-10-26 22:00:00 (Thu)
+-63815389200, #  local_start 2023-03-25 01:00:00 (Sat)
++63815475600, #  local_start 2023-03-26 01

Bug#998248: buster-pu: package libencode-perl/3.00-1+deb10u1

2021-11-01 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: debian-p...@lists.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libencode-perl/3.00-1+deb10u1 to buster.

It fixes a memory leak with a patch backported from newer upstream
releases which is already in unstable.

Bug: https://rt.cpan.org/Ticket/Display.html?id=139622
Bug-Debian: #995804

Complete debdiff attached.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmGACbhfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgb/QQ/+M0Xn0YoTRR35v0xJm5MlSjGsOuZsZwM4bPvb0GxILff+FvnArnbnlBVl
x0lq+PY8h6geuL+I8HAfhvWcWWmZqVjlhRgIpUYboT+kY/5eQk9QqsnsI9UtDUWj
BcGQydt6iS3EsJBqiA0/K2Yo0sHbKMDrSUD12zr8WjFcjdy9wcq6IgYyxlUJeI2Y
9QrESHib0tFlnh4pALc96L2xx4yz/2+oWUehl3M7bOTCRtExCJmS+Tz6j89/WbXC
M1BL4xPesGngyd73DcERUyUdYI5YTpgh7BHok9mN8zdG4T+w0x451pt8+gMeHD+m
OdtohYRLH2s6LHSvfqeGKM1rGLLk10yehOA1TQ7zny1ZAzqtynW+bfgYzpo5OI/B
FiT9SUKaI6Ic+eh9YePCbrkfD8wqhxuCc/KP0ipCojJ/7rEY/WzbSZUL1z/2y4SJ
u37+45uQm/UcIWW41alFc1aNav47ZBKFlkUtCacxmWj125pbEFDx/9VnOKE2Xt+S
1/2tF82zNZVuHUnIpi8bEuNutSEPIerfesnTXRzruh5rZ1FTlQO1FXLbseAv8ULY
NK7cTViVb5Rh09ZsdKq5qRC1TDAl4ytvaJLULmG9u9/IrLHtolljFVPgD7YYGiCh
3pxpyHAUhE09Z1NfaLSpavXToQKbp48BkL0WOeTUQzqqQqEB0iQ=
=PigQ
-END PGP SIGNATURE-
diff -Nru libencode-perl-3.00/debian/changelog 
libencode-perl-3.00/debian/changelog
--- libencode-perl-3.00/debian/changelog2019-02-06 19:44:26.0 
+0100
+++ libencode-perl-3.00/debian/changelog2021-11-01 16:32:22.0 
+0100
@@ -1,3 +1,13 @@
+libencode-perl (3.00-1+deb10u1) buster; urgency=medium
+
+  * Fix memory leak.
+Add patch rt_139622_memory-leak.patch, taken from upstream releases 3.13,
+3.14, 3.15 to fix a memory leak in Encode.xs.
+Cf. https://rt.cpan.org/Ticket/Display.html?id=139622
+(Closes: #995804)
+
+ -- gregor herrmann   Mon, 01 Nov 2021 16:32:22 +0100
+
 libencode-perl (3.00-1) unstable; urgency=medium
 
   * Import upstream version 3.00.
diff -Nru libencode-perl-3.00/debian/patches/rt_139622_memory-leak.patch 
libencode-perl-3.00/debian/patches/rt_139622_memory-leak.patch
--- libencode-perl-3.00/debian/patches/rt_139622_memory-leak.patch  
1970-01-01 01:00:00.0 +0100
+++ libencode-perl-3.00/debian/patches/rt_139622_memory-leak.patch  
2021-11-01 16:32:22.0 +0100
@@ -0,0 +1,82 @@
+Description: Fix memory leak
+Origin: upstream releases 3.13, 3.14, 3.15
+Bug-Debian: https://bugs.debian.org/995804
+Bug: https://rt.cpan.org/Ticket/Display.html?id=139622
+Reviewed-by: gregor herrmann 
+Last-Update: 2021-11-01
+
+--- a/Encode.xs
 b/Encode.xs
+@@ -154,7 +154,7 @@ encode_method(pTHX_ const encode_t * enc
+ STRLEN sdone = 0;
+ /* We allocate slen+1.
+PerlIO dumps core if this value is smaller than this. */
+-SV *dst = newSV(slen+1);
++SV *dst = sv_2mortal(newSV(slen+1));
+ U8 *d = (U8 *)SvPVX(dst);
+ STRLEN dlen = SvLEN(dst)-1;
+ int code = 0;
+@@ -810,13 +810,12 @@ CODE:
+ tmp = encode_method(aTHX_ enc, enc->t_utf8, src, s, slen, check,
+ , term, , fallback_cb);
+ sv_catsv(dst, tmp);
+-SvREFCNT_dec(tmp);
+ SvIV_set(off, (IV)offset);
+ RETVAL = (code == ENCODE_FOUND_TERM);
+ OUTPUT:
+ RETVAL
+ 
+-SV *
++void
+ Method_decode(obj,src,check_sv = _sv_no)
+ SV *  obj
+ SV *  src
+@@ -828,6 +827,7 @@ PREINIT:
+ encode_t *enc;
+ U8 *s;
+ STRLEN slen;
++SV *ret;
+ INIT:
+ SvGETMAGIC(src);
+ SvGETMAGIC(check_sv);
+@@ -841,13 +841,13 @@ CODE:
+ s = modify ? (U8 *)SvPV_force_nomg(src, slen) : (U8 *)SvPV_nomg(src, 
slen);
+ if (SvUTF8(src))
+ utf8_safe_downgrade(aTHX_ , , , modify);
+-RETVAL = encode_method(aTHX_ enc, enc->t_utf8, src, s, slen, check,
++ret = encode_method(aTHX_ enc, enc->t_utf8, src, s, slen, check,
+   NULL, Nullsv, NULL, fallback_cb);
+-SvUTF8_on(RETVAL);
+-OUTPUT:
+-RETVAL
++SvUTF8_on(ret);
++ST(0) = ret;
++XSRETURN(1);
+ 
+-SV *
++void
+ Method_encode(obj,src,check_sv = _sv_no)
+ SV *  obj
+ SV *  src
+@@ -859,6 +859,7 @@ PREINIT:
+ encode_t *enc;
+ U8 *s;
+ STRLEN slen;
++SV *ret;
+ INIT:
+ SvGETMAGIC(src);
+ SvGETMAGIC(check_sv);
+@@ -872,10 +873,10 @@ CODE:
+ s = modify ? (U8 *)SvPV_force_nomg(src, slen) : (U8 *)SvPV_nomg(src, 
slen);
+ if (!SvUTF8(src))
+ utf8_safe_upgrade(aTHX_ , , , modify);
+-RETVAL = encode_method(aTHX_ enc, enc->f_utf8, src, s, slen, check,
++ret = encode_method(aTHX_ enc, enc->f_utf8, src, s, slen, check,
+   NULL, Nullsv, NULL, fallback_cb);
+-OUTPUT:
+-RETVAL
++ST(0) = ret;
++XSRETURN(1);
+ 
+ bool
+ Method_needs_lines(obj)
diff -Nru libencode-perl-3.00/debian/patches/series 
libencode-perl-3.00/debian/patches/serie

Bug#998247: bullseye-pu: package libencode-perl/3.08-1+deb11u2

2021-11-01 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: debian-p...@lists.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libencode-perl/3.08-1+deb11u2 to bullseye.

It fixes a memory leak with a patch backported from newer upstream
releases which is already in unstable.

Bug: https://rt.cpan.org/Ticket/Display.html?id=139622
Bug-Debian: #995804

Complete debdiff attached.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmGABmVfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgbVRQ/+IG3HcRjqmmdwdLJEEuLrtYGTjWTFnEt9Dv4OuMUgJYBNqk0UPxTzvacE
V77Gqt/0A8hadc/LZ8i9roj07swpViKrcmn4OIhQ00KrKMykdvSku7gn9UfkeC/4
GNwozyaS+frn1jQh92zdNyiyyEFbc+MIVBCJBs09nD7DJDdOsXJD6aAkSvAK+MYs
sVnvUA8Z/eZwdTdVbqnGTAJFR0645KLmuJ43eb38kR+izp5M++K1GyGSJBzlI7ZE
PowBCZ/nUbwhOMZ8gq0KDq7TwnIH77sDgGieUCTdEj/A6BPSR5zfBGC93DGWhPgJ
fZsyRa4R0HcTYcZig9xfQTrY6gAG+7RiVpAi3JxW6Jub7Egia/KNsPketkUNk3CU
g3pep3jVxS8YgD0XepeTbg5+o1zSMpzv7KY1L1in3T/AzER9fk6TF8uuKvQQlRF4
kr8OUbLUE3H4CZB6c48n1gLIT2JQslgGRof/RE/6WSlsDbCREppym08/P1FnngYC
Hqebq/D3aw8JPfaaipUgT1bpB3LM/rTNUuJBGZMepQp2LVpB9lq8PFCQAiaiY17c
kH739P6Wyc6a/DGzm+2h34+3I0SHczORnXf3OjV3zoTovwkKcbhZi68l9zGm4SuZ
4e5/hVKjFxGWWGrOBopSeZ0A8sIl9aOKAYs1Jhsoeo4dQGM3vM8=
=2XB1
-END PGP SIGNATURE-
diff -Nru libencode-perl-3.08/debian/changelog 
libencode-perl-3.08/debian/changelog
--- libencode-perl-3.08/debian/changelog2021-08-06 20:49:32.0 
+0200
+++ libencode-perl-3.08/debian/changelog2021-11-01 16:15:54.0 
+0100
@@ -1,3 +1,13 @@
+libencode-perl (3.08-1+deb11u2) bullseye; urgency=medium
+
+  * Fix memory leak.
+Add patch rt_139622_memory-leak.patch, taken from upstream releases 3.13,
+3.14, 3.15 to fix a memory leak in Encode.xs.
+Cf. https://rt.cpan.org/Ticket/Display.html?id=139622
+(Closes: #995804)
+
+ -- gregor herrmann   Mon, 01 Nov 2021 16:15:54 +0100
+
 libencode-perl (3.08-1+deb11u1) bullseye-security; urgency=high
 
   * [SECURITY] CVE-2021-36770: Encode loading code from working directory
diff -Nru libencode-perl-3.08/debian/patches/rt_139622_memory-leak.patch 
libencode-perl-3.08/debian/patches/rt_139622_memory-leak.patch
--- libencode-perl-3.08/debian/patches/rt_139622_memory-leak.patch  
1970-01-01 01:00:00.0 +0100
+++ libencode-perl-3.08/debian/patches/rt_139622_memory-leak.patch  
2021-11-01 16:15:54.0 +0100
@@ -0,0 +1,82 @@
+Description: Fix memory leak
+Origin: upstream releases 3.13, 3.14, 3.15
+Bug-Debian: https://bugs.debian.org/995804
+Bug: https://rt.cpan.org/Ticket/Display.html?id=139622
+Reviewed-by: gregor herrmann 
+Last-Update: 2021-11-01
+
+--- a/Encode.xs
 b/Encode.xs
+@@ -154,7 +154,7 @@ encode_method(pTHX_ const encode_t * enc
+ STRLEN sdone = 0;
+ /* We allocate slen+1.
+PerlIO dumps core if this value is smaller than this. */
+-SV *dst = newSV(slen+1);
++SV *dst = sv_2mortal(newSV(slen+1));
+ U8 *d = (U8 *)SvPVX(dst);
+ STRLEN dlen = SvLEN(dst)-1;
+ int code = 0;
+@@ -810,13 +810,12 @@ CODE:
+ tmp = encode_method(aTHX_ enc, enc->t_utf8, src, s, slen, check,
+ , term, , fallback_cb);
+ sv_catsv(dst, tmp);
+-SvREFCNT_dec(tmp);
+ SvIV_set(off, (IV)offset);
+ RETVAL = (code == ENCODE_FOUND_TERM);
+ OUTPUT:
+ RETVAL
+ 
+-SV *
++void
+ Method_decode(obj,src,check_sv = _sv_no)
+ SV *  obj
+ SV *  src
+@@ -828,6 +827,7 @@ PREINIT:
+ encode_t *enc;
+ U8 *s;
+ STRLEN slen;
++SV *ret;
+ INIT:
+ SvGETMAGIC(src);
+ SvGETMAGIC(check_sv);
+@@ -841,13 +841,13 @@ CODE:
+ s = modify ? (U8 *)SvPV_force_nomg(src, slen) : (U8 *)SvPV_nomg(src, 
slen);
+ if (SvUTF8(src))
+ utf8_safe_downgrade(aTHX_ , , , modify);
+-RETVAL = encode_method(aTHX_ enc, enc->t_utf8, src, s, slen, check,
++ret = encode_method(aTHX_ enc, enc->t_utf8, src, s, slen, check,
+   NULL, Nullsv, NULL, fallback_cb);
+-SvUTF8_on(RETVAL);
+-OUTPUT:
+-RETVAL
++SvUTF8_on(ret);
++ST(0) = ret;
++XSRETURN(1);
+ 
+-SV *
++void
+ Method_encode(obj,src,check_sv = _sv_no)
+ SV *  obj
+ SV *  src
+@@ -859,6 +859,7 @@ PREINIT:
+ encode_t *enc;
+ U8 *s;
+ STRLEN slen;
++SV *ret;
+ INIT:
+ SvGETMAGIC(src);
+ SvGETMAGIC(check_sv);
+@@ -872,10 +873,10 @@ CODE:
+ s = modify ? (U8 *)SvPV_force_nomg(src, slen) : (U8 *)SvPV_nomg(src, 
slen);
+ if (!SvUTF8(src))
+ utf8_safe_upgrade(aTHX_ , , , modify);
+-RETVAL = encode_method(aTHX_ enc, enc->f_utf8, src, s, slen, check,
++ret = encode_method(aTHX_ enc, enc->f_utf8, src, s, slen, check,
+   NULL, Nullsv, NULL, fallback_cb);
+-OUTPUT:
+-RETVAL
++ST(0) = ret;
++XSRETURN(1);
+ 
+ bool
+ Method_needs_lines(obj)
diff -Nru libencode-perl-3.08/debian

Bug#997079: buster-pu: package libdatetime-timezone-perl/1:2.23-1+2021e

2021-10-23 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: debian-p...@lists.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.23-1+2021e to buster.
containing the data of tzdata 2021e as a quilt patch.

The changes (from tzdata upstream) are:

Palestine will fall back 10-29 (not 10-30) at 01:00.

Manually stripped down debdiff against -2021d attached.

Thanks in advance,
gregor


-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmF0ORRfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYt/g/+KGebpRJvr3HlvPZ5DcRdr9M6V2COjD38JhH/KVzjZotwsAw2kV9zg9YC
w6XOSD+1IqkwnQQET1+2Dpzk+XhPMQUiOUN5ZluHHuBGzRbCBKnLGS7JiLMnn31V
36RxAgKoqYUlQeN4GapbsAP47edaRLUp9Lf5gATCCLW7ILWZ3HoVsN/AvbTdIAe4
8nATa2u3PelB21tziTU4P2++Vvbh3lSXplT3impK3+C+UVIy29stMO02DAYOqirg
Hp/iPe9jH0SSl1MsAIrkKx0kBZYfPRaa+cD0OnU4CjRnAqzKBp5PnZpj6KGeNgDs
tEzAYqlTN5rh/7hWIhszAWScHIXAHLN12kAc34mT5KXgcjFUceCJmi6mmTxKAwqe
gr8ERVYafb9uiQOz4ef+EjqiN0USYbMo1eYohPYAo0wyIrWrBmhZ8B2u6gDm7gf6
rEQyFq0z9kmB1Al9WOTmpHza1EydeqQPtVJHOmcLBnKBt3tbk1YQE48gzBIcIKtW
kvVv/wnVMnnQTBHZz9LmidnKIRRSQjiBOGMgZzo8cOF3KwW6uc3eLuBfRo3orvVO
22tysQq0ZeMYQGpVqhOM4CLVvS53zLX/9r+iQ0X7CP6G7qMpjN7HN6Hy7/9IV3Js
vHirGE1kHP13GLgGxdwH5eCDCSNprfvh2HJ0EKscgZu1JbYO3ao=
=sp8S
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.23/debian/changelog 
libdatetime-timezone-perl-2.23/debian/changelog
--- libdatetime-timezone-perl-2.23/debian/changelog 2021-10-16 
00:24:05.0 +0200
+++ libdatetime-timezone-perl-2.23/debian/changelog 2021-10-23 
18:24:33.0 +0200
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.23-1+2021e) buster; urgency=medium
+
+  * Update to Olson database version 2021e.
+This update includes contemporary changes for Palestine.
+
+ -- gregor herrmann   Sat, 23 Oct 2021 18:24:33 +0200
+
 libdatetime-timezone-perl (1:2.23-1+2021d) buster; urgency=medium
 
   * Update to Olson database version 2021d.
diff -Nru libdatetime-timezone-perl-2.23/debian/patches/olson-2021e 
libdatetime-timezone-perl-2.23/debian/patches/olson-2021e
--- libdatetime-timezone-perl-2.23/debian/patches/olson-2021e   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/patches/olson-2021e   2021-10-23 
18:24:33.0 +0200
@@ -0,0 +1,7574 @@
+Description: Update to Olson DB 2021e
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2021-10-23
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2021d
++# Generated from debian/tzdata/africa.  Olson data version 2021e
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2021d'}
++sub olson_version {'2021e'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Asia/Gaza.pm
 b/lib/DateTime/TimeZone/Asia/Gaza.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/asia.  Olson data version 2021d
++# Generated from debian/tzdata/asia.  Olson data version 2021e
+ #
+ # Do not edit this file directly.
+ #
+@@ -1123,17 +1123,17 @@
+ ],
+ [
+ 63752479200, #utc_start 2021-03-26 22:00:00 (Fri)
+-63771228000, #  utc_end 2021-10-29 22:00:00 (Fri)
++63771141600, #  utc_end 2021-10-28 22:00:00 (Thu)
+ 6375249, #  local_start 2021-03-27 01:00:00 (Sat)
+-63771238800, #local_end 2021-10-30 01:00:00 (Sat)
++63771152400, #local_end 2021-10-29 01:00:00 (Fri)
+ 10800,
+ 1,
+ 'EEST',
+ ],
+ [
+-63771228000, #utc_start 2021-10-29 22:00:00 (Fri)
++63771141600, #utc_start 2021-10-28 22:00:00 (Thu)
+ 63783928800, #  utc_end 2022-03-25 22:00:00 (Fri)
+-63771235200, #  local_start 2021-10-30 00:00:00 (Sat)
++63771148800, #  local_start 2021-10-29 00:00:00 (Fri)
+ 63783936000, #local_end 2022-03-26 00:00:00 (Sat)
+ 7200,
+ 0,
+@@ -1141,17 +1141,17 @@
+ ],
+ [
+ 63783928800, #utc_start 2022-03-25 22:00:00 (Fri)
+-63802677600, #  utc_end 2022-10-28 22:00:00 (Fri)
++63802591200, #  utc_end 2022-10-27 22:00:00 (Thu)
+ 63783939600, #  local_start 2022-03-26 01:00:00 (Sat)
+-63802688400, #local_end 2022-10-29 01:00:00 (Sat)
++63802602000, #local_end 2022-10-28 01:00:00 (Fri)
+ 10800,
+ 1,
+ 'EEST',
+ ],
+ [
+-63802677600, #utc_start 2022-10-28 22:00:00 (Fri)
++63802591200, #utc_start 2022-10-27 22:00:00 (Thu)
+ 63815378400, #  utc_end 2023-03-24 22:00:00 (Fri)
+-63802684800, #  local_start 2022-10-29 00:00:00 (Sat)
++63802598400, #  local_start 2022-10-28 00:00:00 (Fri)
+ 63815385600, #local_end 2023-03-25 00:00:00 (Sat)
+ 7200,
+ 0,
+@@ -1159,17 +1159,17

Bug#997078: bullseye-pu: package libdatetime-timezone-perl/1:2.47-1+2021e

2021-10-23 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: debian-p...@lists.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.47-1+2021e to bullseye,
containing the data of tzdata 2021e as a quilt patch.

The changes (from tzdata upstream) are:

Palestine will fall back 10-29 (not 10-30) at 01:00.

Manually stripped down debdiff against -2021d attached.

Thanks in advance,
gregor


-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmF0ORJfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgaTrQ//eLhsyrLtMOEPW8pOWnI4KMTUpUZkAW5nGIJ/ihlEAspvEfwAt5kTLs5x
wW7LSFWHJoUOw01oSycSdyUXupSAC+iz6tsNH5tU553DK0+v4eyM4PKhkOGh2qXQ
aThUyJlKBJ+Wc1LfURxeMXUEMqi+6bdqbbAaNRZT3ZCqwg2hc53HmAjZ8IzZ7CRt
dZ8sax4g36LtsSFzemcPzZHEV0tgEhBlowavj5oqtJhxhM89jv1gvUjAwhCVAWZE
e5K6TrhvtI3WYYeGx7/Eo2TP4z5LPu3pTEXmJREoW9KsdD7W/m2CED5pgSbK7DdE
A4Le8UuKnWr/5DmN+OShhPV8osN78TQHjYfRTn3oChME0bSkdaVkqsywwEkHf/fW
C5/PDvNyzft22wJELwiCJQ/ycDiCdZiCtwMFuOe0lrGVje1aq3jpcaCPWEQpWeOl
zbMVyfEI0dBFl8akKKr0bLSBff7aGSySFG6+Tb6RbaYETDwyepTsquFlGxy8RhMb
1CSHOgLN2hi2YWhcfnDZHHldU8ZmPfaKYvTHJaVAxk4suYtAxw63mYtxNio5Fnpv
fLgYisjZyxnwvliryiUjSmgJGFIX0oLquI9rcFAbfj8/tgxWhmvBPyYwWPPyBEWy
n4PzmFryNqkzFiRdy+z+GmVuoIhHXCGZkTg87V9ympDpa/niUX8=
=jqSn
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.47/debian/changelog 
libdatetime-timezone-perl-2.47/debian/changelog
--- libdatetime-timezone-perl-2.47/debian/changelog 2021-10-16 
00:14:43.0 +0200
+++ libdatetime-timezone-perl-2.47/debian/changelog 2021-10-23 
18:16:08.0 +0200
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.47-1+2021e) bullseye; urgency=medium
+
+  * Update to Olson database version 2021e.
+This update includes contemporary changes for Palestine.
+
+ -- gregor herrmann   Sat, 23 Oct 2021 18:16:08 +0200
+
 libdatetime-timezone-perl (1:2.47-1+2021d) bullseye; urgency=medium
 
   * Update to Olson database version 2021d.
diff -Nru libdatetime-timezone-perl-2.47/debian/patches/olson-2021e 
libdatetime-timezone-perl-2.47/debian/patches/olson-2021e
--- libdatetime-timezone-perl-2.47/debian/patches/olson-2021e   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.47/debian/patches/olson-2021e   2021-10-23 
18:16:08.0 +0200
@@ -0,0 +1,7574 @@
+Description: Update to Olson DB 2021e
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2021-10-23
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2021d
++# Generated from debian/tzdata/africa.  Olson data version 2021e
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2021d'}
++sub olson_version {'2021e'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Asia/Gaza.pm
 b/lib/DateTime/TimeZone/Asia/Gaza.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/asia.  Olson data version 2021d
++# Generated from debian/tzdata/asia.  Olson data version 2021e
+ #
+ # Do not edit this file directly.
+ #
+@@ -1123,17 +1123,17 @@
+ ],
+ [
+ 63752479200, #utc_start 2021-03-26 22:00:00 (Fri)
+-63771228000, #  utc_end 2021-10-29 22:00:00 (Fri)
++63771141600, #  utc_end 2021-10-28 22:00:00 (Thu)
+ 6375249, #  local_start 2021-03-27 01:00:00 (Sat)
+-63771238800, #local_end 2021-10-30 01:00:00 (Sat)
++63771152400, #local_end 2021-10-29 01:00:00 (Fri)
+ 10800,
+ 1,
+ 'EEST',
+ ],
+ [
+-63771228000, #utc_start 2021-10-29 22:00:00 (Fri)
++63771141600, #utc_start 2021-10-28 22:00:00 (Thu)
+ 63783928800, #  utc_end 2022-03-25 22:00:00 (Fri)
+-63771235200, #  local_start 2021-10-30 00:00:00 (Sat)
++63771148800, #  local_start 2021-10-29 00:00:00 (Fri)
+ 63783936000, #local_end 2022-03-26 00:00:00 (Sat)
+ 7200,
+ 0,
+@@ -1141,17 +1141,17 @@
+ ],
+ [
+ 63783928800, #utc_start 2022-03-25 22:00:00 (Fri)
+-63802677600, #  utc_end 2022-10-28 22:00:00 (Fri)
++63802591200, #  utc_end 2022-10-27 22:00:00 (Thu)
+ 63783939600, #  local_start 2022-03-26 01:00:00 (Sat)
+-63802688400, #local_end 2022-10-29 01:00:00 (Sat)
++63802602000, #local_end 2022-10-28 01:00:00 (Fri)
+ 10800,
+ 1,
+ 'EEST',
+ ],
+ [
+-63802677600, #utc_start 2022-10-28 22:00:00 (Fri)
++63802591200, #utc_start 2022-10-27 22:00:00 (Thu)
+ 63815378400, #  utc_end 2023-03-24 22:00:00 (Fri)
+-63802684800, #  local_start 2022-10-29 00:00:00 (Sat)
++63802598400, #  local_start 2022-10-28 00:00:00 (Fri)
+ 63815385600, #local_end 2023-03-25 00:00:00 (Sat)
+ 7200,
+ 0,
+@@ -1159,17 +1159,17

Bug#996601: bullseye-pu: package libdatetime-timezone-perl/1:2.47-1+2021d

2021-10-15 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: debian-p...@lists.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.47-1+2021d to bullseye,
with the data from the Olson db release 2021 as a quilt patch.

Manually stripped debdiff attached.

IIUIC, the change for Fiji DST is effective in about a month, so
there's no immediate hurry, but at some point this might be material
for -updates and/or the next point release.

Cheers,
gregor


-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmFqAspfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYnQA/+JM3oT21eO6oXV65NaO5xxQ2u1WgSj/ieWrZUPz3i+B7Os7g7xGxhA5DD
eEbwpGK0wtwk66dNy6v2xoDcdJn+ydGt4f9YapcdW3X1a8ZvUGfrkuXol+PWs761
08uxL6/glt05Mdix5nJVXWWkscWDuZQJ3ooqg5mqFWy4L/KpqSxqEESFLO2Jp5os
UBGccntePeBjQ451MyHLM4dr8mBKOQItrq/u5aE9mYwxEZjF8fHPH8lgWQVNK9fB
gXRvMoNDb6ERusp/kal8bpBTSUKkl/6dOJXQ8gUZKCUd/DobBnxYhiUnkPGU7772
+F0ShOXiFJ6VSWdDuA31fjrTZ++uUhG0Hl3qbQhrlXLW5bQKhydWX2wHhNUJNPIZ
uUUC5o6mxTgQwok2+CSk7GVEOs7YGl0O285sZUcu4hEJtWabyE71msTFMmynUePr
mqVYSHbFqcUYbwwyXMYUlzEygqdJCueOExVaGF+erFXpbmSSFrBGpPGsa3pDfVRm
EGjJVhJoO1oyjNgKz2s46FR7CSqB7Es4tVAnnADxc1nz3i5DCru/umEpCXtxgoay
wGZU7OrKoxmZJPTN8/Cb/6lZd+XvSc/7AeORXnqKULjWy8EOyJmFONvsiK4gWaZ8
15jzToAAKpK0bZmwxYWYAO4W+QK9i7HQXH8xX2fcQzCAso13CnU=
=FseV
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.47/debian/changelog 
libdatetime-timezone-perl-2.47/debian/changelog
--- libdatetime-timezone-perl-2.47/debian/changelog 2021-09-28 
12:45:47.0 +0200
+++ libdatetime-timezone-perl-2.47/debian/changelog 2021-10-16 
00:14:43.0 +0200
@@ -1,3 +1,11 @@
+libdatetime-timezone-perl (1:2.47-1+2021d) bullseye; urgency=medium
+
+  * Update to Olson database version 2021d.
+This update includes fixes for the zone links for Atlantic/Jan_Mayen and
+America/Virgin (2021c), and contemporary changes for Fiji (2021d).
+
+ -- gregor herrmann   Sat, 16 Oct 2021 00:14:43 +0200
+
 libdatetime-timezone-perl (1:2.47-1+2021b) bullseye; urgency=medium
 
   * Update to Olson database version 2021b.
diff -Nru libdatetime-timezone-perl-2.47/debian/patches/olson-2021d 
libdatetime-timezone-perl-2.47/debian/patches/olson-2021d
--- libdatetime-timezone-perl-2.47/debian/patches/olson-2021d   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.47/debian/patches/olson-2021d   2021-10-16 
00:14:43.0 +0200
@@ -0,0 +1,7084 @@
+Description: Update to Olson DB 2021d
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2021-10-16
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2021b
++# Generated from debian/tzdata/africa.  Olson data version 2021d
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2021b'}
++sub olson_version {'2021d'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Pacific/Fiji.pm
 b/lib/DateTime/TimeZone/Pacific/Fiji.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/australasia.  Olson data version 2021b
++# Generated from debian/tzdata/australasia.  Olson data version 2021d
+ #
+ # Do not edit this file directly.
+ #
+@@ -286,26 +286,8 @@
+ ],
+ [
+ 63746488800, #utc_start 2021-01-16 14:00:00 (Sat)
+-63772495200, #  utc_end 2021-11-13 14:00:00 (Sat)
+-63746532000, #  local_start 2021-01-17 02:00:00 (Sun)
+-63772538400, #local_end 2021-11-14 02:00:00 (Sun)
+-43200,
+-0,
+-'+12',
+-],
+-[
+-63772495200, #utc_start 2021-11-13 14:00:00 (Sat)
+-63777938400, #  utc_end 2022-01-15 14:00:00 (Sat)
+-63772542000, #  local_start 2021-11-14 03:00:00 (Sun)
+-63777985200, #local_end 2022-01-16 03:00:00 (Sun)
+-46800,
+-1,
+-'+13',
+-],
+-[
+-63777938400, #utc_start 2022-01-15 14:00:00 (Sat)
+ 63803944800, #  utc_end 2022-11-12 14:00:00 (Sat)
+-63777981600, #  local_start 2022-01-16 02:00:00 (Sun)
++63746532000, #  local_start 2021-01-17 02:00:00 (Sun)
+ 63803988000, #local_end 2022-11-13 02:00:00 (Sun)
+ 43200,
+ 0,
+@@ -493,9 +475,9 @@
+ ],
+ ];
+ 
+-sub olson_version {'2021b'}
++sub olson_version {'2021d'}
+ 
+-sub has_dst_changes {26}
++sub has_dst_changes {25}
+ 
+ sub _max_year {2031}
+ 
+@@ -545,19 +527,8 @@
+ 
+ my $rules = [
+   bless( {
+-'at' => '3:00',
+-'from' => '2015',
+-'in' => 'Jan',
+-'letter' => '',
+-'name' => 'Fiji',
+-'offset_from_std' => 0,
+-'on' => 'Sun>=12',
+-'save' => '0',
+-'to' => 'max'
+-  }, 'DateTime::TimeZone::OlsonDB::Rule' ),
+-

Bug#996600: buster-pu: package libdatetime-timezone-perl/1:2.23-1+2021d

2021-10-15 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: debian-p...@lists.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.23-1+2021d to buster,
with the data from the Olson db release 2021 as a quilt patch.

Manually stripped debdiff attached.

IIUIC, the change for Fiji DST is effective in about a month, so
there's no immediate hurry, but at some point this might be material
for -updates and/or the next point release.

Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmFqAsxfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgaSPBAAxbYcfNTDoxXhqfRUwTeHj1E/H/yI7N0Urv+w83jFon7DpWCGuRZ3dlyR
iWGFmiSgE4rTwqIadl2MGA6wlR3OcmuPCvPX2fiAAiJx3HqTSgXhToJgIWfVTRd5
sQlyELaEN8kVo3C1X/5v1+aUjRHlMmWRCUg5sRvzkKN0GHlk/iB+a7JEDQEYOEM5
IIm2Ki1G+Sc0RmBH8/MYWPSqkQBHCURjFRcx7pBTLokSjlnLNMQbvGHtkhLf2wZO
q9GOZ5w83kZFFTR9e3sg8H2rEkQx3GTrLVRet8IVseX6RUW6MtQIm+3s2v3dC3FH
Dj3HtYXnqp6B9qrpDKz0TG0gsNtj5IcACCJmNWVRFG30SOIdbehA6JeXpeeiDWS8
r1cUO82+IhAIA5pBEKTIUIQvPFZEU3TGXJw3yziyrnDERMPuy1yQK3RlLq17tMHT
2/hjcx8zT6pKVuBvCkJQscgJ2PvOyZ/6Bwxt17cFEWZ/IxRILur08UBbF2fPN9+c
8Gq+xLr2E4CceL+VFl4H7Wk8RMCjQIO61ttP2mORVKQ91p8wjtSIhTDH1nwheu9w
/4GL4C+Rm+JG1hSlxXEdcr0739IFNZcs3arUq5dLJlHgwiG8AbyB7HtLq8dhARUS
qxibUHpH+9Mx1REvJeIjJXBpWKBUOMp31IbYA7CraoPTAmClGxU=
=X4TH
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.23/debian/changelog 
libdatetime-timezone-perl-2.23/debian/changelog
--- libdatetime-timezone-perl-2.23/debian/changelog 2021-09-28 
13:10:27.0 +0200
+++ libdatetime-timezone-perl-2.23/debian/changelog 2021-10-16 
00:24:05.0 +0200
@@ -1,3 +1,11 @@
+libdatetime-timezone-perl (1:2.23-1+2021d) buster; urgency=medium
+
+  * Update to Olson database version 2021d.
+This update includes fixes for the zone links for Atlantic/Jan_Mayen and
+America/Virgin (2021c), and contemporary changes for Fiji (2021d).
+
+ -- gregor herrmann   Sat, 16 Oct 2021 00:24:05 +0200
+
 libdatetime-timezone-perl (1:2.23-1+2021b) buster; urgency=medium
 
   * Update to Olson database version 2021b.
diff -Nru libdatetime-timezone-perl-2.23/debian/patches/olson-2021d 
libdatetime-timezone-perl-2.23/debian/patches/olson-2021d
--- libdatetime-timezone-perl-2.23/debian/patches/olson-2021d   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/patches/olson-2021d   2021-10-16 
00:24:05.0 +0200
@@ -0,0 +1,7084 @@
+Description: Update to Olson DB 2021d
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2021-10-06
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2021b
++# Generated from debian/tzdata/africa.  Olson data version 2021d
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2021b'}
++sub olson_version {'2021d'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Pacific/Fiji.pm
 b/lib/DateTime/TimeZone/Pacific/Fiji.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/australasia.  Olson data version 2021b
++# Generated from debian/tzdata/australasia.  Olson data version 2021d
+ #
+ # Do not edit this file directly.
+ #
+@@ -286,26 +286,8 @@
+ ],
+ [
+ 63746488800, #utc_start 2021-01-16 14:00:00 (Sat)
+-63772495200, #  utc_end 2021-11-13 14:00:00 (Sat)
+-63746532000, #  local_start 2021-01-17 02:00:00 (Sun)
+-63772538400, #local_end 2021-11-14 02:00:00 (Sun)
+-43200,
+-0,
+-'+12',
+-],
+-[
+-63772495200, #utc_start 2021-11-13 14:00:00 (Sat)
+-63777938400, #  utc_end 2022-01-15 14:00:00 (Sat)
+-63772542000, #  local_start 2021-11-14 03:00:00 (Sun)
+-63777985200, #local_end 2022-01-16 03:00:00 (Sun)
+-46800,
+-1,
+-'+13',
+-],
+-[
+-63777938400, #utc_start 2022-01-15 14:00:00 (Sat)
+ 63803944800, #  utc_end 2022-11-12 14:00:00 (Sat)
+-63777981600, #  local_start 2022-01-16 02:00:00 (Sun)
++63746532000, #  local_start 2021-01-17 02:00:00 (Sun)
+ 63803988000, #local_end 2022-11-13 02:00:00 (Sun)
+ 43200,
+ 0,
+@@ -493,9 +475,9 @@
+ ],
+ ];
+ 
+-sub olson_version {'2021b'}
++sub olson_version {'2021d'}
+ 
+-sub has_dst_changes {26}
++sub has_dst_changes {25}
+ 
+ sub _max_year {2031}
+ 
+@@ -545,19 +527,8 @@
+ 
+ my $rules = [
+   bless( {
+-'at' => '3:00',
+-'from' => '2015',
+-'in' => 'Jan',
+-'letter' => '',
+-'name' => 'Fiji',
+-'offset_from_std' => 0,
+-'on' => 'Sun>=12',
+-'save' => '0',
+-'to' => 'max'
+-  }, 'DateTime::TimeZone::OlsonDB::Rule' ),
+-  bless( {
+  

Bug#995238: buster-pu: package libdatetime-timezone-perl/1:2.23-1+2021b

2021-09-28 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: debian-p...@lists.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.23-1+2021b to buster,
with a new quilt patch integrating the changes of the Olson DB
release 2021b.

As the change to Samoa DST is already effective, this might be
material for -updates.

Find attached a manually stripped down debdiff.

Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmFS/C9fFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgaqcQ//Uxj9+hOn4RkETJvjYs9MJsqFcg+lMR+zFbHCI5oH9Afp/ik2NHL5/T7d
ufkgUxX3thdtP5Mw9oZh+G9VS4gwOajuwyF+1R56LBjJUS5DF6hwzRaUjnWm9txl
KS66sqY4khV+cbu8fnQemQqtpCqk78uuwpXDfEIWLHSrKlwF3LwEf43G2IPwgJ+y
/lDM9xKkFC56/upgpiDNUqlboD3x/IFixgyYIYA+yobw5aqSQ089mUz9A7GcG4/E
MQ5X4VvDOLWPpl5ELRhN16dFj+9GTtlulwuxUJMKbN+sLXqh2+suZDOfM2l2+RFp
8IJZHttZiJCpNpqY8UhX0Iql6iFvSsNLiBj90qKdvLPU8rO+rEl4SvnE6PieZ0Fi
98/TtMjpOE49iEvwQllLazBlbVHY6AyIgF5DCVxBqy+EyswVfwLcbmAE9cxGTTKL
j9Vg+RxWbKA0FrnzDrwF+mBNpcOsiJZMSyPI0+D58ooL7Sai0idgLuTrwZ+bFGi1
6vcAwtGLzFO15sjTDAUTh7RmKSBjB+9+PiwogdCoCNqiQQXDHMBqYEGRp7bFsHBH
4t9joPPt6reePP3X1g4+XwyuH3WpDH3LgFWPR+fHNtp5JatvQroGifoz+UyHjFOl
mJqRsvH1kO4+jHfuwsIX0xkTZD3/bO3qdAcS/RsWv4OfFj75bCQ=
=PDc1
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.23/debian/changelog 
libdatetime-timezone-perl-2.23/debian/changelog
--- libdatetime-timezone-perl-2.23/debian/changelog 2021-01-25 
18:02:02.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/changelog 2021-09-28 
13:10:27.0 +0200
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.23-1+2021b) buster; urgency=medium
+
+  * Update to Olson database version 2021b.
+This update includes contemporary changes for Jordan and Samoa.
+
+ -- gregor herrmann   Tue, 28 Sep 2021 13:10:27 +0200
+
 libdatetime-timezone-perl (1:2.23-1+2021a) buster; urgency=medium
 
   * Update to Olson database version 2021a.
diff -Nru libdatetime-timezone-perl-2.23/debian/patches/olson-2021b 
libdatetime-timezone-perl-2.23/debian/patches/olson-2021b
--- libdatetime-timezone-perl-2.23/debian/patches/olson-2021b   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/patches/olson-2021b   2021-09-28 
13:10:27.0 +0200
@@ -0,0 +1,13139 @@
+Description: Update to Olson DB 2021b
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2021-09-28
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2021a
++# Generated from debian/tzdata/africa.  Olson data version 2021b
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2021a'}
++sub olson_version {'2021b'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Asia/Amman.pm
 b/lib/DateTime/TimeZone/Asia/Amman.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/asia.  Olson data version 2021a
++# Generated from debian/tzdata/asia.  Olson data version 2021b
+ #
+ # Do not edit this file directly.
+ #
+@@ -790,17 +790,17 @@
+ ],
+ [
+ 63771141600, #utc_start 2021-10-28 22:00:00 (Thu)
+-63784447200, #  utc_end 2022-03-31 22:00:00 (Thu)
++63781423200, #  utc_end 2022-02-24 22:00:00 (Thu)
+ 63771148800, #  local_start 2021-10-29 00:00:00 (Fri)
+-63784454400, #local_end 2022-04-01 00:00:00 (Fri)
++63781430400, #local_end 2022-02-25 00:00:00 (Fri)
+ 7200,
+ 0,
+ 'EET',
+ ],
+ [
+-63784447200, #utc_start 2022-03-31 22:00:00 (Thu)
++63781423200, #utc_start 2022-02-24 22:00:00 (Thu)
+ 63802591200, #  utc_end 2022-10-27 22:00:00 (Thu)
+-63784458000, #  local_start 2022-04-01 01:00:00 (Fri)
++63781434000, #  local_start 2022-02-25 01:00:00 (Fri)
+ 63802602000, #local_end 2022-10-28 01:00:00 (Fri)
+ 10800,
+ 1,
+@@ -808,17 +808,17 @@
+ ],
+ [
+ 63802591200, #utc_start 2022-10-27 22:00:00 (Thu)
+-63815896800, #  utc_end 2023-03-30 22:00:00 (Thu)
++63812872800, #  utc_end 2023-02-23 22:00:00 (Thu)
+ 63802598400, #  local_start 2022-10-28 00:00:00 (Fri)
+-63815904000, #local_end 2023-03-31 00:00:00 (Fri)
++6381288, #local_end 2023-02-24 00:00:00 (Fri)
+ 7200,
+ 0,
+ 'EET',
+ ],
+ [
+-63815896800, #utc_start 2023-03-30 22:00:00 (Thu)
++63812872800, #utc_start 2023-02-23 22:00:00 (Thu)
+ 63834040800, #  utc_end 2023-10-26 22:00:00 (Thu)
+-63815907600, #  local_start 2023-03-31 01:00:00 (Fri)
++63812883600, #  local_start 2023-02-24 01:00:00 (Fri)
+ 63834051600, #local_end 2023-10-27 01:00:00 (Fri)
+ 10800,
+ 1,
+@@ -826,17 +826,17

Bug#995237: bullseye-pu: package libdatetime-timezone-perl/1:2.47-1+2021b

2021-09-28 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: debian-p...@lists.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.47-1+2021b to bullseye,
with a new quilt patch integrating the changes of the Olson DB
release 2021b.

As the change to Samoa DST is already effective, this might be
material for -updates.

Find attached a manually stripped down debdiff.

Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmFS/C1fFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgbuCxAAkQqDHo1/R0mcqrRfjfU6VFuEr8k79O2zw+p55uT4pWiB2AW+iFuZxUkI
84w29Ub/YcypnLLkC/luhc9Wh/NoAXBC5rNhAxtgmzeKp134z4mAHvWAWRz4Vo3W
XEpgFJog/4dH5Kwy47t8IXVVQV5xWIyD03zzhcFAH+QSHHxCeKNxk87mwljglUCX
TMgTurNyV54yEdAudPFC0iGF/usy5FLCmqOevb8QpMZiSIYjQ/BbOtteaSpjku5y
1Ve8BSEAMk7wJAhixfx3FqYFMonDjZ1O7h0ytRPIEVcv4bzrQUqHXVgr/UG/UWtb
axogkxoBNVNyaPwoX+dgJ2F4cpPj/p1Qa3HlYoS3rd6HDtxrOr6QPezOUgb7O/+r
Panft86RL3XAz2RgdUqQzw4BkvvOl8mgeDmYAxCFn8802Jk++wWARvD1q2wNCetf
sFeSFvZtPA08EzzNzdDK5J6iNn/pXiD/VO1+gijWQpBEopJpqCobKPm2eXig4Vr/
ZRqvK2S5oHaCLLVs89fZNNhZf+8VrPvjRjegMONi4bJBbN2vxF57hrCKVnvQklkA
x/g8HGUdX7722p/25J2R4SI3j0a+sXrVnN9Z+IR84MhxUnxdfNJvenbnovKksyQT
1rkVt9r2zedjE01gm2woNzzkQ+Akn+QGoQW98DduPnj7tOFQHhQ=
=Byaw
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.47/debian/changelog 
libdatetime-timezone-perl-2.47/debian/changelog
--- libdatetime-timezone-perl-2.47/debian/changelog 2021-01-25 
17:46:03.0 +0100
+++ libdatetime-timezone-perl-2.47/debian/changelog 2021-09-28 
12:45:47.0 +0200
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.47-1+2021b) bullseye; urgency=medium
+
+  * Update to Olson database version 2021b.
+This update includes contemporary changes for Jordan and Samoa.
+
+ -- gregor herrmann   Tue, 28 Sep 2021 12:45:47 +0200
+
 libdatetime-timezone-perl (1:2.47-1+2021a) unstable; urgency=medium
 
   * Import upstream version 2.47.
diff -Nru libdatetime-timezone-perl-2.47/debian/patches/olson-2021b 
libdatetime-timezone-perl-2.47/debian/patches/olson-2021b
--- libdatetime-timezone-perl-2.47/debian/patches/olson-2021b   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.47/debian/patches/olson-2021b   2021-09-28 
12:45:47.0 +0200
@@ -0,0 +1,11209 @@
+Description: Update to Olson DB 2021b
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2021-09-28
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from /tmp/M7TZl06VNc/africa.  Olson data version 2021a
++# Generated from debian/tzdata/africa.  Olson data version 2021b
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2021a'}
++sub olson_version {'2021b'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Asia/Amman.pm
 b/lib/DateTime/TimeZone/Asia/Amman.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from /tmp/M7TZl06VNc/asia.  Olson data version 2021a
++# Generated from debian/tzdata/asia.  Olson data version 2021b
+ #
+ # Do not edit this file directly.
+ #
+@@ -790,17 +790,17 @@
+ ],
+ [
+ 63771141600, #utc_start 2021-10-28 22:00:00 (Thu)
+-63784447200, #  utc_end 2022-03-31 22:00:00 (Thu)
++63781423200, #  utc_end 2022-02-24 22:00:00 (Thu)
+ 63771148800, #  local_start 2021-10-29 00:00:00 (Fri)
+-63784454400, #local_end 2022-04-01 00:00:00 (Fri)
++63781430400, #local_end 2022-02-25 00:00:00 (Fri)
+ 7200,
+ 0,
+ 'EET',
+ ],
+ [
+-63784447200, #utc_start 2022-03-31 22:00:00 (Thu)
++63781423200, #utc_start 2022-02-24 22:00:00 (Thu)
+ 63802591200, #  utc_end 2022-10-27 22:00:00 (Thu)
+-63784458000, #  local_start 2022-04-01 01:00:00 (Fri)
++63781434000, #  local_start 2022-02-25 01:00:00 (Fri)
+ 63802602000, #local_end 2022-10-28 01:00:00 (Fri)
+ 10800,
+ 1,
+@@ -808,17 +808,17 @@
+ ],
+ [
+ 63802591200, #utc_start 2022-10-27 22:00:00 (Thu)
+-63815896800, #  utc_end 2023-03-30 22:00:00 (Thu)
++63812872800, #  utc_end 2023-02-23 22:00:00 (Thu)
+ 63802598400, #  local_start 2022-10-28 00:00:00 (Fri)
+-63815904000, #local_end 2023-03-31 00:00:00 (Fri)
++6381288, #local_end 2023-02-24 00:00:00 (Fri)
+ 7200,
+ 0,
+ 'EET',
+ ],
+ [
+-63815896800, #utc_start 2023-03-30 22:00:00 (Thu)
++63812872800, #utc_start 2023-02-23 22:00:00 (Thu)
+ 63834040800, #  utc_end 2023-10-26 22:00:00 (Thu)
+-63815907600, #  local_start 2023-03-31 01:00:00 (Fri)
++63812883600, #  local_start 2023-02-24 01:00:00 (Fri)
+ 63834051600, #local_end 2023-10-27 01:00:00 (Fri)
+ 10800,
+ 1,
+@@ -826,17 +826,17

Bug#981035: buster-pu: package libdatetime-timezone-perl/1:2.23-1+2021a

2021-01-25 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: debian-p...@lists.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl 1:2.23-1+2021a to buster. It
contains the content of the tzdata 2021 release as perl data files in
a new quilt patch debian/patches/olson-2021a.

Changes are (from tzdata upstream):

South Sudan changes from +03 to +02 on 2021-02-01 at 00:00.

Additionally I took the liberty to fix two typos in d/changelog.

Attached is a manually stripped down debdiff.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmAO/B9fFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgZfRhAArWBmhayS4HB0OM1bs5cyN9Jq3lP9yx6FMwYZ1ns+KYigKNRdtQST+tva
9hdCxVUkSQ1KG6AdXQslffVQV+RXBbtQADZXJyUaKvUULCqEgadnvCRUhzEA56Gb
boYolav2myS0cdNI2uzwHbCxiujln47BtRgUpuxTu3gSc7Bja7ErtQiueNS2JN5P
kB5cqd6jjGonuxbyu2X4PCuFemhLXOpJXD1Owu2U6/4+UcQnPkVQrYHtK7sRpqMb
I4RmkRgbWx7Yso6vB2TiXGn40clKoGnh3BSA/MRQGEJEei77pnDKTM8FpY60vvDG
cdsRQZ+hD3j2n0iJW1RhtpJB95keDb3VRp15+wFMGqxJJnbYnw2aw/DugW43YlNT
PQfSprZcXb36nrgA0NJ+QOF+N8xI0w1HbCBT8Qz4nxE7uWpvTsA9zNongdd5Hq6v
eiWs1Bgf21U8m4z9g5AiyVZ4QgbGvgwdpJ0rS+NLyg1/8NLo5w73WAlqLTWoqbzB
lOfB8Sq5tnNCIsG1XZlIwzWdpUlmWlVlYuaeAYX/JKqNTlqrUjL2JIVsLcuowZRh
We9t6EnW0Y+jdgmF+oeqyve1gBjG0tzXIgR2Ol0fDWV5lxvH9t5ocxCnqSHNggJO
Kigpau/B0mwtpF1geMUiOv5nAGCLqHWlFNWILG3tjBg+CzgUDhE=
=deXX
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.23/debian/changelog 
libdatetime-timezone-perl-2.23/debian/changelog
--- libdatetime-timezone-perl-2.23/debian/changelog 2020-12-23 
20:17:40.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/changelog 2021-01-25 
18:02:02.0 +0100
@@ -1,7 +1,15 @@
+libdatetime-timezone-perl (1:2.23-1+2021a) buster; urgency=medium
+
+  * Update to Olson database version 2021a.
+This update includes contemporary changes for South Sudan.
+  * Fix typos in previous changelog entries.
+
+ -- gregor herrmann   Mon, 25 Jan 2021 18:02:02 +0100
+
 libdatetime-timezone-perl (1:2.23-1+2020e) buster; urgency=medium
 
   * Update to Olson database version 2020e.
-This update includes contemporary changes for Russia (Volograd).
+This update includes contemporary changes for Russia (Volgograd).
 
  -- gregor herrmann   Wed, 23 Dec 2020 20:17:40 +0100
 
@@ -101,7 +109,7 @@
 
   * Import upstream version 2.20.
 This release is based on version 2018f of the Olson database.
-Includes contemporary changes for Russia (Volograd), Fiji, and Chile.
+Includes contemporary changes for Russia (Volgograd), Fiji, and Chile.
   * Install new CODE_OF_CONDUCT.md file.
   * Declare compliance with Debian Policy 4.2.1.
   * Remove trailing whitespace from debian/*.
diff -Nru libdatetime-timezone-perl-2.23/debian/patches/olson-2021a 
libdatetime-timezone-perl-2.23/debian/patches/olson-2021a
--- libdatetime-timezone-perl-2.23/debian/patches/olson-2021a   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/patches/olson-2021a   2021-01-25 
18:02:02.0 +0100
@@ -0,0 +1,14103 @@
+Description: Update to Olson DB 2021a
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2021-01-25
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2020e
++# Generated from debian/tzdata/africa.  Olson data version 2021a
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,11 +43,11 @@
+ ],
+ ];
+ 
+-sub olson_version {'2020e'}
++sub olson_version {'2021a'}
+ 
+ sub has_dst_changes {0}
+ 
+-sub _max_year {2030}
++sub _max_year {2031}
+ 
+ sub _new_instance {
+ return shift->_init( @_, spans => $spans );
+--- a/lib/DateTime/TimeZone/Africa/Juba.pm
 b/lib/DateTime/TimeZone/Africa/Juba.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2020e
++# Generated from debian/tzdata/africa.  Olson data version 2021a
+ #
+ # Do not edit this file directly.
+ #
+@@ -331,20 +331,29 @@
+ ],
+ [
+ 63083613600, #utc_start 2000-01-15 10:00:00 (Sat)
+-DateTime::TimeZone::INFINITY, #  utc_end
++6374781, #  utc_end 2021-01-31 21:00:00 (Sun)
+ 63083624400, #  local_start 2000-01-15 13:00:00 (Sat)
+-DateTime::TimeZone::INFINITY, #local_end
++63747820800, #local_end 2021-02-01 00:00:00 (Mon)
+ 10800,
+ 0,
+ 'EAT',
+ ],
++[
++6374781, #utc_start 2021-01-31 21:00:00 (Sun)
++DateTime::TimeZone::INFINITY, #  utc_end
++63747817200, #  local_start 2021-01-31 23:00:00 (Sun)
++DateTime::TimeZone::INFINITY, #local_end
++7200,
++0,
++'CAT',
++],
+ ];
+ 

Bug#977978: buster-pu: package libdatetime-timezone-perl/1:2.23-1+2020e

2020-12-23 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: debian-p...@lists.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.23-1+2020e to buster.
It includes the data from tzdata 2020e as a quilt patch.

The changes are:

Volgograd switches to Moscow time on 2020-12-27 at 02:00.


Attached is a manually stripped down debdiff.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAl/jmetfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgZycg/8CKshOE5vOjZFss9Y9gJkur9p9CpbsYIybcqmkI0EnCfC1ZwfF/kLrcJd
RLEF6Z4b8JiAEdLPXy51YpWHuOA50kNFG07vFF27bjlY+dIpimomIDxbfKP+LhuF
RfD938pJYjpg2vXI8KeDeFWAJTRHJ1Ma9PBw+3tE0yJlFDvq+N+IPFsA36TbF/EH
l1Ps5RUvQD+ieV+8oNBhBhGovZvB9h61IBNLniKhoFpxaYWCiugscDdUzzla+Y3q
7s7UBUSBIMNkeQlkKlqD3tXxDx40Skg3djKnyM5LQpnAzlreD3EpXfhZbFFJIWxM
Pdqw6WJTlsQqgORE8Dci+IdRRhDB/yThCBnhmA0mmLiYPDVuxrBaNsv1xqqQgTIv
iIwZUmQKu/3Fvp9Ng8NuFAdm+Nr36lIbv613o9VU17tey/jRFyPIa1OA5v0NTzEx
7/G+yNq6mMOdWVHbeB8wggfQ+OEUpgut0sx+2u5EHJz0yg0JakQp4xgTuPWjmQQg
+8/EFl1tpD0uj/1Lf7JmFBapXSiwdoRN4bghJNbB/o76rmatrmdG5oS72rKy4Pko
A5oApXAlok629H0RbOm1CqI2eC4MhNazw5+qjlpMUFs4rLD6t0iPuOBo0vPZIhmE
xPTnQN9R2XUbXFi0D7wirAq5ebBZAV88uAlEObqxH9Jks8W3yl0=
=k//j
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.23/debian/changelog 
libdatetime-timezone-perl-2.23/debian/changelog
--- libdatetime-timezone-perl-2.23/debian/changelog 2020-10-23 
02:37:03.0 +0200
+++ libdatetime-timezone-perl-2.23/debian/changelog 2020-12-23 
20:17:40.0 +0100
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.23-1+2020e) buster; urgency=medium
+
+  * Update to Olson database version 2020e.
+This update includes contemporary changes for Russia (Volograd).
+
+ -- gregor herrmann   Wed, 23 Dec 2020 20:17:40 +0100
+
 libdatetime-timezone-perl (1:2.23-1+2020d) buster; urgency=medium
 
   * Update to Olson database version 2020d.
diff -Nru libdatetime-timezone-perl-2.23/debian/patches/olson-2020e 
libdatetime-timezone-perl-2.23/debian/patches/olson-2020e
--- libdatetime-timezone-perl-2.23/debian/patches/olson-2020e   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/patches/olson-2020e   2020-12-23 
20:17:40.0 +0100
@@ -0,0 +1,14690 @@
+Description: Update to Olson DB 2020e
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2020-12-23
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2020d
++# Generated from debian/tzdata/africa.  Olson data version 2020e
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2020d'}
++sub olson_version {'2020e'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Europe/Volgograd.pm
 b/lib/DateTime/TimeZone/Europe/Volgograd.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/europe.  Olson data version 2020d
++# Generated from debian/tzdata/europe.  Olson data version 2020e
+ #
+ # Do not edit this file directly.
+ #
+@@ -610,16 +610,25 @@
+ ],
+ [
+ 63676364400, #utc_start 2018-10-27 23:00:00 (Sat)
+-DateTime::TimeZone::INFINITY, #  utc_end
++63744703200, #  utc_end 2020-12-26 22:00:00 (Sat)
+ 63676378800, #  local_start 2018-10-28 03:00:00 (Sun)
+-DateTime::TimeZone::INFINITY, #local_end
++63744717600, #local_end 2020-12-27 02:00:00 (Sun)
+ 14400,
+ 0,
+ '+04',
+ ],
++[
++63744703200, #utc_start 2020-12-26 22:00:00 (Sat)
++DateTime::TimeZone::INFINITY, #  utc_end
++63744714000, #  local_start 2020-12-27 01:00:00 (Sun)
++DateTime::TimeZone::INFINITY, #local_end
++10800,
++0,
++'+03',
++],
+ ];
+ 
+-sub olson_version {'2020d'}
++sub olson_version {'2020e'}
+ 
+ sub has_dst_changes {29}
+ 
diff -Nru libdatetime-timezone-perl-2.23/debian/patches/series 
libdatetime-timezone-perl-2.23/debian/patches/series
--- libdatetime-timezone-perl-2.23/debian/patches/series2020-10-23 
02:37:03.0 +0200
+++ libdatetime-timezone-perl-2.23/debian/patches/series2020-12-23 
20:17:40.0 +0100
@@ -5,3 +5,4 @@
 olson-2020b
 olson-2020c
 olson-2020d
+olson-2020e


Bug#972389: buster-pu: package libdatetime-timezone-perl/1:2.23-1+2020c

2020-10-22 Thread gregor herrmann
Control: retitle -1 buster-pu: package libdatetime-timezone-perl/1:2.23-1+2020d

On Sat, 17 Oct 2020 15:57:07 +0200, gregor herrmann wrote:

> I've uploaded libdatetime-timezone-perl/1:2.23-1+2020c to buster. In
> includes the 2020c Olson DB release as a quilt patch.

And now 1:2.23-1+2020d, incorporating tzdata 2020d with

Palestine ends DST earlier than predicted, on 2020-10-24.

debdiff against 1:2.23-1+2020c attached.


Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at -- Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member VIBE!AT & SPI Inc. -- Supporter Free Software Foundation Europe
   `-   NP: Rolling Stones: Strong
diff -Nru libdatetime-timezone-perl-2.23/debian/changelog libdatetime-timezone-perl-2.23/debian/changelog
--- libdatetime-timezone-perl-2.23/debian/changelog	2020-10-17 15:48:06.0 +0200
+++ libdatetime-timezone-perl-2.23/debian/changelog	2020-10-23 02:37:03.0 +0200
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.23-1+2020d) buster; urgency=medium
+
+  * Update to Olson database version 2020d.
+This update includes contemporary changes for Palestine.
+
+ -- gregor herrmann   Fri, 23 Oct 2020 02:37:03 +0200
+
 libdatetime-timezone-perl (1:2.23-1+2020c) buster; urgency=medium
 
   * Update to Olson database version 2020c.
diff -Nru libdatetime-timezone-perl-2.23/debian/patches/olson-2020d libdatetime-timezone-perl-2.23/debian/patches/olson-2020d
--- libdatetime-timezone-perl-2.23/debian/patches/olson-2020d	1970-01-01 01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/patches/olson-2020d	2020-10-23 02:37:03.0 +0200
@@ -0,0 +1,10281 @@
+Description: Update to Olson DB 2020d
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2020-10-23
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2020c
++# Generated from debian/tzdata/africa.  Olson data version 2020d
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2020c'}
++sub olson_version {'2020d'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Asia/Hebron.pm
 b/lib/DateTime/TimeZone/Asia/Hebron.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/asia.  Olson data version 2020c
++# Generated from debian/tzdata/asia.  Olson data version 2020d
+ #
+ # Do not edit this file directly.
+ #
+@@ -988,17 +988,17 @@
+ ],
+ [
+ 63563176800, #utc_start 2015-03-27 22:00:00 (Fri)
+-63581230800, #  utc_end 2015-10-22 21:00:00 (Thu)
++63581234400, #  utc_end 2015-10-22 22:00:00 (Thu)
+ 63563187600, #  local_start 2015-03-28 01:00:00 (Sat)
+-63581241600, #local_end 2015-10-23 00:00:00 (Fri)
++63581245200, #local_end 2015-10-23 01:00:00 (Fri)
+ 10800,
+ 1,
+ 'EEST',
+ ],
+ [
+-63581230800, #utc_start 2015-10-22 21:00:00 (Thu)
++63581234400, #utc_start 2015-10-22 22:00:00 (Thu)
+ 6359463, #  utc_end 2016-03-25 23:00:00 (Fri)
+-63581238000, #  local_start 2015-10-22 23:00:00 (Thu)
++63581241600, #  local_start 2015-10-23 00:00:00 (Fri)
+ 63594637200, #local_end 2016-03-26 01:00:00 (Sat)
+ 7200,
+ 0,
+@@ -1060,44 +1060,44 @@
+ ],
+ [
+ 63689493600, #utc_start 2019-03-28 22:00:00 (Thu)
+-63707724000, #  utc_end 2019-10-25 22:00:00 (Fri)
++63707720400, #  utc_end 2019-10-25 21:00:00 (Fri)
+ 63689504400, #  local_start 2019-03-29 01:00:00 (Fri)
+-63707734800, #local_end 2019-10-26 01:00:00 (Sat)
++63707731200, #local_end 2019-10-26 00:00:00 (Sat)
+ 10800,
+ 1,
+ 'EEST',
+ ],
+ [
+-63707724000, #utc_start 2019-10-25 22:00:00 (Fri)
+-63720943200, #  utc_end 2020-03-26 22:00:00 (Thu)
+-63707731200, #  local_start 2019-10-26 00:00:00 (Sat)
+-63720950400, #local_end 2020-03-27 00:00:00 (Fri)
++63707720400, #utc_start 2019-10-25 21:00:00 (Fri)
++63721029600, #  utc_end 2020-03-27 22:00:00 (Fri)
++63707727600, #  local_start 2019-10-25 23:00:00 (Fri)
++63721036800, #local_end 2020-03-28 00:00:00 (Sat)
+ 7200,
+ 0,
+ 'EET',
+ ],
+ [
+-63720943200, #utc_start 2020-03-26 22:00:00 (Thu)
+-63739778400, #  utc_end 2020-10-30 22:00:00 (Fri)
+-63720954000, #  local_start 2020-03-27 01:00:00 (Fri)
+-63739789200, #local_end 2020-10-31 01:00:00 (Sat)
++63721029600, #utc_start 2020-03-27 22:00:00 (Fri)
++63739173600, #  utc_end 2020-10-23 22:00:00 (Fri)
++63721040400, #  local_start 2020-03-28 01:00:00 (Sat)
++63739184400, #local_end 2020-10-24 01:00:00 (Sat)
+ 10800,
+ 1,
+ 'EEST',
+ ],
+ [
+-63739778400, #utc_start 2020-10-30 22:00:00 (Fri)
+-63752392800, #  utc_end 2021-03-25 22:00:00 (Thu)
+-63739785600, #  local_start 2020-10-31 00:

Bug#972389: buster-pu: package libdatetime-timezone-perl/1:2.23-1+2020c

2020-10-17 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: debian-p...@lists.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.23-1+2020c to buster. In
includes the 2020c Olson DB release as a quilt patch.

The changes are:
Fiji starts DST later than usual, on 2020-12-20.

I'm attaching a manually stripped down debdiff against
1:2.23-1+2020b.

Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAl+K+DNfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgZQlA/+L6bSBfjamPYrJcdu+L2Rh8F2lKt6OdibDLdA3tz9xWX58NadcXFhwUf7
S+LCanPKGD7W5dXXEVwfw5RLxAxWKzLQcbKwbob/I5I7HnvHrPoOopFBskfGvz2f
+18y1KzSEZV2MYy7vjReyXBwx1JlTk6L55jCUfvaZzkxgXeotyy4qBgSsXFsfuGA
AS+fYVudUjKXKTrlVVCQhedLu5lNUKIP49g6tliYVeT6baEruQW6g8JtzzKcXgCQ
ARC6T1dXGuN3U+so9t9K24VTQM8wcgjVB7wji2fKG0KCBa6gDFVN2BKYdR4COWl+
wEVEsLQMCiG5Dl4xPbJUzOQIJfQBty3crfnFnB4u+tnqBKb1hXhtQVwakmG+iXKN
motmbpPNELhY4vCYuFhaRhT1nFf8r/4pNuDVJaFErjFM71jX5Uhuw0MLufyhyt+j
XWwUFtbNe1ZoP5sy1nVKI+RTqwiHokS8MFEdvhjsAYA3fApnT3ccGpf1X9jy1NeP
Luyt87RHlkcrHRdLs+MGuGMfKARIWPApwy3qhYm6zLW4vYBi6wbdm0x8zwsEUHsE
QVuZc6F2DKOshVrmPaN7Ex0blyC62yKeYRvj9YX+76F0wdKwK/ewsDTO7bt4fAG+
DFeiwif3vI4wKDgndJ2TJ6Xv6OF2/76f2cov+Fo/9eRt/iWF08E=
=bhIm
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.23/debian/changelog 
libdatetime-timezone-perl-2.23/debian/changelog
--- libdatetime-timezone-perl-2.23/debian/changelog 2020-10-10 
16:35:48.0 +0200
+++ libdatetime-timezone-perl-2.23/debian/changelog 2020-10-17 
15:48:06.0 +0200
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.23-1+2020c) buster; urgency=medium
+
+  * Update to Olson database version 2020c.
+This update includes contemporary changes for Fiji.
+
+ -- gregor herrmann   Sat, 17 Oct 2020 15:48:06 +0200
+
 libdatetime-timezone-perl (1:2.23-1+2020b) buster; urgency=medium
 
   * Update to Olson database version 2020b.
diff -Nru libdatetime-timezone-perl-2.23/debian/patches/olson-2020c 
libdatetime-timezone-perl-2.23/debian/patches/olson-2020c
--- libdatetime-timezone-perl-2.23/debian/patches/olson-2020c   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/patches/olson-2020c   2020-10-17 
15:48:06.0 +0200
@@ -0,0 +1,9760 @@
+Description: Update to Olson DB 2020c
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2020-10-17
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2020b
++# Generated from debian/tzdata/africa.  Olson data version 2020c
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2020b'}
++sub olson_version {'2020c'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Pacific/Fiji.pm
 b/lib/DateTime/TimeZone/Pacific/Fiji.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/australasia.  Olson data version 2020b
++# Generated from debian/tzdata/australasia.  Olson data version 2020c
+ #
+ # Do not edit this file directly.
+ #
+@@ -268,17 +268,17 @@
+ ],
+ [
+ 63714434400, #utc_start 2020-01-11 14:00:00 (Sat)
+-63740440800, #  utc_end 2020-11-07 14:00:00 (Sat)
++63744069600, #  utc_end 2020-12-19 14:00:00 (Sat)
+ 63714477600, #  local_start 2020-01-12 02:00:00 (Sun)
+-63740484000, #local_end 2020-11-08 02:00:00 (Sun)
++63744112800, #local_end 2020-12-20 02:00:00 (Sun)
+ 43200,
+ 0,
+ '+12',
+ ],
+ [
+-63740440800, #utc_start 2020-11-07 14:00:00 (Sat)
++63744069600, #utc_start 2020-12-19 14:00:00 (Sat)
+ 63746488800, #  utc_end 2021-01-16 14:00:00 (Sat)
+-63740487600, #  local_start 2020-11-08 03:00:00 (Sun)
++63744116400, #  local_start 2020-12-20 03:00:00 (Sun)
+ 63746535600, #local_end 2021-01-17 03:00:00 (Sun)
+ 46800,
+ 1,
+@@ -475,7 +475,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2020b'}
++sub olson_version {'2020c'}
+ 
+ sub has_dst_changes {25}
+ 
+@@ -527,6 +527,17 @@
+ 
+ my $rules = [
+   bless( {
++'at' => '2:00',
++'from' => '2021',
++'in' => 'Nov',
++'letter' => '',
++'name' => 'Fiji',
++'offset_from_std' => 3600,
++'on' => 'Sun>=8',
++'save' => '1:00',
++'to' => 'max'
++  }, 'DateTime::TimeZone::OlsonDB::Rule' ),
++  bless( {
+ 'at' => '3:00',
+ 'from' => '2015',
+ 'in' => 'Jan',
+@@ -536,17 +547,6 @@
+ 'on' => 'Sun>=12',
+ 'save' => '0',
+ 'to' => 'max'
+-  }, 'DateTime::TimeZone::OlsonDB::Rule' ),
+-  bless( {
+-'at' => '2:00',
+-'from' => '2019',
+-'

Bug#971954: buster-pu: package libdatetime-timezone-perl/1:2.23-1+2020b

2020-10-10 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: debian-p...@lists.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.23-1+2020b to buster.
It contains the changes of the tzdata 2020b release as a quilt patch
against the Perl data files.

The changes of the Olson db 2020b release are (taken from their
upstream announcement):

  Revised predictions for Morocco's changes starting in 2023.
  Canada's Yukon changes to -07 on 2020-11-01, not 2020-03-08.
  Macquarie Island has stayed in sync with Tasmania since 2011.
  Casey, Antarctica is at +08 in winter and +11 in summer.

I'm attaching a (manually stripped down) debdiff.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAl+Byh9fFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYOHRAAtA09Ofet6hippTAGUGcoWVpJ8O9kdMsg9SNVEtFvBCP0WeMYEIBcPLKe
XC4LO+YKqVDDpaDXAzTVLnSIV32uP83xe9oPNLpoteT+PsYLYgQyjy/CAV85zEGf
bRA56GutJfVx4AQR8OhQuCGqjBO8bQIceJwecCgCHlgDMy7MtmC4xZ99v9gcE+NQ
drIgS6KiXEOyztMmABdcRr709VLIPXZ7Cr/OcaLAuMsuDLQ2xEzvzpJgHWph6xIu
lhZSt9lyTh++0vPE2e328abKqV7wr2J20EqFkT7Ycn/IbAhtEVSJ8pqG6LzscbPD
kd9+goiFDsvNUAu4mj+NhPGEghOGuMPY/0rsL72ykH8YWxQ4J3THPtXzP0Krifd9
1WWzgTBRvdJ6FP/nXZ5XF4M/GfW0f9WixHfOFr3sczcRM1T+DqVs+Hwnh12LgBCX
Z5vfmet0ti4gMtVIwjVJzUx3qmuYFwCg9AahkQr62O2/i/f7APvAUFmZkra6IkD5
dY+jock+yViyT4UWPCBWNsF2mhuzcG4nAANEE92X0r4ap8EQ9jRIYYKQS54uqukH
4vy48K4kYYhIlN0/3c2kx0sPuFZS0rfSDGxgxchXmPDMjxxfUfrEorVrnZ06apDa
gkkm6k/5FzPpKKdnXUWZ2jxsmjwL5gRY9MNrh3dy7zZQ8bAS6g4=
=c3TQ
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.23/debian/changelog 
libdatetime-timezone-perl-2.23/debian/changelog
--- libdatetime-timezone-perl-2.23/debian/changelog 2020-04-24 
18:30:12.0 +0200
+++ libdatetime-timezone-perl-2.23/debian/changelog 2020-10-10 
16:35:48.0 +0200
@@ -1,3 +1,12 @@
+libdatetime-timezone-perl (1:2.23-1+2020b) buster; urgency=medium
+
+  * Update to Olson database version 2020b.
+This update includes contemporary changes for Morocco, Casey Station, and
+the Yukon. This release also removes the very long-deprecated
+"US/Pacific-New" zone name.
+
+ -- gregor herrmann   Sat, 10 Oct 2020 16:35:48 +0200
+
 libdatetime-timezone-perl (1:2.23-1+2020a) buster; urgency=medium
 
   * Update to Olson database version 2020a.
diff -Nru libdatetime-timezone-perl-2.23/debian/patches/olson-2020b 
libdatetime-timezone-perl-2.23/debian/patches/olson-2020b
--- libdatetime-timezone-perl-2.23/debian/patches/olson-2020b   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/patches/olson-2020b   2020-10-10 
16:35:48.0 +0200
@@ -0,0 +1,11184 @@
+Description: Update to Olson DB 2020b
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2020-10-10
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2020a
++# Generated from debian/tzdata/africa.  Olson data version 2020b
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2020a'}
++sub olson_version {'2020b'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Africa/Casablanca.pm
 b/lib/DateTime/TimeZone/Africa/Casablanca.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2020a
++# Generated from debian/tzdata/africa.  Olson data version 2020b
+ #
+ # Do not edit this file directly.
+ #
+@@ -601,17 +601,17 @@
+ ],
+ [
+ 63814874400, #utc_start 2023-03-19 02:00:00 (Sun)
+-63817898400, #  utc_end 2023-04-23 02:00:00 (Sun)
++63818503200, #  utc_end 2023-04-30 02:00:00 (Sun)
+ 63814874400, #  local_start 2023-03-19 02:00:00 (Sun)
+-63817898400, #local_end 2023-04-23 02:00:00 (Sun)
++63818503200, #local_end 2023-04-30 02:00:00 (Sun)
+ 0,
+ 1,
+ '+00',
+ ],
+ [
+-63817898400, #utc_start 2023-04-23 02:00:00 (Sun)
++63818503200, #utc_start 2023-04-30 02:00:00 (Sun)
+ 63845719200, #  utc_end 2024-03-10 02:00:00 (Sun)
+-63817902000, #  local_start 2023-04-23 03:00:00 (Sun)
++63818506800, #  local_start 2023-04-30 03:00:00 (Sun)
+ 63845722800, #local_end 2024-03-10 03:00:00 (Sun)
+ 3600,
+ 0,
+@@ -745,17 +745,17 @@
+ ],
+ [
+ 64059818400, #utc_start 2030-12-22 02:00:00 (Sun)
+-64062842400, #  utc_end 2031-01-26 02:00:00 (Sun)
++64063447200, #  utc_end 2031-02-02 02:00:00 (Sun)
+ 64059818400, #  local_start 2030-12-22 02:00:00 (Sun)
+-64062842400, #local_end 2031-01-26 02:00:00 (Sun)
++64063447200, #local_end 2031-02-02 02:00:00 (Sun)
+ 0,
+

Bug#958716: buster-pu: package libdatetime-timezone-perl/1:2.23-1+2020a

2020-04-24 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.23-1+2020a to buster with
a quilt patch that adapts the data to the tzdata release 2020a.

The timezone changes are:

Morocco springs forward on 2020-05-31, not 2020-05-24.
Canada's Yukon advanced to -07 year-round on 2020-03-08.
America/Nuuk renamed from America/Godthab.

Manually stripped down debdiff attached.


Cheers,
gregor



-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAl6jFpJfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgb86RAAxdnKnXAR2b+XDAjmueliywboJrxXALkwXrwc056uNjk6yUo8MwEM2ugw
GAjuy4LsZsep14g1TnvCPXG9m+n1wanX16tu3hUanUWyYrHUd27O8qioW2pWlM2Q
EVUJxvUchPgMmGEt92S+UzGY1iZulavo1GK6JUz+RJ/51usD1ZFA5jOyo9bya9im
/cKpXmEHIazdFWZ0tB4L9GA4RuMzO/RflDmmCGT6oagn7nX7/E+jehWWvmpB4Y6y
EgoTvyC/h3f0pektuUxLxyamwCCMcD5sxAS6uYRZ/cy7goc8mGbtBhMzAhPmuGmG
FnMNVWlOoLgUeNjhN/n+Vbu54Ux3fWitCwAZrKKmjwN0oo0cGLz6xHSKDOxAxsAQ
OZNisNAZ2iLSaez/v8NrOi/aMsgHvcnwEcCqvvUB57zxB0dXMlmjcACDAY6kw4k/
KCoUvxY2p55471945WXDmXAArguJX1rfVNSub6SDb7nm/TWGWqBWLuoW7DrHtQlC
Orhm9gj5QXpvR9vbTtvtHEP2OXrZUhj7k9Hl40paLAjlrUuHS3m4mgG1cDfq3uve
wOKgkNybGmofQ7RN3JVzdFbh6s2LwnW+x+XWiLzCK4LT+DI6XnroJGYr5A+9Fl1M
5U9VuuEPs13a+jW4bVTWQFogM7FQnx94j5bQUSE30d9hwBkjap8=
=ePAw
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.23/debian/changelog 
libdatetime-timezone-perl-2.23/debian/changelog
--- libdatetime-timezone-perl-2.23/debian/changelog 2019-09-14 
15:57:22.0 +0200
+++ libdatetime-timezone-perl-2.23/debian/changelog 2020-04-24 
18:30:12.0 +0200
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.23-1+2020a) buster; urgency=medium
+
+  * Update to Olson database version 2020a.
+This update contains contemporary changes for Morocco and the Yukon.
+
+ -- gregor herrmann   Fri, 24 Apr 2020 18:30:12 +0200
+
 libdatetime-timezone-perl (1:2.23-1+2019c) buster; urgency=medium
 
   * Update to Olson database version 2019c.
diff -Nru libdatetime-timezone-perl-2.23/debian/patches/olson-2020a 
libdatetime-timezone-perl-2.23/debian/patches/olson-2020a
--- libdatetime-timezone-perl-2.23/debian/patches/olson-2020a   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/patches/olson-2020a   2020-04-24 
18:30:12.0 +0200
@@ -0,0 +1,17398 @@
+Description: Update to Olson DB 2020a
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2020-04-24
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2019c
++# Generated from debian/tzdata/africa.  Olson data version 2020a
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,11 +43,11 @@
+ ],
+ ];
+ 
+-sub olson_version {'2019c'}
++sub olson_version {'2020a'}
+ 
+ sub has_dst_changes {0}
+ 
+-sub _max_year {2029}
++sub _max_year {2030}
+ 
+ sub _new_instance {
+ return shift->_init( @_, spans => $spans );
+--- a/lib/DateTime/TimeZone/Africa/Casablanca.pm
 b/lib/DateTime/TimeZone/Africa/Casablanca.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2019c
++# Generated from debian/tzdata/africa.  Olson data version 2020a
+ #
+ # Do not edit this file directly.
+ #
+@@ -547,17 +547,17 @@
+ ],
+ [
+ 63722944800, #utc_start 2020-04-19 02:00:00 (Sun)
+-63725968800, #  utc_end 2020-05-24 02:00:00 (Sun)
++63726573600, #  utc_end 2020-05-31 02:00:00 (Sun)
+ 63722944800, #  local_start 2020-04-19 02:00:00 (Sun)
+-63725968800, #local_end 2020-05-24 02:00:00 (Sun)
++63726573600, #local_end 2020-05-31 02:00:00 (Sun)
+ 0,
+ 1,
+ '+00',
+ ],
+ [
+-63725968800, #utc_start 2020-05-24 02:00:00 (Sun)
++63726573600, #utc_start 2020-05-31 02:00:00 (Sun)
+ 63753789600, #  utc_end 2021-04-11 02:00:00 (Sun)
+-63725972400, #  local_start 2020-05-24 03:00:00 (Sun)
++63726577200, #  local_start 2020-05-31 03:00:00 (Sun)
+ 63753793200, #local_end 2021-04-11 03:00:00 (Sun)
+ 3600,
+ 0,
+@@ -691,17 +691,17 @@
+ ],
+ [
+ 6396700, #utc_start 2028-01-23 02:00:00 (Sun)
+-63970912800, #  utc_end 2028-02-27 02:00:00 (Sun)
++63971517600, #  utc_end 2028-03-05 02:00:00 (Sun)
+ 6396700, #  local_start 2028-01-23 02:00:00 (Sun)
+-63970912800, #local_end 2028-02-27 02:00:00 (Sun)
++63971517600, #local_end 2028-03-05 02:00:00 (Sun)
+ 0,
+ 1,
+ '+00',
+ ],
+ [
+-63970912800, #utc_start 2028-02-27 02:00:00 (Sun)
++63971517600, #utc_start 2028-03-05 02:00:00 (Sun)
+ 63998733600, #  utc_end 2029-01-14 02:00:00 (Sun)
+-63970

Bug#940246: stretch-pu: package libdatetime-timezone-perl/1:2.09-1+2019c

2019-09-14 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded a new version of libdatetime-timezone-perl to stretch,
incorporating the changes of the Olson DB 2019c as quilt patch.

Changes are (taken from the tzdata package):
- Fiji's next DST transitions will be 2019-11-10 and 2020-01-12
  instead of 2019-11-03 and 2020-01-19.
- Norfolk Island will observe Australian-style DST starting in
  spring 2019.  The first transition is on 2019-10-06.

Manually stripped down debdiff attached.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAl189npfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYH/w//YsudREdIKafBHQNO99cdkvxeUtrHOWQifXHLu58G4HhS8el6YIHygd6z
n7qbsHn429uvF6wXupSQUKO0+v9FuBzflda49HuJYsJ60kpIZCSRzyVaX+2ucDli
3JpKQB444T+vaqSXSm4Rf3u9t6PHaYUY6s4cW9ET34Pq+sDk/PA5omlKWGmMfj+l
oypdvHYeDE5N80e2FoEf2bGbv9+wEL9D3wpE0HqE8Ki+P22mXmLr+FMIMTiosFSe
p5LM7B0wdjQ0tQTCeFBHKfs+G2gcnoXQFp0KuMYF2XYlBrvQp1poU5k5HQvvB7dW
OMpybbKKlE3nl0F6UZvva+W+v6ApP9DW0LdVKVU76zJFy22IMO22UP6aEoAfxTtC
pVO2AShF2qx+9+BveDF6jHjmlgd8oXR0Ki+kdmk6sbX/Qqw3uyzKWy44b6JWi+iv
MX1s+cdKc3wUH6Tg1sGqGvo3rvWqsujhnzJ1C44wGD79PDmn+5oQLotG8F0VYaZN
qcXT6w6OOD8A/C0f8meD1x4iA50obLYEGLTdOA1ura3dm29IC6I3YCB/v5ovKXOz
ZucLLCDZV/vXp24TVIw/qBsxe4s6LqXyCpGo3v92rWWOBs0djCPgxL0Rtcer3Vnh
EoNl7Yfd7Oasqzm9RdshooTiAlLVlFMoegB0HE1LsOVjePO2ijg=
=RJmh
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.09/debian/changelog 
libdatetime-timezone-perl-2.09/debian/changelog
--- libdatetime-timezone-perl-2.09/debian/changelog 2019-07-09 
17:45:44.0 +0200
+++ libdatetime-timezone-perl-2.09/debian/changelog 2019-09-14 
16:09:21.0 +0200
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.09-1+2019c) stretch; urgency=medium
+
+  * Update to Olson database version 2019c.
+This update contains contemporary changes for Fiji and Norfolk Island.
+
+ -- gregor herrmann   Sat, 14 Sep 2019 16:09:21 +0200
+
 libdatetime-timezone-perl (1:2.09-1+2019b) stretch; urgency=medium
 
   * Update to Olson database version 2019b.
diff -Nru libdatetime-timezone-perl-2.09/debian/patches/olson-2019c 
libdatetime-timezone-perl-2.09/debian/patches/olson-2019c
--- libdatetime-timezone-perl-2.09/debian/patches/olson-2019c   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.09/debian/patches/olson-2019c   2019-09-14 
16:09:21.0 +0200
@@ -0,0 +1,1 @@
+Description: Update to Olson DB 2019c
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2019-09-14
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2019b
++# Generated from debian/tzdata/africa.  Olson data version 2019c
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2019b'}
++sub olson_version {'2019c'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Pacific/Fiji.pm
 b/lib/DateTime/TimeZone/Pacific/Fiji.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/australasia.  Olson data version 2019b
++# Generated from debian/tzdata/australasia.  Olson data version 2019c
+ #
+ # Do not edit this file directly.
+ #
+@@ -250,35 +250,35 @@
+ ],
+ [
+ 63682984800, #utc_start 2019-01-12 14:00:00 (Sat)
+-63708386400, #  utc_end 2019-11-02 14:00:00 (Sat)
++63708991200, #  utc_end 2019-11-09 14:00:00 (Sat)
+ 63683028000, #  local_start 2019-01-13 02:00:00 (Sun)
+-63708429600, #local_end 2019-11-03 02:00:00 (Sun)
++63709034400, #local_end 2019-11-10 02:00:00 (Sun)
+ 43200,
+ 0,
+ '+12',
+ ],
+ [
+-63708386400, #utc_start 2019-11-02 14:00:00 (Sat)
+-63715039200, #  utc_end 2020-01-18 14:00:00 (Sat)
+-63708433200, #  local_start 2019-11-03 03:00:00 (Sun)
+-63715086000, #local_end 2020-01-19 03:00:00 (Sun)
++63708991200, #utc_start 2019-11-09 14:00:00 (Sat)
++63714434400, #  utc_end 2020-01-11 14:00:00 (Sat)
++63709038000, #  local_start 2019-11-10 03:00:00 (Sun)
++63714481200, #local_end 2020-01-12 03:00:00 (Sun)
+ 46800,
+ 1,
+ '+13',
+ ],
+ [
+-63715039200, #utc_start 2020-01-18 14:00:00 (Sat)
+-63739836000, #  utc_end 2020-10-31 14:00:00 (Sat)
+-63715082400, #  local_start 2020-01-19 02:00:00 (Sun)
+-63739879200, #local_end 2020-11-01 02:00:00 (Sun)
++63714434400, #utc_start 2020-01-11 14:00:00 (Sat)
++63740440800, #  utc_end 2020-11-07 14:00:00 (Sat)
++63714477600, #  local_start 2020-01-12 02:00:00 (Sun)
++63740484000, #local_end 2020-11-08 02:00:00 (Sun)
+ 43200,
+ 0,
+ '+12

Bug#940245: buster-pu: package libdatetime-timezone-perl/1:2.23-1+2019c

2019-09-14 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded a new version of libdatetime-timezone-perl to buster,
incorporating the changes of the Olson DB 2019c as quilt patch.

Changes are (taken from the tzdata package):
- Fiji's next DST transitions will be 2019-11-10 and 2020-01-12
  instead of 2019-11-03 and 2020-01-19.
- Norfolk Island will observe Australian-style DST starting in
  spring 2019.  The first transition is on 2019-10-06.

Manually stripped down debdiff attached.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAl189nBfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qga74A/+Pa5TSWvgYmlI/IPQrGnW+tfV05kttX3XqSkck+SWbT+SNLg2MWedN8nk
6KTPGjAfTtTpX3hIXzvKYJY5MIuXVXghKPbS2wZMdCF4avVu/Jr9dF9hmx6uHYeD
VbM3mKSzC090LI47ZVUvW3buyPmCR49U8bRxf+ewiVY9qjIaPYxQ/UjvkNPQrR7O
ppNJ88DTcD0iUvM3O3AX241eWiMing2EFQc4H4r9jTHWlLIbCPSRMsEC5pLqu2xW
dcB6T44EEUDwzi9mawgV0UKHUeCuL3v2FeCnFNUtckKlBPhgH+R9yjuk0AYxWkaT
0+Y5Hc0dp1h1kHn8fCoEyqXIrlwHBJiuCqw2+dIHVeoCCnSGhj9UYmOZyRZrGHax
A9Nmc3lM0hyPaM70rnfOo8kepP6fu6UNQUdjTqOjgd9p1FcaTj3J+DBBpVziW2EC
Nl5NpgqoBvlqobMeLf5EwCBQgSGSammjrb9P/N4hnSJpidPX5Mugj4Gz8ycCTv0U
6MWEoo7wASt2zWOfHr9764Zzm8INB4wsBaYx6DU52Y2rjgJykVVmBRO3zTYLVki4
jXQSVJ7OR2q5tqSa2KwcSBPG/VQJWMwuPxQCW56Os35FiQ/RWs0zsJcDI3TnS01C
OwqawU8fAw4gzsV/wzpxTyldhL4vRqLnT4ZRB/U3qZL1dxsTff4=
=SvbM
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.23/debian/changelog 
libdatetime-timezone-perl-2.23/debian/changelog
--- libdatetime-timezone-perl-2.23/debian/changelog 2019-07-09 
17:51:51.0 +0200
+++ libdatetime-timezone-perl-2.23/debian/changelog 2019-09-14 
15:57:22.0 +0200
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.23-1+2019c) buster; urgency=medium
+
+  * Update to Olson database version 2019c.
+This update contains contemporary changes for Fiji and Norfolk Island.
+
+ -- gregor herrmann   Sat, 14 Sep 2019 15:57:22 +0200
+
 libdatetime-timezone-perl (1:2.23-1+2019b) buster; urgency=medium
 
   * Update to Olson database version 2019b.
diff -Nru libdatetime-timezone-perl-2.23/debian/patches/olson-2019c 
libdatetime-timezone-perl-2.23/debian/patches/olson-2019c
--- libdatetime-timezone-perl-2.23/debian/patches/olson-2019c   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/patches/olson-2019c   2019-09-14 
15:57:22.0 +0200
@@ -0,0 +1,11461 @@
+Description: Update to Olson DB 2019c
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2019-09-14
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2019b
++# Generated from debian/tzdata/africa.  Olson data version 2019c
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2019b'}
++sub olson_version {'2019c'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Pacific/Fiji.pm
 b/lib/DateTime/TimeZone/Pacific/Fiji.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/australasia.  Olson data version 2019b
++# Generated from debian/tzdata/australasia.  Olson data version 2019c
+ #
+ # Do not edit this file directly.
+ #
+@@ -250,35 +250,35 @@
+ ],
+ [
+ 63682984800, #utc_start 2019-01-12 14:00:00 (Sat)
+-63708386400, #  utc_end 2019-11-02 14:00:00 (Sat)
++63708991200, #  utc_end 2019-11-09 14:00:00 (Sat)
+ 63683028000, #  local_start 2019-01-13 02:00:00 (Sun)
+-63708429600, #local_end 2019-11-03 02:00:00 (Sun)
++63709034400, #local_end 2019-11-10 02:00:00 (Sun)
+ 43200,
+ 0,
+ '+12',
+ ],
+ [
+-63708386400, #utc_start 2019-11-02 14:00:00 (Sat)
+-63715039200, #  utc_end 2020-01-18 14:00:00 (Sat)
+-63708433200, #  local_start 2019-11-03 03:00:00 (Sun)
+-63715086000, #local_end 2020-01-19 03:00:00 (Sun)
++63708991200, #utc_start 2019-11-09 14:00:00 (Sat)
++63714434400, #  utc_end 2020-01-11 14:00:00 (Sat)
++63709038000, #  local_start 2019-11-10 03:00:00 (Sun)
++63714481200, #local_end 2020-01-12 03:00:00 (Sun)
+ 46800,
+ 1,
+ '+13',
+ ],
+ [
+-63715039200, #utc_start 2020-01-18 14:00:00 (Sat)
+-63739836000, #  utc_end 2020-10-31 14:00:00 (Sat)
+-63715082400, #  local_start 2020-01-19 02:00:00 (Sun)
+-63739879200, #local_end 2020-11-01 02:00:00 (Sun)
++63714434400, #utc_start 2020-01-11 14:00:00 (Sat)
++63740440800, #  utc_end 2020-11-07 14:00:00 (Sat)
++63714477600, #  local_start 2020-01-12 02:00:00 (Sun)
++63740484000, #local_end 2020-11-08 02:00:00 (Sun)
+ 43200,
+ 0,
+ '+12

Re: Bits from the Release Team: ride like the wind, Bullseye!

2019-07-11 Thread gregor herrmann
On Sun, 07 Jul 2019 02:47:00 +0100, Jonathan Wiltshire wrote:

> There are too many people who should be thanked for their work on getting us 
> to
> this point to list them all individually, and we would be sure to miss some.
> Nevertheless, we would like to particularly thank the installer team, the
> buildd and ftp teams, the CD team, the publicity team, the webmasters, the
> Release Notes editors, porters and all the bug squashers, NMUers, package
> maintainers and translators who have contributed to making buster a great
> release of which we should all be proud.

You indeed missed someone (for obvious reasons): I'd like to thank
the release team for their excellent work!
 
> The release of buster also means the bullseye release cycle is about to begin.
> From now on, we will no longer allow binaries uploaded by maintainers to
> migrate to testing. This means that you will need to do source-only uploads if
> you want them to reach bullseye.

That's great news.
 
>   Q: I needed to do a binary upload because my upload went to the NEW queue,
>  do I need to do a new (source-only) upload for it to reach bullseye?
>   A: Yes. We also suggest going through NEW in experimental instead of 
> unstable
>  where possible, to avoid disruption in unstable.

But this part not so much.
 
Forcing hundreds of maintainers to do two uploads for a new package
seems to me like the wrong solution for the conflicting interests of
the ftp team (wants to see binary packages for review in NEW) and the
release team (doesn't want to see binary packages in testing not
built by buildds).

I hope that there will be a better solution for this dilemma in the
not too distant future. If throwing away binaries is too problematic,
as Niels mentioned, maybe SomeThing™ could build a binary package for
the ftp-masters for source-only uploads to NEW. Or people knowing the
whole infrastructure better than me have smarter ideas :)


Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at -- Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member VIBE!AT & SPI Inc. -- Supporter Free Software Foundation Europe
   `-   NP: Beatles


signature.asc
Description: Digital Signature


Bug#931724: buster-pu: package libdatetime-timezone-perl/1:2.23-1+2019b

2019-07-09 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.23-1+2019b to buster,
incorporating the Olson db 2019b release, as usual as a quilt patch
which only touches the Perl modules with the timezone information.

Manually stripped down debdiff attached.

Relevant changes this time are:
- - Palestine: the change in March 2019 was fixed (off-by-one day)
- - Brazil will stay in standard time, i.e. the switch to DST in Autumn
  2019 is cancelled.

As there is no urgency this doesn't necessarily have to go through
- -updates IMO, depending on when the next point release is. But of
course I leave that to your discretion.

Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAl0kvM5fFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYCBBAAtGQESBo2Rn8LHZhtvdcI/ExD8zPWasY0slIeJCLSkThr7L658f6JRkW5
4s2gJYUPIx5nBmOIzHxFZ6hRZc0r7hmRPuTtr9djQlw4DKPEYMKaNjvYtpIpd8B8
wRETgpGkmrqwfiUMuWEvmC/n6+5Isluuk9W771hcXhKxMh0elYZRL68D6WLFtA7H
fMfuhJZEOmSs5RjnwN/+S9v8aFoPvH+DHG9OGyyblYLpEL0XX/cs2V2J9LfLV6qA
WafpO4Dqihq8n11nhTPGylaL5fUKGuE8GosFespm9NxMe/WyQAb36+6HcvJRuUOK
kiMsSNkXjA8gFB2H+n5ifNqN402wYGx3f/NJ7mi8fXzbfD9fR5mBaxdKuIhx8COI
7QtfiWv0FE90ooIpluNLeOkN7v1tGSPgrbfu2ovxLGeNVLWeXUD2P5shnPO9QRyy
biIujH6/GBzVciNNRNsAWaJuC1fvNhxX3w6z8zuWKJDaZK0zC7N9xvLaxBCLdpQx
k+wHXoSEDeNFcshEKl5/QY4xTV+qFHTISFkqMrr2wit8kwngMRiB1nIoQw8THiEL
2zOuxiuh3IWHR/7y6SviNIIoJxRyWPFO0BXuVuzrpxa56vBp5k6GkI2Jkg/LsKuq
3Yw7tMrNa0qDvgWy5SQaCCY87z8kndxsHLvtZTYCwtoMbl76s64=
=SuRo
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.23/debian/changelog 
libdatetime-timezone-perl-2.23/debian/changelog
--- libdatetime-timezone-perl-2.23/debian/changelog 2019-03-26 
18:05:11.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/changelog 2019-07-09 
17:51:51.0 +0200
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.23-1+2019b) buster; urgency=medium
+
+  * Update to Olson database version 2019b.
+This update contains contemporary changes for Brazil and Palestine.
+
+ -- gregor herrmann   Tue, 09 Jul 2019 17:51:51 +0200
+
 libdatetime-timezone-perl (1:2.23-1+2019a) unstable; urgency=medium
 
   * Update to Olson database version 2019a.
diff -Nru libdatetime-timezone-perl-2.23/debian/patches/olson-2019b 
libdatetime-timezone-perl-2.23/debian/patches/olson-2019b
--- libdatetime-timezone-perl-2.23/debian/patches/olson-2019b   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/patches/olson-2019b   2019-07-09 
17:51:51.0 +0200
@@ -0,0 +1,13401 @@
+Description: Update to Olson DB 2019b
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2019-07-07
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2019a
++# Generated from debian/tzdata/africa.  Olson data version 2019b
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2019a'}
++sub olson_version {'2019b'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/America/Sao_Paulo.pm
 b/lib/DateTime/TimeZone/America/Sao_Paulo.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/southamerica.  Olson data version 2019a
++# Generated from debian/tzdata/southamerica.  Olson data version 2019b
+ #
+ # Do not edit this file directly.
+ #
+@@ -853,451 +853,25 @@
+ ],
+ [
+ 63686052000, #utc_start 2019-02-17 02:00:00 (Sun)
+-63708433200, #  utc_end 2019-11-03 03:00:00 (Sun)
++DateTime::TimeZone::INFINITY, #  utc_end
+ 63686041200, #  local_start 2019-02-16 23:00:00 (Sat)
+-63708422400, #local_end 2019-11-03 00:00:00 (Sun)
+--10800,
+-0,
+-'-03',
+-],
+-[
+-63708433200, #utc_start 2019-11-03 03:00:00 (Sun)
+-63717501600, #  utc_end 2020-02-16 02:00:00 (Sun)
+-63708426000, #  local_start 2019-11-03 01:00:00 (Sun)
+-63717494400, #local_end 2020-02-16 00:00:00 (Sun)
+--7200,
+-1,
+-'-02',
+-],
+-[
+-63717501600, #utc_start 2020-02-16 02:00:00 (Sun)
+-63739882800, #  utc_end 2020-11-01 03:00:00 (Sun)
+-63717490800, #  local_start 2020-02-15 23:00:00 (Sat)
+-63739872000, #local_end 2020-11-01 00:00:00 (Sun)
+--10800,
+-0,
+-'-03',
+-],
+-[
+-63739882800, #utc_start 2020-11-01 03:00:00 (Sun)
+-63749556000, #  utc_end 2021-02-21 02:00:00 (Sun)
+-63739875600, #  local_start 2020-11-01 01:00:00 (Sun)
+-63749548800, #local_end 2021-02-21 00:00:00 (Sun)
+--7200,
+-1,
+-'-02',
+-],
+-[
+-63749556000, #utc_start 2021-02-21 02:00:00 (Sun)
+-63771937200

Bug#931723: stretch-pu: package libdatetime-timezone-perl/1:2.09-1+2019b

2019-07-09 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.09-1+2019b to stretch,
incorporating the Olson db 2019b release, as usual as a quilt patch
which only touches the Perl modules with the timezone information.

Manually stripped down debdiff attached.

Relevant changes this time are:
- - Palestine: the change in March 2019 was fixed (off-by-one day)
- - Brazil will stay in standard time, i.e. the switch to DST in Autumn
  2019 is cancelled.

As there is no urgency this doesn't necessarily have to go through
- -updates IMO, depending on when the next point release is. But of
course I leave that to your discretion.

Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAl0kvMxfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYQdxAAwk0dp+2pxA6xs2QUZvOR+pQtE/RFIzhiOTnK1OKzQza5E1efNe0vlAnC
CkI/uN8crMIocipTmXlwgqO1OBCfeBvGhOL9DrkT2XEu3IE4bEQYUCcHul4b+raw
H2hebUgE63JeQ7NxtxIKSG7+ACKi4eu2Jjp/0ua+PlEnzxhnc7VfdyfZ2eqz+MZs
T/X7wsaGeVB7CZTjYWPUfMk9xg0Ds1I3GWI+/YLbhs0U7LT4DvKMqeJi4LC3m5oL
e1PrhWx7e49arBrrXMp5KyQRB5LJlqSHTMiGYsl/WAQT9IxwXv3F+hn8e1ygVnZ+
BnhfRnP1NDr+51QZ5gCN3gvz+O3i3yXBTho53lzbHmt1omiIoGz+oFStf/KQcwWh
YXg6pQDV98l97v6eTVVE1X9w/JQoFYWiV9WiserJ8sKW/v7X0GklAfix574URASI
dIga3EiibiN509CYd/2iiNJR5Gu2z1DucT2JQQT8iPL3JqfQzvpH0wVKE7OHmBxC
ZELD9XmF9mw59dBEFAKNuTjRHNd9HbeSDqJpI5piw7q2VMpmQpRlvb80kW34TuiH
Gd23LL39M4SDCrnJ+OqgtSfEP8NydiSKXUYJ+lqi0PINiyt7OypuYcmuzOCWIh6K
5IL9xVS6/tGZBL8DPqM2J8/E3rZANThL1wI+XK5pEb4nSg+pwR0=
=tQqK
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.09/debian/changelog 
libdatetime-timezone-perl-2.09/debian/changelog
--- libdatetime-timezone-perl-2.09/debian/changelog 2019-03-26 
18:22:03.0 +0100
+++ libdatetime-timezone-perl-2.09/debian/changelog 2019-07-09 
17:45:44.0 +0200
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.09-1+2019b) stretch; urgency=medium
+
+  * Update to Olson database version 2019b.
+This update contains contemporary changes for Brazil and Palestine.
+
+ -- gregor herrmann   Tue, 09 Jul 2019 17:45:44 +0200
+
 libdatetime-timezone-perl (1:2.09-1+2019a) stretch; urgency=medium
 
   * Update to Olson database version 2019a.
diff -Nru libdatetime-timezone-perl-2.09/debian/patches/olson-2019b 
libdatetime-timezone-perl-2.09/debian/patches/olson-2019b
--- libdatetime-timezone-perl-2.09/debian/patches/olson-2019b   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.09/debian/patches/olson-2019b   2019-07-09 
17:45:44.0 +0200
@@ -0,0 +1,13505 @@
+Description: Update to Olson DB 2019b
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2019-07-07
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2019a
++# Generated from debian/tzdata/africa.  Olson data version 2019b
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2019a'}
++sub olson_version {'2019b'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/America/Sao_Paulo.pm
 b/lib/DateTime/TimeZone/America/Sao_Paulo.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/southamerica.  Olson data version 2019a
++# Generated from debian/tzdata/southamerica.  Olson data version 2019b
+ #
+ # Do not edit this file directly.
+ #
+@@ -853,451 +853,25 @@
+ ],
+ [
+ 63686052000, #utc_start 2019-02-17 02:00:00 (Sun)
+-63708433200, #  utc_end 2019-11-03 03:00:00 (Sun)
++DateTime::TimeZone::INFINITY, #  utc_end
+ 63686041200, #  local_start 2019-02-16 23:00:00 (Sat)
+-63708422400, #local_end 2019-11-03 00:00:00 (Sun)
+--10800,
+-0,
+-'-03',
+-],
+-[
+-63708433200, #utc_start 2019-11-03 03:00:00 (Sun)
+-63717501600, #  utc_end 2020-02-16 02:00:00 (Sun)
+-63708426000, #  local_start 2019-11-03 01:00:00 (Sun)
+-63717494400, #local_end 2020-02-16 00:00:00 (Sun)
+--7200,
+-1,
+-'-02',
+-],
+-[
+-63717501600, #utc_start 2020-02-16 02:00:00 (Sun)
+-63739882800, #  utc_end 2020-11-01 03:00:00 (Sun)
+-63717490800, #  local_start 2020-02-15 23:00:00 (Sat)
+-63739872000, #local_end 2020-11-01 00:00:00 (Sun)
+--10800,
+-0,
+-'-03',
+-],
+-[
+-63739882800, #utc_start 2020-11-01 03:00:00 (Sun)
+-63749556000, #  utc_end 2021-02-21 02:00:00 (Sun)
+-63739875600, #  local_start 2020-11-01 01:00:00 (Sun)
+-63749548800, #local_end 2021-02-21 00:00:00 (Sun)
+--7200,
+-1,
+-'-02',
+-],
+-[
+-63749556000, #utc_start 2021-02-21 02:00:00 (Sun)
+-63771937200

Bug#929342: Bug#930393: RFS: aqemu/0.9.2-2.3 [NMU] [RC] -- Fix #927126 including suggestion from #929342 - aqemu: after updating can't open VMs

2019-06-14 Thread gregor herrmann
On Tue, 11 Jun 2019 22:25:06 +0200, Alexis Murzeau wrote:

> I am looking for a sponsor for a NMU of "aqemu" to fix this RC bug:
> #927126  - aqemu: after updating can't open VMs [0].
> This bug was fixed in previous NMU aqemu/0.9.2-2.2 bug after discussion
> with release team in #929342 [1], I modified the fix before being able
> to migrate to buster.
> 
> This NMU remove references to VLANs in the description texts.

Uploaded. Thanks for your work.
 

Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at -- Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member VIBE!AT & SPI Inc. -- Supporter Free Software Foundation Europe
   `-   NP: Neil Young: When You Dance You Can Really


signature.asc
Description: Digital Signature


Bug#927067: stretch-pu: package perlbrew/0.78-1+deb9u1

2019-04-14 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded a new version of perlbrew to s-p-u, which fixes #927065
for the verion in stable.

The upstream patch changes a regexp to allow both HTTP and HTTPS for
CPAN URLs and is necessary to find tarballs on the CPAN sites which
change to use HTTPS:

- -if m|http://www.cpan.org/src/.+?;>(.+?)|;
+if m|(.+?)|;


Full debdiff attached.


Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlyzTqRfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgaztQ/7B1CpQosGYqpjPF98cl4coL4HrN6eIfUQgO6QfmLIhKGxOOTZhfo6cYuV
HTQdKCHKcG1Q8JLWykmJAy1bbqTkeRj44GMdiWh7D4eTNRQX2ntmMYv+oOSOsByD
KJQKkwysKg2dV9+Ma0C6fCsfQjfPTqnTeXWFoVIeHIGzKvD7smvoMBiC+7NwwtUp
OopgbuqsiLElUhIapb6YnK5mP6zxkZ4K0BXMpBQuzaJDeHDrsQNdy/s7Zqr+FisZ
nbfwalSh+b4lXK51x5dvj8gajAJObN9NtA77dVcpcoj82OCtTKfrVvZmJipPb+V5
TWAzk7v0fbAtwc29KO6plGrF1yHFzKWU9AMtjPd88CgmZV0U97buN3tvE2+/5G/1
I8YnNlX789USCma0z5pifxTvqcoTorOIcd18SFX1VgIl313Dxn7kBd2b+rj3DDNZ
GrBZLCjBzVkRecSNBexHQGjmiUMCHa7YadysZu7xdR9gV9fMq/UQ5isrwryzog+t
zEeTDMLmal6GpORUAmCsiqb40z4619BOVzKLY5nQy3QB7LOdGcc2I0o/wNfL7/Ej
Lc/GOAMf2qKa2O3ZjA3nWhTCqjhc8sSFCQ5w3fDm476RoBCjpF12HoUa+9l9aaVf
KhsnVjzexgm3oafs+G2/ZulyaCDFJmXpssQCKYtaDzS48O4MUmY=
=Pfui
-END PGP SIGNATURE-
diff -Nru perlbrew-0.78/debian/changelog perlbrew-0.78/debian/changelog
--- perlbrew-0.78/debian/changelog  2016-11-21 19:22:46.0 +0100
+++ perlbrew-0.78/debian/changelog  2019-04-14 17:06:14.0 +0200
@@ -1,3 +1,12 @@
+perlbrew (0.78-1+deb9u1) stretch; urgency=medium
+
+  * Backport upstream fix for CPAN URLs.
+CPAN URLs have changed to use HTTPS, which makes perlbrew fail to detect
+perl tarballs. This patch changes the regexp to allow both HTTP and HTTPS.
+(Closes: #927065)
+
+ -- gregor herrmann   Sun, 14 Apr 2019 17:06:14 +0200
+
 perlbrew (0.78-1) unstable; urgency=medium
 
   * Team upload.
diff -Nru 
perlbrew-0.78/debian/patches/0001-Allow-https-URLs-to-be-returned-by-CPAN.patch 
perlbrew-0.78/debian/patches/0001-Allow-https-URLs-to-be-returned-by-CPAN.patch
--- 
perlbrew-0.78/debian/patches/0001-Allow-https-URLs-to-be-returned-by-CPAN.patch 
1970-01-01 01:00:00.0 +0100
+++ 
perlbrew-0.78/debian/patches/0001-Allow-https-URLs-to-be-returned-by-CPAN.patch 
2019-04-14 17:06:14.0 +0200
@@ -0,0 +1,36 @@
+From 0983d7abacbe17180b58e4a37b2332fec86affac Mon Sep 17 00:00:00 2001
+From: Joelle Maslak 
+Date: Tue, 19 Jun 2018 11:48:10 -0600
+Subject: [PATCH] Allow https URLs to be returned by CPAN
+Bug: https://github.com/gugod/App-perlbrew/pull/618
+Bug-Debian: https://bugs.debian.org/927065
+Reviewed-by: gregor herrmann 
+Last-Update: 2019-04-14
+
+---
+ lib/App/perlbrew.pm| 2 +-
+ t/03.test_get_available_versions.t | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+--- a/lib/App/perlbrew.pm
 b/lib/App/perlbrew.pm
+@@ -710,7 +710,7 @@
+ }
+ else {
+ push @available_versions, $1
+-if m|http://www.cpan.org/src/.+?;>(.+?)|;
++if m|(.+?)|;
+ }
+ }
+ s/\.tar\.gz// for @available_versions;
+--- a/t/03.test_get_available_versions.t
 b/t/03.test_get_available_versions.t
+@@ -140,7 +140,7 @@
+ 5.13.11
+ Devel
+ 2011-03-20
+-http://www.cpan.org/src/perl-5.13.11.tar.gz;>perl-5.13.11.tar.gz
++https://www.cpan.org/src/perl-5.13.11.tar.gz;>perl-5.13.11.tar.gz
+ 
+ 
+ 
diff -Nru perlbrew-0.78/debian/patches/series 
perlbrew-0.78/debian/patches/series
--- perlbrew-0.78/debian/patches/series 2016-11-21 19:22:46.0 +0100
+++ perlbrew-0.78/debian/patches/series 2019-04-14 17:06:14.0 +0200
@@ -1 +1,2 @@
 autopkgtest-path.patch
+0001-Allow-https-URLs-to-be-returned-by-CPAN.patch


Bug#925548: stretch-pu: package libdatetime-timezone-perl/1:2.09-1+2019a

2019-03-26 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.09-1+2019a to strech. It
contains the Olson timezone database 2019a as perl data files in a
quilt patch.

Changes in 2019a:

Palestine "springs forward" on 2019-03-30 instead of 2019-03-23.
Metlakatla "fell back" to rejoin Alaska Time on 2019-01-20 at 02:00.

Manually condensed debdiff attached.

As the above mentioned changes are already in effect, this might be
material for stable-updates as well.


Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlyaYq9fFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYm9w//a7MOYRqCmtoAn7rcXeWPzJM0e2qIWOhKsnAhwpfiCW735iqMsi+BMC3N
0lrDkiM53ecuFjE3rsabm/bBRz83qzddrzUGjFeXUQCBragOIGy7+CVLJpPsK0k1
QmjnK2lKCxwBdwLiCSCfHRhBNS5C8amtEEJ2A6YY3imeGszHUdvxiXNPJ89lOf+u
eegqhurmh3GRaub3zbtc5kUdYZ/RqZdKB7nuWRANEqr809BrqmPigF4ZHn1SOWvh
hvy5ad32gG59++A42Kc6wDAelf2QzCuVEOecvSk/uN2gjHqXtvuekN322J0NgN/6
5w01f6i9kaQbDUplb59C2OQO8V6tO46TQu+56U2MCsLA81JCPCvHNeAPSNtic73b
pGO8wPEgnWxj09Sgdu3usdC/aVvY9Mls929dZE0sLKCt/+JfWp8UNfm3eTE7hFyN
b+J6A9VAKAyF8sI03hA6HsDZdXlsrLtyonRgBnHsAoKr66Jf1tz3PHO+I3rD+8FQ
t0E+vq1RQgph+mUygCevNUufGsvqFkHUEVc5xE/FuuCywlQBaupvv4D4a0V3MbRy
wYHpYK6hFwfSMovmjIcgddgoTI17motsYP0BlL9HzSn/2xPmt72Bjo24DGl+05Oi
w1m2z1jBVQn6nzsFeCzkQTbO1c9nltqLBGC2/EBfjFG7UupWvCg=
=2Vlu
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.09/debian/changelog 
libdatetime-timezone-perl-2.09/debian/changelog
--- libdatetime-timezone-perl-2.09/debian/changelog 2018-12-31 
16:38:55.0 +0100
+++ libdatetime-timezone-perl-2.09/debian/changelog 2019-03-26 
18:22:03.0 +0100
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.09-1+2019a) stretch; urgency=medium
+
+  * Update to Olson database version 2019a.
+This update contains contemporary changes for Palestine and Metlakatla.
+
+ -- gregor herrmann   Tue, 26 Mar 2019 18:22:03 +0100
+
 libdatetime-timezone-perl (1:2.09-1+2018i) stretch; urgency=medium
 
   * Update to Olson database version 2018i.
diff -Nru libdatetime-timezone-perl-2.09/debian/patches/olson-2019a 
libdatetime-timezone-perl-2.09/debian/patches/olson-2019a
--- libdatetime-timezone-perl-2.09/debian/patches/olson-2019a   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.09/debian/patches/olson-2019a   2019-03-26 
18:22:03.0 +0100
@@ -0,0 +1,14677 @@
+Description: Update to Olson DB 2019a
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2019-03-26
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2018i
++# Generated from debian/tzdata/africa.  Olson data version 2019a
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,11 +43,11 @@
+ ],
+ ];
+ 
+-sub olson_version {'2018i'}
++sub olson_version {'2019a'}
+ 
+ sub has_dst_changes {0}
+ 
+-sub _max_year {2028}
++sub _max_year {2029}
+ 
+ sub _new_instance {
+ return shift->_init( @_, spans => $spans );
+--- a/lib/DateTime/TimeZone/Asia/Gaza.pm
 b/lib/DateTime/TimeZone/Asia/Gaza.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/asia.  Olson data version 2018i
++# Generated from debian/tzdata/asia.  Olson data version 2019a
+ #
+ # Do not edit this file directly.
+ #
+@@ -367,8 +367,44 @@
+ ],
+ [
+ 62314347600, #utc_start 1975-08-30 21:00:00 (Sat)
+-62617960800, #  utc_end 1985-04-13 22:00:00 (Sat)
++62469698400, #  utc_end 1980-08-01 22:00:00 (Fri)
+ 62314354800, #  local_start 1975-08-30 23:00:00 (Sat)
++62469705600, #local_end 1980-08-02 00:00:00 (Sat)
++7200,
++0,
++'IST',
++],
++[
++62469698400, #utc_start 1980-08-01 22:00:00 (Fri)
++62473327200, #  utc_end 1980-09-12 22:00:00 (Fri)
++62469709200, #  local_start 1980-08-02 01:00:00 (Sat)
++62473338000, #local_end 1980-09-13 01:00:00 (Sat)
++10800,
++1,
++'IDT',
++],
++[
++62473327200, #utc_start 1980-09-12 22:00:00 (Fri)
++62588239200, #  utc_end 1984-05-04 22:00:00 (Fri)
++62473334400, #  local_start 1980-09-13 00:00:00 (Sat)
++62588246400, #local_end 1984-05-05 00:00:00 (Sat)
++7200,
++0,
++'IST',
++],
++[
++62588239200, #utc_start 1984-05-04 22:00:00 (Fri)
++62597916000, #  utc_end 1984-08-24 22:00:00 (Fri)
++6258825, #  local_start 1984-05-05 01:00:00 (Sat)
++62597926800, #local_end 1984-08-25 01:00:00 (Sat)
++10800,
++1,
++'IDT',
++],
++[
++62597916000, #utc_start 1984-08-24 22:00:00 (Fri)
++62617960800, #  utc_end 1985-04-13 22

Bug#925549: unblock: libdatetime-timezone-perl/1:2.23-1+2019a

2019-03-26 Thread gregor herrmann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.23-1+2019a to sid. It
contains the Olson timezone database 2019a as perl data files in a
quilt patch.

Changes in 2019a:

Palestine "springs forward" on 2019-03-30 instead of 2019-03-23.
Metlakatla "fell back" to rejoin Alaska Time on 2019-01-20 at 02:00.

Manually condensed debdiff attached.

As the above mentioned changes are already in effect, this might
warrant some aging as well.


unblock libdatetime-timezone-perl/1:2.23-1+2019a


Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlyaYq1fFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgaZmhAAk5W8oNoQBpF7sVwrSip9VaNM87/eCMGsw5FfRfcvAHJTuKwK30d678eP
q5q2cbDvl6q7k6oZhqvDNTSvQxCPyGcnkOHfLpbjeTJoeB3wwyGpvkbt6yhVx3aA
POgoSXoWG1BiuWHAROQyUjqn+Usp/2tzNp60k0u9JYpGbe1K6FqUthEVNYLQ371j
vWlh3/ZFkZMu/kSASRrKGUe0Gf14YzX1JTUwGKq88PGb0foYd4rjY1I40CyYSlsb
GRFQVi/TfjDFrDRcwoPxz/mMp44bRen2P4tzP9WjTHvsr7cFLPG/RT7u05GnlIRi
+sp0D4+SF0aw/unbaEHGpRJ35DhrohsX2qMvXahG2bx1zW2ulLE328Sj3VL5gUab
Uq2XShvM80WyO2X9eJsOCc64sql1ffddah7BiZhEAe4aGJjpQvXKeYTAWQepDPAw
2NW3pPmmWdbvd6ObwNgTmI5WVyoViQkfQnYoG+g8NB+JTAHfgTucqM1sL8yRcVA1
2i+du4h3Fft/DxggWmJtWoH/MHzGZiGoEmr0pvTGsahw8ZefSkmkyc21ZI230686
sF2jHOH26CDUTLkQVpKhEX/KYZl3C4NtfRCIlVolk4WTiU1R5qRmaD00qCLeiwNl
upLadfiWRXdMAxm7kiFFhFFaG+8JSsk11HBxt44WNtl6TdHMdWQ=
=PMRt
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.23/debian/changelog 
libdatetime-timezone-perl-2.23/debian/changelog
--- libdatetime-timezone-perl-2.23/debian/changelog 2018-12-31 
16:21:58.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/changelog 2019-03-26 
18:05:11.0 +0100
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.23-1+2019a) unstable; urgency=medium
+
+  * Update to Olson database version 2019a.
+This update contains contemporary changes for Palestine and Metlakatla.
+
+ -- gregor herrmann   Tue, 26 Mar 2019 18:05:11 +0100
+
 libdatetime-timezone-perl (1:2.23-1+2018i) unstable; urgency=high
 
   * Import upstream version 2.23.
diff -Nru libdatetime-timezone-perl-2.23/debian/patches/olson-2019a 
libdatetime-timezone-perl-2.23/debian/patches/olson-2019a
--- libdatetime-timezone-perl-2.23/debian/patches/olson-2019a   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.23/debian/patches/olson-2019a   2019-03-26 
18:05:11.0 +0100
@@ -0,0 +1,14273 @@
+Description: Update to Olson DB 2019a
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2019-03-26
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from /tmp/L68fv1TlrY/africa.  Olson data version 2018i
++# Generated from debian/tzdata/africa.  Olson data version 2019a
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,11 +43,11 @@
+ ],
+ ];
+ 
+-sub olson_version {'2018i'}
++sub olson_version {'2019a'}
+ 
+ sub has_dst_changes {0}
+ 
+-sub _max_year {2028}
++sub _max_year {2029}
+ 
+ sub _new_instance {
+ return shift->_init( @_, spans => $spans );
+--- a/lib/DateTime/TimeZone/Asia/Gaza.pm
 b/lib/DateTime/TimeZone/Asia/Gaza.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from /tmp/L68fv1TlrY/asia.  Olson data version 2018i
++# Generated from debian/tzdata/asia.  Olson data version 2019a
+ #
+ # Do not edit this file directly.
+ #
+@@ -367,8 +367,44 @@
+ ],
+ [
+ 62314347600, #utc_start 1975-08-30 21:00:00 (Sat)
+-62617960800, #  utc_end 1985-04-13 22:00:00 (Sat)
++62469698400, #  utc_end 1980-08-01 22:00:00 (Fri)
+ 62314354800, #  local_start 1975-08-30 23:00:00 (Sat)
++62469705600, #local_end 1980-08-02 00:00:00 (Sat)
++7200,
++0,
++'IST',
++],
++[
++62469698400, #utc_start 1980-08-01 22:00:00 (Fri)
++62473327200, #  utc_end 1980-09-12 22:00:00 (Fri)
++62469709200, #  local_start 1980-08-02 01:00:00 (Sat)
++62473338000, #local_end 1980-09-13 01:00:00 (Sat)
++10800,
++1,
++'IDT',
++],
++[
++62473327200, #utc_start 1980-09-12 22:00:00 (Fri)
++62588239200, #  utc_end 1984-05-04 22:00:00 (Fri)
++62473334400, #  local_start 1980-09-13 00:00:00 (Sat)
++62588246400, #local_end 1984-05-05 00:00:00 (Sat)
++7200,
++0,
++'IST',
++],
++[
++62588239200, #utc_start 1984-05-04 22:00:00 (Fri)
++62597916000, #  utc_end 1984-08-24 22:00:00 (Fri)
++6258825, #  local_start 1984-05-05 01:00:00 (Sat)
++62597926800, #local_end 1984-08-25 01:00:00 (Sat)
++10800,
++1,
++'IDT',
++],
++[
++62597916000, #utc_start 1984-08-24 22:00:00 (Fri)
++62617960800, #  utc_en

Bug#917911: stretch-pu: package libdatetime-timezone-perl/1:2.09-1+2018i

2018-12-31 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.09-1+2018i to s-p-u. It
includes yesterday's Olson DB release 2018i as a quilt patch, which
has the following change:

São Tomé and Príncipe switches from +01 to +00 on 2019-01-01.

I'm attaching a stripped down debdiff.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlwqOexfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgbluA/+MvbKGkKbTmd60KT2cAGF4ZO+Gm/c/wTvZUcQspCFHleLIoapHbJcnohq
3sGE5YXk63cDnAQIGwAsrbT0ijN2rOv8OcZsEsbpp/3SK4X3AUxkd8eufkY4fe9e
nnilU5J1z1Dow4M9jHduU/P+YKdU8/5DcscNJmsR/8jJ85hYCADqT9wUKLgSog2b
qMDOd0ky0b5Sq0hwicrO2xpBeoECQqEdHiInfuJHdY/O3FI3xwisOZbEot/r+cxt
ZrVLnhdJIVxw5KQ0HD8DMWZzD3O0oak8C5eVJzk6qMv81hkV168P8vWTfvEKOTc1
KWOXgRVZ9Ylk0oocVO58IuEnRErMck77w+H1K8lCR2EGhtS1KHYyQWoRaSLNcdKp
54/B+ioYHKPtGhFsMC2eFh4VnY2T9KMjetuFkGaJMXWxE2k7hVQRqejOpK1TwnpH
qW0Dob7r87XAEX0srqvlm028tO7sPyLO2Xr9OvjWS3jOkLKXY6jP/tyOLGQN4fMc
hF8oJ6okMS1HeRTuKxDsaTs0uwyDbd/wSHTyUpiXJXGhUOvrGHptUitFEtyL3pPm
sCmft60HiuNW2saiWG+K+ITX+ipp3ZsChG0iPUa1lFh7/XPd3sFg21iiRXpNnjX/
L1V6bvq2GfAsArMb9V3Y0uOjWGn2LXd+yozmiafIeQMhGyAKNSo=
=wu+T
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.09/debian/changelog 
libdatetime-timezone-perl-2.09/debian/changelog
--- libdatetime-timezone-perl-2.09/debian/changelog 2018-12-30 
17:40:45.0 +0100
+++ libdatetime-timezone-perl-2.09/debian/changelog 2018-12-31 
16:38:55.0 +0100
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.09-1+2018i) stretch; urgency=medium
+
+  * Update to Olson database version 2018i.
+This update contains contemporary changes for São Tomé and Príncipe.
+
+ -- gregor herrmann   Mon, 31 Dec 2018 16:38:55 +0100
+
 libdatetime-timezone-perl (1:2.09-1+2018h) stretch; urgency=medium
 
   * Update to Olson database version 2018h.
diff -Nru libdatetime-timezone-perl-2.09/debian/patches/olson-2018i 
libdatetime-timezone-perl-2.09/debian/patches/olson-2018i
--- libdatetime-timezone-perl-2.09/debian/patches/olson-2018i   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.09/debian/patches/olson-2018i   2018-12-31 
16:38:55.0 +0100
@@ -0,0 +1,9712 @@
+Description: update to olson db 2018i
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2018-12-31
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2018h
++# Generated from debian/tzdata/africa.  Olson data version 2018i
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2018h'}
++sub olson_version {'2018i'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Africa/Sao_Tome.pm
 b/lib/DateTime/TimeZone/Africa/Sao_Tome.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2018h
++# Generated from debian/tzdata/africa.  Olson data version 2018i
+ #
+ # Do not edit this file directly.
+ #
+@@ -52,16 +52,25 @@
+ ],
+ [
+ 63650451600, #utc_start 2018-01-01 01:00:00 (Mon)
+-DateTime::TimeZone::INFINITY, #  utc_end
++63681987600, #  utc_end 2019-01-01 01:00:00 (Tue)
+ 63650455200, #  local_start 2018-01-01 02:00:00 (Mon)
+-DateTime::TimeZone::INFINITY, #local_end
++63681991200, #local_end 2019-01-01 02:00:00 (Tue)
+ 3600,
+ 0,
+ 'WAT',
+ ],
++[
++63681987600, #utc_start 2019-01-01 01:00:00 (Tue)
++DateTime::TimeZone::INFINITY, #  utc_end
++63681987600, #  local_start 2019-01-01 01:00:00 (Tue)
++DateTime::TimeZone::INFINITY, #local_end
++0,
++0,
++'GMT',
++],
+ ];
+ 
+-sub olson_version {'2018h'}
++sub olson_version {'2018i'}
+ 
+ sub has_dst_changes {0}
+ 
diff -Nru libdatetime-timezone-perl-2.09/debian/patches/series 
libdatetime-timezone-perl-2.09/debian/patches/series
--- libdatetime-timezone-perl-2.09/debian/patches/series2018-12-30 
17:40:45.0 +0100
+++ libdatetime-timezone-perl-2.09/debian/patches/series2018-12-31 
16:38:55.0 +0100
@@ -7,3 +7,4 @@
 olson-2018f
 olson-2018g
 olson-2018h
+olson-2018i


Bug#917820: stretch-pu: package libdatetime-timezone-perl/1:2.09-1+2018h

2018-12-30 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl 1:2.09-1+2018h to spu; it
includes the data from tzdata 2018h as a quilt patch.

>From the tzdata upstream announcement:
Qyzylorda, Kazakhstan moved from +06 to +05 on 2018-12-21.
New zone Asia/Qostanay because Qostanay, Kazakhstan didn't move.
Metlakatla, Alaska observes PST this winter only.
Guess Morocco will continue to adjust clocks around Ramadan.
Add predictions for Iran from 2038 through 2090.


Attached is a manually stripped down debdiff.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlwpA8RfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYJrBAArYEwy2cynHuXAblkOpnKg4W/iL3NwnpA7pXh86L68xUXETwTRTLJjSG+
vdPEAYn7U8JsczDAvpXNjzfPsow9nw5sjj7kORB55MyHjvXxoSm000JCNNc8kAXH
gs5Dy+H6i+6lI+HsBdvPE8+igLc6M9oJ28mJaYd/5YDGe8KwBXcwwpXbxldU0f/c
SWa9SjaKR4Ntefpbj5D65dbcqCWlw884L/jTG9ALS+0/0m3H71RWsa1kkPYK77rm
QFLkAlhUODNiSnlP/n0sJW5itE1DL2+DuM6qK0SmgLROE2Pf88UMij+DQTjxz6PV
NIjFbrn058PG3Csww+dAahAzCINLYuMELUvQzbjfRT5QYJ2dcNO5qTsyow4cKYLB
KOA3KnbTLgyKiRh7Ip+x7ucgIZtwYb/HdSdKOGHiYuoUtEpP2xur8JotrxvVtvtz
tautawEIXtxDPJuw423xoWEXzh/lG2QlC8dI92tw0iXB4IpHHVXQSTQSCuSFsV6v
qmxrTT5wvxLCaqkz+dYLE15EfyoIZvfhRfu8hogTKapUXSXuJou0MdcW9YnmAqwR
pnn/aFCxWbXPKfIiz4QPGkxlFwgEOy6UO4zvP+CXl5wPoZg91P0j9k5SdhTxal8e
Lo06EelaVQIpZvzumisQyr9FKn8/e87Y9g381MStqgOa8kVyGcE=
=kN6R
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.09/debian/changelog 
libdatetime-timezone-perl-2.09/debian/changelog
--- libdatetime-timezone-perl-2.09/debian/changelog 2018-10-27 
15:44:52.0 +0200
+++ libdatetime-timezone-perl-2.09/debian/changelog 2018-12-30 
17:40:45.0 +0100
@@ -1,3 +1,11 @@
+libdatetime-timezone-perl (1:2.09-1+2018h) stretch; urgency=medium
+
+  * Update to Olson database version 2018h.
+This update contains contemporary changes for Kazakhstan, Alaska, Morocco,
+and Iran.
+
+ -- gregor herrmann   Sun, 30 Dec 2018 17:40:45 +0100
+
 libdatetime-timezone-perl (1:2.09-1+2018g) stretch; urgency=medium
 
   * Update to Olson database version 2018g.
diff -Nru libdatetime-timezone-perl-2.09/debian/patches/olson-2018h 
libdatetime-timezone-perl-2.09/debian/patches/olson-2018h
--- libdatetime-timezone-perl-2.09/debian/patches/olson-2018h   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.09/debian/patches/olson-2018h   2018-12-30 
17:40:45.0 +0100
@@ -0,0 +1,12710 @@
+Description: update to olson db 2018h
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2018-12-30
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2018g
++# Generated from debian/tzdata/africa.  Olson data version 2018h
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2018g'}
++sub olson_version {'2018h'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Asia/Qyzylorda.pm
 b/lib/DateTime/TimeZone/Asia/Qyzylorda.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/asia.  Olson data version 2018g
++# Generated from debian/tzdata/asia.  Olson data version 2018h
+ #
+ # Do not edit this file directly.
+ #
+@@ -484,16 +484,25 @@
+ ],
+ [
+ 63234853200, #utc_start 2004-10-30 21:00:00 (Sat)
+-DateTime::TimeZone::INFINITY, #  utc_end
++63681012000, #  utc_end 2018-12-20 18:00:00 (Thu)
+ 63234874800, #  local_start 2004-10-31 03:00:00 (Sun)
+-DateTime::TimeZone::INFINITY, #local_end
++63681033600, #local_end 2018-12-21 00:00:00 (Fri)
+ 21600,
+ 0,
+ '+06',
+ ],
++[
++63681012000, #utc_start 2018-12-20 18:00:00 (Thu)
++DateTime::TimeZone::INFINITY, #  utc_end
++6368103, #  local_start 2018-12-20 23:00:00 (Thu)
++DateTime::TimeZone::INFINITY, #local_end
++18000,
++0,
++'+05',
++],
+ ];
+ 
+-sub olson_version {'2018g'}
++sub olson_version {'2018h'}
+ 
+ sub has_dst_changes {24}
+ 
diff -Nru libdatetime-timezone-perl-2.09/debian/patches/series 
libdatetime-timezone-perl-2.09/debian/patches/series
--- libdatetime-timezone-perl-2.09/debian/patches/series2018-10-27 
15:44:52.0 +0200
+++ libdatetime-timezone-perl-2.09/debian/patches/series2018-12-30 
17:40:45.0 +0100
@@ -6,3 +6,4 @@
 olson-2018e
 olson-2018f
 olson-2018g
+olson-2018h


Bug#913286: nmu: libre-engine-re2-perl_0.13-2

2018-11-08 Thread gregor herrmann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: binnmu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

nmu libre-engine-re2-perl_0.13-2 . i386 arm64 armel mips ppc64el s390x . 
unstable . -m "Rebuild against perl 5.28."

Cf. #913278.
Looks like the package was uploaded during the perl 5.26 → 5.28
transition and hit some updated and some outdated mirrors.

I guess --extra-depends 'perl-base (>= 5.28)' shouldn't be needed
anymore at that point?

Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlvk0QxfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYUZxAAghri7s7s88e6VrO4W2YhN86wFPyLx6k0rkZbse5DY64v0TjxuDWTtzLv
Hi8WSKEtprUgwxlbPKOc4IQE1+leoCPydL1Zfr0faTOTw5riR998tAJYhs2oKnS6
j8XLhpcJPAq59tnWa1bVTDGk+G8SihUdOi1xZJNj/mp6WCWMs1ZV8tCT2YDT5vDn
WrqlAEsTsEEsGHnQyvjn7UIlI69oPBaLUvlz/N1ZlLli1+QLo6d9JdHNgR8W1gEh
82sHAJVffoy2YVP4GeeQ7NIq1Lhbk+bjXMQSmrbyZyRx7X4a8CTzHz0tuDYbGmbj
5lc6zmWmcJjIZXaJnno6dR2rW778Ug79/lu+H+Hs36y3GFxlMlMR1W6PI0eshyMC
9s4cIKkrvV6roGlQUccjTOgZWx6L4IFdKbbktySftFyT04MUbJt0/Q0nawgO6Pgb
f+hX0sV6pl+DnOmcZasqvcCVBWl+O9pnvP4PHFDjlBVU1e1KRN3eXyHl5ZFQwvI0
5BFxVSDmZLLASGyS2FRENyyCy38eLUfFGwT81+R35YMYe8Drt6iEd0XkLGJKdNYk
Z2Dl9BIyab+ypq0cYymOn6PKHwnKcKJXTezPh3Ni72RrnNaddSIn95iPSOrhTyFt
PZ0ULpBIwDajRoWNjiBRhcg3ao135HHzCFzKI6PVqpb6HP+tw8w=
=GrAI
-END PGP SIGNATURE-


Bug#912032: stretch-pu: package libdatetime-timezone-perl/1:2.09-1+2018g

2018-10-27 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.09-1+2018g.
It contains the data from the 2018g release of the Olson database as
a quilt patch against the perl data files. - Manually stripped down
debdiff attached.

2018g contains a change for Morocco which decided yesterday that they
are staying in UTC+1 instead of switching back one hour in the night
from today to tomorrow … If possible, please consider accepting the
package into stable-updates.

Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlvUbjVfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgaiJRAAifqA+1Jncok4ItsLhXsfpn1ZRiLfskRyEDqbabOQelsSKOqTcErWOtRY
E+bIz+Ftv4ql4sbgS5Z9xllDHJgyCjFi+ikF3KlHi8HmXiGyNZRFX1r1gKIOV7Zb
fBHlHwjK9CHwoNyP5oX00e5x+jsQO4R1ON72oytfyv/5TdCczHQKbGDlKgu0KfVg
OqWEMpgHztfIRdr8gJvtgexG/jwEGuPy1dwJB/ZrWZ52voOaS9gyl1WaX2KQr94p
AbdzZyGYS3UK8S6sKme/KPtU9mo26sLBzoxXXsHIxDd7LE6yYw7mZWk/xG5ZByH5
oEm0hvcalJXZmCCHlLGsKOg3YpFmM7k5It+CUNTtEavQrq1c+frljSr5qggnSgqp
YW1jlZRbJ+DM5FIcOZ8RDx4UMcgxG2cvNUVOJz07XECLV7TSRUht2beE+/pP8N/m
glmn/t68m1gsf0Cdv5ddgNh61WEat8VzJIjhZADtnURDFQlN4q7s5ZshdCzNFidh
Kn0fmMQHMCfzNACbSTKmu9x0dASCjWHW5n90crXg5374RSAGyqxuC2Bb3tpif+Mq
ghDqDzV/TzTawtHT0hm1Wq1TM9+T8IF2swN1vRRw/onOyfvOVMOkyqBHa5sh5vHH
4wlp112KMmNgVuR28h+qOqhERJ9YGGfSe/e2l9+ovp9GUilvxR0=
=6y8p
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.09/debian/changelog 
libdatetime-timezone-perl-2.09/debian/changelog
--- libdatetime-timezone-perl-2.09/debian/changelog 2018-10-18 
23:52:22.0 +0200
+++ libdatetime-timezone-perl-2.09/debian/changelog 2018-10-27 
15:44:52.0 +0200
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.09-1+2018g) stretch; urgency=medium
+
+  * Update to Olson database version 2018g.
+This update contains contemporary changes for Morocco.
+
+ -- gregor herrmann   Sat, 27 Oct 2018 15:44:52 +0200
+
 libdatetime-timezone-perl (1:2.09-1+2018f) stretch; urgency=medium
 
   * Update to Olson database version 2018f.
diff -Nru libdatetime-timezone-perl-2.09/debian/patches/olson-2018g 
libdatetime-timezone-perl-2.09/debian/patches/olson-2018g
--- libdatetime-timezone-perl-2.09/debian/patches/olson-2018g   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.09/debian/patches/olson-2018g   2018-10-27 
15:44:52.0 +0200
@@ -0,0 +1,11402 @@
+Description: update to olson db 2018g
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2018-10-27
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2018f
++# Generated from debian/tzdata/africa.  Olson data version 2018g
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2018f'}
++sub olson_version {'2018g'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Africa/Casablanca.pm
 b/lib/DateTime/TimeZone/Africa/Casablanca.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2018f
++# Generated from debian/tzdata/africa.  Olson data version 2018g
+ #
+ # Do not edit this file directly.
+ #
+@@ -39,7 +39,7 @@
+ 61179321600, #local_end 1939-09-12 00:00:00 (Tue)
+ 0,
+ 0,
+-'WET',
++'+00',
+ ],
+ [
+ 61179321600, #utc_start 1939-09-12 00:00:00 (Tue)
+@@ -48,7 +48,7 @@
+ 61185196800, #local_end 1939-11-19 00:00:00 (Sun)
+ 3600,
+ 1,
+-'WEST',
++'+01',
+ ],
+ [
+ 61185193200, #utc_start 1939-11-18 23:00:00 (Sat)
+@@ -57,7 +57,7 @@
+ 61193664000, #local_end 1940-02-25 00:00:00 (Sun)
+ 0,
+ 0,
+-'WET',
++'+00',
+ ],
+ [
+ 61193664000, #utc_start 1940-02-25 00:00:00 (Sun)
+@@ -66,7 +66,7 @@
+ 61374499200, #local_end 1945-11-18 00:00:00 (Sun)
+ 3600,
+ 1,
+-'WEST',
++'+01',
+ ],
+ [
+ 61374495600, #utc_start 1945-11-17 23:00:00 (Sat)
+@@ -75,7 +75,7 @@
+ 61518441600, #local_end 1950-06-11 00:00:00 (Sun)
+ 0,
+ 0,
+-'WET',
++'+00',
+ ],
+ [
+ 61518441600, #utc_start 1950-06-11 00:00:00 (Sun)
+@@ -84,7 +84,7 @@
+ 61530537600, #local_end 1950-10-29 00:00:00 (Sun)
+ 3600,
+ 1,
+-'WEST',
++'+01',
+ ],
+ [
+ 61530534000, #utc_start 1950-10-28 23:00:00 (Sat)
+@@ -93,7 +93,7 @@
+ 62054251200, #local_end 1967-06-03 12:00:00 (Sat)
+ 0,
+ 0,
+-'WET',
++'+00',
+ ],
+ [
+ 62054251200, #utc_start 1967-06-03 12:00:00 (Sat)
+@@ -102,7 +102,7 @@
+ 62064576000, #local_end 1967-10-01 00:00:00 (Sun)
+ 3600,
+ 1,
+-'WEST',
++'+01',
+ ],
+ [
+ 62064572400, #utc_start 1967-09-30 23:00:00 (Sat

Bug#911347: stretch-pu: package libdatetime-timezone-perl/1:2.09-1+2018f

2018-10-18 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded a new version of libdatetime-timezone-perl, versioned
as 1:2.09-1+2018f, to s-p-u. It updates the perl data files to
version 2018f of the Olson timezone database, in a quilt patch.
(Manually trimmed down debdiff attached.)

One of the changes is:
Volgograd moves from +03 to +04 on 2018-10-28.

As this happens in a couple of days, this might be material for
stable-updates before the next point release.

Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlvJAytfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgZdCQ//Z5brb/qR5Yge0//W4r066btM8n+8D92ft4h0wAcIXnjkawVbRSAmwTme
ssdok5bKbtMIfh40akoWsrskUpD9XWFHKtJrj+ExPVercgs6Dg0FL+ByPU/N9C7n
HhZO9HsCqKtmPFK36zxbJ9rfufbvpaPSlxjCjPmBozxLR51g6w63rpZbknzJ3VZU
YzSviSTKa6iQOTnTReYoHo7Be/AzbFtqWdkXPvSTR6OLUVMQ5P4MeV7P3L+47sbV
imPs8uHeB7btzQTTy2Egtoxm7dlrUJF5nOL4HZ8Rub8szp4vBl4XyJbbmJ9VVYII
sVSePXQW2oINl7mvXuLmtFL95bgQotqg4KYtOF3vMrtRwPE85pPZC4WrF4WHmGfq
a0+VbBO3SeVzu3cqQQOX4NXRTvosdLIDRtZDmHOrNYaIWmvbbq+S2CQBt68R46N8
XJBBdxqiU0o97lykxadbwxoixzkR3MQ07iKd01p0qbQoXxeZG8x3u1jQkFtrYyjW
qGtgk8fmXxYAtdFgtLcEZCvHPr7qs2dpceRoJqtUEYL297Unzd4sV4yP3ZDEgIRK
X5mZ2a7lBYi+wY5/Baz4tswa1N3mAijX6NWa4uGXwlh+Ljk24MYsv0d/0FmPHCKx
GTxqP3Du7mAjKGNtmAxCvnrV+RU9wahw1fUVp26l3DvgvsRCMk8=
=GpVt
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.09/debian/changelog 
libdatetime-timezone-perl-2.09/debian/changelog
--- libdatetime-timezone-perl-2.09/debian/changelog 2018-05-04 
18:50:12.0 +0200
+++ libdatetime-timezone-perl-2.09/debian/changelog 2018-10-18 
23:52:22.0 +0200
@@ -1,3 +1,11 @@
+libdatetime-timezone-perl (1:2.09-1+2018f) stretch; urgency=medium
+
+  * Update to Olson database version 2018f.
+This update contains contemporary changes for Russia (Volograd), Fiji, and
+Chile.
+
+ -- gregor herrmann   Thu, 18 Oct 2018 23:52:22 +0200
+
 libdatetime-timezone-perl (1:2.09-1+2018e) stretch; urgency=medium
 
   * Update to Olson database version 2018e.
diff -Nru libdatetime-timezone-perl-2.09/debian/patches/olson-2018f 
libdatetime-timezone-perl-2.09/debian/patches/olson-2018f
--- libdatetime-timezone-perl-2.09/debian/patches/olson-2018f   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.09/debian/patches/olson-2018f   2018-10-18 
23:52:22.0 +0200
@@ -0,0 +1,11600 @@
+Description: update to olson db 2018f
+Origin: vendor
+Author: gregor herrmann 
+Last-Update: 2018-10-18
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2018e
++# Generated from debian/tzdata/africa.  Olson data version 2018f
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2018e'}
++sub olson_version {'2018f'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Europe/Volgograd.pm
 b/lib/DateTime/TimeZone/Europe/Volgograd.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/europe.  Olson data version 2018e
++# Generated from debian/tzdata/europe.  Olson data version 2018f
+ #
+ # Do not edit this file directly.
+ #
+@@ -601,16 +601,25 @@
+ ],
+ [
+ 63549957600, #utc_start 2014-10-25 22:00:00 (Sat)
+-DateTime::TimeZone::INFINITY, #  utc_end
++63676364400, #  utc_end 2018-10-27 23:00:00 (Sat)
+ 63549968400, #  local_start 2014-10-26 01:00:00 (Sun)
+-DateTime::TimeZone::INFINITY, #local_end
++63676375200, #local_end 2018-10-28 02:00:00 (Sun)
+ 10800,
+ 0,
+ '+03',
+ ],
++[
++63676364400, #utc_start 2018-10-27 23:00:00 (Sat)
++DateTime::TimeZone::INFINITY, #  utc_end
++63676378800, #  local_start 2018-10-28 03:00:00 (Sun)
++DateTime::TimeZone::INFINITY, #local_end
++14400,
++0,
++'+04',
++],
+ ];
+ 
+-sub olson_version {'2018e'}
++sub olson_version {'2018f'}
+ 
+ sub has_dst_changes {29}
+ 
diff -Nru libdatetime-timezone-perl-2.09/debian/patches/series 
libdatetime-timezone-perl-2.09/debian/patches/series
--- libdatetime-timezone-perl-2.09/debian/patches/series2018-05-04 
18:50:12.0 +0200
+++ libdatetime-timezone-perl-2.09/debian/patches/series2018-10-18 
23:52:22.0 +0200
@@ -4,3 +4,4 @@
 olson-2018b
 olson-2018d
 olson-2018e
+olson-2018f


Bug#887047: jessie-pu: package dh-make-perl/0.84-2+deb8u1

2018-06-08 Thread gregor herrmann
On Fri, 08 Jun 2018 21:21:35 +0100, Adam D. Barratt wrote:

> On Sat, 2018-01-13 at 02:42 +0100, gregor herrmann wrote:
> > I've prepared an update for dh-make-perl in jessie which fixes
> > #851848.
> 
> Please go ahead; sorry for the long delay.

Thank you. Uploaded.


Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at -- Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member VIBE!AT & SPI Inc. -- Supporter Free Software Foundation Europe
   `-   NP: Police: The Bed's Too Big Without You


signature.asc
Description: Digital Signature


Bug#897912: stretch-pu: package libdatetime-timezone-perl/1:2.09-1+2018e

2018-05-04 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:2.09-1+2018e for
strech(-updates). It contains a new patch which updates the data
files to the Olson db release 2018e, which contains changes for North
Korea effective tomorrow.

Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlrskylfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgZMYQ/9FSCrT+YFEfONUgq4OrkRjiFAkRQgPkeX8H24O9OfrKJhDOACZgNe9Wsn
oMlCDbI+RqGambIV+KkBQyAX/5qxqkDHk+sXckP7FsJ5g63T1lgKJRMRKG/Sg8cG
TKypBIqMTMeA2AhahXwicY+Vcp1t12P8k8JEfOtKFkG7AAXKeNvOeyqMtMRlYYPV
Arm7L4/YeY9RYP3Rzcs8vfsrYW6oqS/2KMl97ZhnwqzBvwVO+X9t5l8wA0Shgmo8
Jz1/7Qb+H40qPlKZEnJxTZJ28nNyObgNbKcDQs4LSF93d5mEelhWimbBN6+lLAQn
xYhgywQ0dz90iiZK7ZfJoJjZeJoUAINqn8aB1QgNYGEZtVd6qKiryw608sByjXu9
Rh7sRKfCvdm2LKKP6qTy0cTP7d248XNtN70CHbbCJRsz51lK1CJmbpd+WbakyzFw
9HnvR7MX3JQkPciFDa72r+SQCZuvQlPyfBCUlpSfnJi7XzBDJMuO4iiz5m/xykVz
13+CQA+EkdENbALRcUTlp9jKmb01WAcNSxRaZJU7Cg9X410vwX7Qh17ZSfsNYZ+X
DKNTnBFH0pqBdJh5OJkHTtt971QkZtmlFG9mB3EblScP4LA9X28VNJi6K2Pjwq8X
UvwOlhj0mMfIjkvYiiNCuA6VR3ZlbInsNqFSQg9eCA7zOHOE30k=
=WVWY
-END PGP SIGNATURE-



Bug#897911: jessie-pu: package libdatetime-timezone-perl/1:1.75-2+2018e

2018-05-04 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've uploaded libdatetime-timezone-perl/1:1.75-2+2018e for
jessie(-updates). It contains a new patch which updates the data
files to the Olson db release 2018e, which contains changes for North
Korea effective tomorrow.

Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlrskyVfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYUNhAAkQ9r2Z1AXyhCeP3VwT3Lf37J8l46gRWrcjHDSmzNDBMJj25Xb2gnd+QW
9pMPs4JlLDPrj/9h282NlDnW2LfTb1fjRsiPoQYZXnMJSlmghzJ0BuYBEAiSp/Wi
eRd2GCHKw6yRWLtK7I8Nv91whnR7h+56TGPfqEE+hgvgwqIQ+9XlHntxyMlS6lRe
OyQm/EYIY0eOsoMQV9AV6CvNNTBRX9VjEukf11OPnHqFqZ3s9zHU9nzKEAcS1O1X
tMeWzamL9568lqNaFyx4nmcv3nZTD0w4vRuYe69uatTSCw0D9Pdxfn4pp2HdBMQr
NrHkDxnBDnHyKQ9gn2+zUhqPvbHC3/8Z7qHJ4AL/fx9bjWMRDFJe++shPUKcohcK
HLdm6YdiwvJxbU4TVJAL+FJ1uVl+dIpM+tJlV+yJNstvlsLaFDxvh4CyudxSeXEd
kdaoPZvJ7Z9uDZA4dsqtRgBozkH9EmhVqfkFH8Lr6DxPoxibDRBXpS26FiPJFJWi
wPpGvFh0BDsZUeTwvhW+bPNt0ZCMauFLBlHMp04o6Z4cpJAkLqll5w6dC9U65oDM
GAbQMvjte2ablQgBK2PxN2SJRztnzraNhS6JqDjEK85GsNkUwLSD49ViL7nkI3t9
nzB1cJiHwxOdPHPMlI0Db/UCaNpzmv97kbdUU9+sVgPImL4eBKE=
=FmHo
-END PGP SIGNATURE-



Bug#893970: jessie-pu: package libdatetime-timezone-perl/1:1.75-2+2018d

2018-03-30 Thread gregor herrmann
On Fri, 30 Mar 2018 02:09:18 +0100, Adam D. Barratt wrote:

> On Sat, 2018-03-24 at 19:26 +0100, gregor herrmann wrote:
> > I've prepared an update for libdatetime-timezone-perl in jessie
> > incorporating the Olson db 2018d version. As usual as a quilt patch
> > only touching the data files.
> 
> Please go ahead.

Thanks; uploaded.

Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at -- Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member VIBE!AT & SPI Inc. -- Supporter Free Software Foundation Europe
   `-   NP: Van Morrison: Moondance


signature.asc
Description: Digital Signature


Bug#893971: stretch-pu: package libdatetime-timezone-perl/1:2.09-1+2018d

2018-03-30 Thread gregor herrmann
On Fri, 30 Mar 2018 02:09:42 +0100, Adam D. Barratt wrote:

> On Sat, 2018-03-24 at 19:26 +0100, gregor herrmann wrote:
> > I've prepared an update for libdatetime-timezone-perl in stretch
> > incorporating the Olson db 2018d version. As usual as a quilt patch
> > only touching the data files.
> 
> Please go ahead.

Thank you! Uploaded.


Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at -- Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member VIBE!AT & SPI Inc. -- Supporter Free Software Foundation Europe
   `-   NP: Van Morrison: Moondance


signature.asc
Description: Digital Signature


Bug#893971: stretch-pu: package libdatetime-timezone-perl/1:2.09-1+2018d

2018-03-24 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've prepared an update for libdatetime-timezone-perl in stretch
incorporating the Olson db 2018d version. As usual as a quilt patch
only touching the data files.

Olson db 2018d contains the following contemporary changes:

  Changes to future time stamps

In 2018, Palestine starts DST on March 24, not March 31.
Adjust future predictions accordingly.  (Thanks to Sharef Mustafa.)

  Changes to past and future time stamps

Casey Station in Antarctica changed from +11 to +08 on 2018-03-11
at 04:00.  (Thanks to Steffen Thorsen.)

As both of these changes are already in effect, this update might be a
candidate for $suite-updates as well.


Manually stripped down debdiff attached.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlq2mFJfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgaj4RAAwPIUnZpUFJKCpf8SIz7CDzXS1acOmdO83pAjPzY6j5IJlA8K0lk8WCAO
zfKa9Q03IoQqdSHaXnqgOYs3dEbfn/svHtuVOP+ViynXFDwCFBFaFP3zx3ihAaE+
oWIyoBwta7khd6g5f2B03jlypLHNVyg+BFaS4X4qGsFpuNccKutSkZRKmrqfBB/v
xKOZwmFlTDOWR0q8zAyzICe5109gQBOV29X76W6HPHibPHTXPmqp3DKc2jbAHQlm
xjFfVKYCQTZN7Xa3iolOzG2wP1+0f6S2kpE/d1WFFI5jW6o3vLlSCV9DrImRiDcP
MVlT0LrLafg2XFRLroCyII/zQpKG61YJ8L+ZuoiO3khdINRmBoi/KGKQbtj+wbyM
NB0jvphcw09BvqKsDJciaJ/66WRrU//QaVglLJZEjfa0O57iHOCR/0sSToueNyKm
zGvvm5zpCogq4YzVtCEBDt/RkL4nLY+vTXgbl79GFumMuCL8UW1FbFInwEm1H4Gh
AlD6A/PS/1fapoTtg7bpUhQPC6rwDBeBqxEMPCNLCftp1UX2uNxi5OexXZXmmzAg
wkOhXrqTzMWPl6rnl8+UhalsYkc45frbE8Ug1kp+R3kmaA48deNy+ATy4nQVcW3Q
B9uR7J57jc+yD2IQOM+ZL8G7YjTok1CYZnKPkANUxNmWpqSM2KY=
=n3mu
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.09/debian/changelog 
libdatetime-timezone-perl-2.09/debian/changelog
--- libdatetime-timezone-perl-2.09/debian/changelog 2018-02-10 
15:01:05.0 +0100
+++ libdatetime-timezone-perl-2.09/debian/changelog 2018-03-24 
19:11:55.0 +0100
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:2.09-1+2018d) UNRELEASED; urgency=medium
+
+  * Update to Olson database version 2018d.
+This update contains contemporary changes for Palestine and Casey Station.
+
+ -- gregor herrmann <gre...@debian.org>  Sat, 24 Mar 2018 19:11:55 +0100
+
 libdatetime-timezone-perl (1:2.09-1+2018b) stretch; urgency=medium
 
   * Update to Olson database version 2018b.
diff -Nru libdatetime-timezone-perl-2.09/debian/patches/olson-2018d 
libdatetime-timezone-perl-2.09/debian/patches/olson-2018d
--- libdatetime-timezone-perl-2.09/debian/patches/olson-2018d   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.09/debian/patches/olson-2018d   2018-03-24 
19:11:55.0 +0100
@@ -0,0 +1,12230 @@
+Description: update to olson db 2018d
+Origin: vendor
+Author: gregor herrmann <gre...@debian.org>
+Last-Update: 2018-03-24
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2018b
++# Generated from debian/tzdata/africa.  Olson data version 2018d
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2018b'}
++sub olson_version {'2018d'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Asia/Gaza.pm
 b/lib/DateTime/TimeZone/Asia/Gaza.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/asia.  Olson data version 2018b
++# Generated from debian/tzdata/asia.  Olson data version 2018d
+ #
+ # Do not edit this file directly.
+ #
+@@ -1006,17 +1006,17 @@
+ ],
+ [
+ 63644824800, #utc_start 2017-10-27 22:00:00 (Fri)
+-63658134000, #  utc_end 2018-03-30 23:00:00 (Fri)
++63657529200, #  utc_end 2018-03-23 23:00:00 (Fri)
+ 63644832000, #  local_start 2017-10-28 00:00:00 (Sat)
+-63658141200, #local_end 2018-03-31 01:00:00 (Sat)
++63657536400, #local_end 2018-03-24 01:00:00 (Sat)
+ 7200,
+ 0,
+ 'EET',
+ ],
+ [
+-63658134000, #utc_start 2018-03-30 23:00:00 (Fri)
++63657529200, #utc_start 2018-03-23 23:00:00 (Fri)
+ 63676274400, #  utc_end 2018-10-26 22:00:00 (Fri)
+-63658144800, #  local_start 2018-03-31 02:00:00 (Sat)
++6365754, #  local_start 2018-03-24 02:00:00 (Sat)
+ 63676285200, #local_end 2018-10-27 01:00:00 (Sat)
+ 10800,
+ 1,
+@@ -1024,17 +1024,17 @@
+ ],
+ [
+ 63676274400, #utc_start 2018-10-26 22:00:00 (Fri)
+-63689583600, #  utc_end 2019-03-29 23:00:00 (Fri)
++63688978800, #  utc_end 2019-03-22 23:00:00 (Fri)
+ 63676281600, #  local_start 2018-10-27 00:00:00 (Sat)
+-63689590800, #local_end 2019-03-30 01:00:00 (Sat)
++63688986000, #local_end 2

Bug#893970: jessie-pu: package libdatetime-timezone-perl/1:1.75-2+2018d

2018-03-24 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've prepared an update for libdatetime-timezone-perl in jessie
incorporating the Olson db 2018d version. As usual as a quilt patch
only touching the data files.

Olson db 2018d contains the following contemporary changes:

  Changes to future time stamps

In 2018, Palestine starts DST on March 24, not March 31.
Adjust future predictions accordingly.  (Thanks to Sharef Mustafa.)

  Changes to past and future time stamps

Casey Station in Antarctica changed from +11 to +08 on 2018-03-11
at 04:00.  (Thanks to Steffen Thorsen.)

As both of these changes are already in effect, this update might be a
candidate for $suite-updates as well.


Manually stripped down debdiff attached.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlq2mFBfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgag1hAAxPJw38Qm/diuh0KFb8hZI5xIhuKYJHI+P+NZILNrSBGf/pEWvI9gfh/g
bqWtnxrvOzE2zziQuLjhmVvPr2cDSP4ncodxLt8MSt+xQYO50lGHmuHrau5QNESR
WtgduxFbJHZkGDPzzaWl2kfb4NYTntguhuuEhdSxMQ08OXXNdfdMvSNPcQhkUBMa
SFslHPbomKlLsEVRpnaQpFh/vS7yhUWhmFJetU7VGHLBtLBQ6ZISsypGpJIeiKKM
gRBUO5vDv1ZSq+5MfBkFsCtz1NP5vB8ObkpppUM1t8FfX/DerSlspdUdaPhgx+M7
vhQjqS1dmVFGX2JcPmSkebSuhR862ZyvVGaWqJny1vEMqWg0QrYWmtlVObeQjnpZ
cB5eSlVO0GwbWf0EmjQ2MRi2VdBK0ZnodRx2SnyiVPbp6pmQuOZKHuRQ5JjR2T5q
GZ97bXThh0YTe4ObEHgt+CI+rlKyHGrrS9RA2rj74l456pe8q4Qqgan3Fa+1+EG+
02KD12ggbZx8E/bfhrGjWk3HLkaNKWJVKzdzLYpom60U85TMzukGcKUB3B976bhw
WgNZ4Ox8GjGhkbEXPpauQ7U9e+n9ZK3gwpkQkuSNgih2k4ZgTTbmXbJsAFZ6piDK
ZfRrTRTsIcSMowo5Xj9FMTUylwj++D4JgS6/J+b8jIEddszXCro=
=Xt9p
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-1.75/debian/changelog 
libdatetime-timezone-perl-1.75/debian/changelog
--- libdatetime-timezone-perl-1.75/debian/changelog 2018-02-10 
14:57:50.0 +0100
+++ libdatetime-timezone-perl-1.75/debian/changelog 2018-03-24 
19:05:11.0 +0100
@@ -1,3 +1,10 @@
+libdatetime-timezone-perl (1:1.75-2+2018d) UNRELEASED; urgency=medium
+
+  * Update to Olson database version 2018d.
+This update contains contemporary changes for Palestine and Casey Station.
+
+ -- gregor herrmann <gre...@debian.org>  Sat, 24 Mar 2018 19:05:11 +0100
+
 libdatetime-timezone-perl (1:1.75-2+2018b) jessie; urgency=medium
 
   * Update to Olson database version 2018b.
diff -Nru libdatetime-timezone-perl-1.75/debian/patches/olson-2018d 
libdatetime-timezone-perl-1.75/debian/patches/olson-2018d
--- libdatetime-timezone-perl-1.75/debian/patches/olson-2018d   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-1.75/debian/patches/olson-2018d   2018-03-24 
19:05:11.0 +0100
@@ -0,0 +1,11909 @@
+Description: update to olson db 2018d
+Origin: vendor
+Author: gregor herrmann <gre...@debian.org>
+Last-Update: 2018-03-24
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2018b
++# Generated from debian/tzdata/africa.  Olson data version 2018d
+ #
+ # Do not edit this file directly.
+ #
+@@ -39,7 +39,7 @@
+ ],
+ ];
+ 
+-sub olson_version { '2018b' }
++sub olson_version { '2018d' }
+ 
+ sub has_dst_changes { 0 }
+ 
+--- a/lib/DateTime/TimeZone/Asia/Gaza.pm
 b/lib/DateTime/TimeZone/Asia/Gaza.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/asia.  Olson data version 2018b
++# Generated from debian/tzdata/asia.  Olson data version 2018d
+ #
+ # Do not edit this file directly.
+ #
+@@ -1002,17 +1002,17 @@
+ ],
+ [
+ 63644824800, #utc_start 2017-10-27 22:00:00 (Fri)
+-63658134000, #  utc_end 2018-03-30 23:00:00 (Fri)
++63657529200, #  utc_end 2018-03-23 23:00:00 (Fri)
+ 63644832000, #  local_start 2017-10-28 00:00:00 (Sat)
+-63658141200, #local_end 2018-03-31 01:00:00 (Sat)
++63657536400, #local_end 2018-03-24 01:00:00 (Sat)
+ 7200,
+ 0,
+ 'EET',
+ ],
+ [
+-63658134000, #utc_start 2018-03-30 23:00:00 (Fri)
++63657529200, #utc_start 2018-03-23 23:00:00 (Fri)
+ 63676274400, #  utc_end 2018-10-26 22:00:00 (Fri)
+-63658144800, #  local_start 2018-03-31 02:00:00 (Sat)
++6365754, #  local_start 2018-03-24 02:00:00 (Sat)
+ 63676285200, #local_end 2018-10-27 01:00:00 (Sat)
+ 10800,
+ 1,
+@@ -1020,17 +1020,17 @@
+ ],
+ [
+ 63676274400, #utc_start 2018-10-26 22:00:00 (Fri)
+-63689583600, #  utc_end 2019-03-29 23:00:00 (Fri)
++63688978800, #  utc_end 2019-03-22 23:00:00 (Fri)
+ 63676281600, #  local_start 2018-10-27 00:00:00 (Sat)
+-63689590800, #local_end 2019-03-30 01:00:00 (Sat)
++63688986000, #local_en

Bug#888019: jessie-pu: package libdatetime-timezone-perl/1:1.75-2+2018b

2018-02-10 Thread gregor herrmann
On Sat, 10 Feb 2018 10:32:58 +, Adam D. Barratt wrote:

> On Mon, 2018-01-22 at 18:27 +0100, gregor herrmann wrote:
> > I've prepared an update for libdatetime-timezone-perl in jessie,
> > incorporating the tzdata 2018b release. The changes are in a quilt
> > patch which only touches the data files.
> Please go ahead.

Thank you; uploaded.


Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at -- Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member VIBE!AT & SPI Inc. -- Supporter Free Software Foundation Europe
   `-   NP: The Eagles: Hotel California


signature.asc
Description: Digital Signature


Bug#888018: stretch-pu: package libdatetime-timezone-perl/1:2.09-1+2018b

2018-02-10 Thread gregor herrmann
On Sat, 10 Feb 2018 10:32:31 +, Adam D. Barratt wrote:

> On Mon, 2018-01-22 at 18:27 +0100, gregor herrmann wrote:
> > I've prepared an update for libdatetime-timezone-perl in stretch,
> > incorporating the tzdata 2018b release. The changes are in a quilt
> > patch which only touches the data files.
> Please go ahead.

Thanks, uploaded.
 

Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at -- Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member VIBE!AT & SPI Inc. -- Supporter Free Software Foundation Europe
   `-   NP: The Eagles: Hotel California


signature.asc
Description: Digital Signature


Bug#888018: Bug#888019/888018: jessie-pu/stretch-pu: package libdatetime-timezone-perl/*+2018b

2018-01-23 Thread gregor herrmann
On Mon, 22 Jan 2018 18:27:51 +0100, gregor herrmann wrote:

> Changes in the olson db 2018b, copied from upstream:

And today we had the release of 2018c.

What I see from the announcement [0], the prior discussions, and the
diff (after "perlifying" the code), this just reverts the changes for
Europe/Dublin, as some software doesn't like negative DST offsets.

From what I see this is not relevant for libdatetime-timezone-perl;
not only did the tests pass with the +2018b versions, I also added
additional tests with Europe/Dublin now locally, and they also passed
without an issue.

So I guess we can go ahead with the +2018b versions for jessie and
stretch and save another patching trip.


Cheers,
gregor

[0] https://mm.icann.org/pipermail/tz-announce/2018-January/48.html

-- 
 .''`.  https://info.comodo.priv.at -- Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member VIBE!AT & SPI Inc. -- Supporter Free Software Foundation Europe
   `-   NP: Joe Cocker: Put Out The Lights


signature.asc
Description: Digital Signature


Bug#888018: stretch-pu: package libdatetime-timezone-perl/1:2.09-1+2018b

2018-01-22 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've prepared an update for libdatetime-timezone-perl in stretch,
incorporating the tzdata 2018b release. The changes are in a quilt
patch which only touches the data files.

Changes in the olson db 2018b, copied from upstream:

  Changes to past and future time stamps

São Tomé and Príncipe switched from +00 to +01 on 2018-01-01 at
01:00.  (Thanks to Steffen Thorsen and Michael Deckers.)

  Changes to future time stamps

Starting in 2018 southern Brazil will begin DST on November's
first Sunday instead of October's third Sunday.  (Thanks to
Steffen Thorsen.)

  Changes to tm_isdst

Change Europe/Dublin so that it observes Irish Standard Time (UT
+01) in summer and GMT (as negative daylight-saving) in winter,
instead of observing standard time (GMT) in winter and Irish
Summer Time (UT +01) in summer.  This change does not affect UT
offsets or abbreviations; it affects only whether timestamps are
considered to be standard time or daylight-saving time, as
expressed in the tm_isdst flag of C's struct tm type.
(Discrepancy noted by Derick Rethans.)


Manually trimmed down debdiff attached.


I guess the people using São Tomé and Príncipe timezone would be
happy to see this update in -updates.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlpmHxlfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgalKg/9FH0vUoh1ksthy67rVBAGYz1ZC8GJ72LgkvtpKOj/e2dwyuvbuyUaR1o7
z4QRPg7C12r+WatphRBF3kE5E+ghjqB2DIDIl3qWikRmNa7cYqA3gwPG5fpt+aID
gShUfthEu0Wm3G/J/WYcfmRmR6tTi9DFMT2YfgrxsDCMJRCr7oiFvhEfRR3HHSWC
g4HMWWhirnxny+z8EhosCIm4zOj8v8/2R87kMIQDyC0Cd+jf6X/8UtwGUU6Os3WY
3l0VNX+JVcsbB9uLocgB7Cm+kaz/Kd2YDdiHE/A40hbn1T+dTwcPwxwMowSumgO3
+hwov8ppUdkKr8klyUDglu0nc86VTznXm8Qd86zLwHjDfuaj+PCsaATT3f+UUkZ6
xCxDgv/dKA+U+18qSp2FsqMW6RAeMaTL9syVGyj3aOjwpOdZ47xjbR+aDsznyTdR
BYQwl3fssVOlj5wqD4+8ATDQFEl9W55n1EExPLaMltPEKFM4r64R9KqyAFxD6fM0
ZAh1+OUlm/mPyDZ83ObDTPX0Eru06fBBRjUGRu5VqHBBdPcNi1z75s0iNmxpRK3Z
fHlnnrTToMwkUK81oN6SVtCu7poU31qA+0+YwMXuYFvrIShB2UPjitsyw9AkLYR9
k8ypIsmMzC1Z6sjhGgwAxeR0uRUdFQJJ6lzUu4F5FJR818JAHxg=
=5dSE
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.09/debian/changelog 
libdatetime-timezone-perl-2.09/debian/changelog
--- libdatetime-timezone-perl-2.09/debian/changelog 2017-10-24 
16:32:02.0 +0200
+++ libdatetime-timezone-perl-2.09/debian/changelog 2018-01-22 
17:55:44.0 +0100
@@ -1,3 +1,11 @@
+libdatetime-timezone-perl (1:2.09-1+2018b) UNRELEASED; urgency=medium
+
+  * Update to Olson database version 2018b.
+This update contains contemporary changes for São Tomé and Príncipe,
+Brazil, and Ireland.
+
+ -- gregor herrmann <gre...@debian.org>  Mon, 22 Jan 2018 17:55:44 +0100
+
 libdatetime-timezone-perl (1:2.09-1+2017c) stretch; urgency=medium
 
   * Update to Olson database version 2017c.
diff -Nru libdatetime-timezone-perl-2.09/debian/patches/olson-2018b 
libdatetime-timezone-perl-2.09/debian/patches/olson-2018b
--- libdatetime-timezone-perl-2.09/debian/patches/olson-2018b   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.09/debian/patches/olson-2018b   2018-01-22 
17:55:44.0 +0100
@@ -0,0 +1,17086 @@
+Description: update to olson db 2018b
+Origin: vendor
+Author: gregor herrmann <gre...@debian.org>
+Last-Update: 2018-01-22
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2017c
++# Generated from debian/tzdata/africa.  Olson data version 2018b
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,11 +43,11 @@
+ ],
+ ];
+ 
+-sub olson_version {'2017c'}
++sub olson_version {'2018b'}
+ 
+ sub has_dst_changes {0}
+ 
+-sub _max_year {2027}
++sub _max_year {2028}
+ 
+ sub _new_instance {
+ return shift->_init( @_, spans => $spans );
+--- a/lib/DateTime/TimeZone/America/Sao_Paulo.pm
 b/lib/DateTime/TimeZone/America/Sao_Paulo.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/southamerica.  Olson data version 2017c
++# Generated from debian/tzdata/southamerica.  Olson data version 2018b
+ #
+ # Do not edit this file directly.
+ #
+@@ -835,17 +835,17 @@
+ ],
+ [
+ 63654602400, #utc_start 2018-02-18 02:00:00 (Sun)
+-63675774000, #  utc_end 2018-10-21 03:00:00 (Sun)
++63676983600, #  utc_end 2018-11-04 03:00:00 (Sun)
+ 63654591600, #  local_start 2018-02-17 23:00:00 (Sat)
+-63675763200, #local_end 2018-10-21 00:00:00 (Sun)
++63676972800, #local_end 2018-11-04 00:00:00 (Sun)
+ -

Bug#888019: jessie-pu: package libdatetime-timezone-perl/1:1.75-2+2018b

2018-01-22 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've prepared an update for libdatetime-timezone-perl in jessie,
incorporating the tzdata 2018b release. The changes are in a quilt
patch which only touches the data files.

Changes in the olson db 2018b, copied from upstream:

  Changes to past and future time stamps

São Tomé and Príncipe switched from +00 to +01 on 2018-01-01 at
01:00.  (Thanks to Steffen Thorsen and Michael Deckers.)

  Changes to future time stamps

Starting in 2018 southern Brazil will begin DST on November's
first Sunday instead of October's third Sunday.  (Thanks to
Steffen Thorsen.)

  Changes to tm_isdst

Change Europe/Dublin so that it observes Irish Standard Time (UT
+01) in summer and GMT (as negative daylight-saving) in winter,
instead of observing standard time (GMT) in winter and Irish
Summer Time (UT +01) in summer.  This change does not affect UT
offsets or abbreviations; it affects only whether timestamps are
considered to be standard time or daylight-saving time, as
expressed in the tm_isdst flag of C's struct tm type.
(Discrepancy noted by Derick Rethans.)


Manually trimmed down debdiff attached.


I guess the people using São Tomé and Príncipe timezone would be
happy to see this update in -updates.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlpmHxdfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgaFVA//Q5SpHzFFrvqE81UZ1S6gIYUUpr+fUkIooep6dkdrvwYVoAIh/aCb82lG
3jkPADlrDL3E6UdkLSCNN4Qc9RnyrX9itlrOVAbgroTGf50giUqwDBdd8G2R33tN
epPBf3pPWRzlWYqtlr8pBD5blo+QhiiDggfPEVengLppoacovfBFkv0PtEBnONJX
FXHOBFMzlaHkK3YgjTUtXWkfZrlDrQFEIlF4smd443q+lCVxeQYTAIKkQyIyeGHs
u4YtWyQXhHa30nQGs+/DZuvwy9lxQgC/DCLr89ZtO+HZDebVzZaCinhkIUcNx+pw
ONfCWXfwAQPGaUTRL6KOvPNf7NmGOZJhXRqRxlBzQxYqymClVtxh1JW7aLqOff3m
aY+5OnKn0q9/4CSfxaTQHB9fo2iuQxsZXtI/wCLkYkhwLjw2EpKYEXJ2qwLnf7nn
B5UxFA6hG9I4VdNVHplAU8AuksrspoMea9s1AMhkAy1m9jkbzkDYTD8ID7GK5B77
ES/X1+vPx1et3yN/qiVqHp1b+dNzjzluqzPIl8aUaPdLYgjNa+nBQmleKahsodMC
hw3qygvHYdHHKPuBhuiIV3cNAzgu4FRVvDA9eueRNmZxIcY2VVwOVDkB3d87GTDY
kk/XG8T8vvZ0bcXZusi4eMWaiRYvig6fQfnjmxVxln8GWqITHCI=
=FJWE
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-1.75/debian/changelog 
libdatetime-timezone-perl-1.75/debian/changelog
--- libdatetime-timezone-perl-1.75/debian/changelog 2017-10-24 
16:28:29.0 +0200
+++ libdatetime-timezone-perl-1.75/debian/changelog 2018-01-22 
18:05:34.0 +0100
@@ -1,3 +1,11 @@
+libdatetime-timezone-perl (1:1.75-2+2018b) UNRELEASED; urgency=medium
+
+  * Update to Olson database version 2018b.
+This update contains contemporary changes for São Tomé and Príncipe,
+Brazil, and Ireland.
+
+ -- gregor herrmann <gre...@debian.org>  Mon, 22 Jan 2018 18:05:34 +0100
+
 libdatetime-timezone-perl (1:1.75-2+2017c) jessie; urgency=medium
 
   * Update to Olson database version 2017c.
diff -Nru libdatetime-timezone-perl-1.75/debian/patches/olson-2018b 
libdatetime-timezone-perl-1.75/debian/patches/olson-2018b
--- libdatetime-timezone-perl-1.75/debian/patches/olson-2018b   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-1.75/debian/patches/olson-2018b   2018-01-22 
18:05:34.0 +0100
@@ -0,0 +1,17024 @@
+Description: update to olson db 2018b
+Origin: vendor
+Author: gregor herrmann <gre...@debian.org>
+Last-Update: 2018-01-22
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2017c
++# Generated from debian/tzdata/africa.  Olson data version 2018b
+ #
+ # Do not edit this file directly.
+ #
+@@ -39,11 +39,11 @@
+ ],
+ ];
+ 
+-sub olson_version { '2017c' }
++sub olson_version { '2018b' }
+ 
+ sub has_dst_changes { 0 }
+ 
+-sub _max_year { 2027 }
++sub _max_year { 2028 }
+ 
+ sub _new_instance
+ {
+--- a/lib/DateTime/TimeZone/America/Sao_Paulo.pm
 b/lib/DateTime/TimeZone/America/Sao_Paulo.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/southamerica.  Olson data version 2017c
++# Generated from debian/tzdata/southamerica.  Olson data version 2018b
+ #
+ # Do not edit this file directly.
+ #
+@@ -831,17 +831,17 @@
+ ],
+ [
+ 63654602400, #utc_start 2018-02-18 02:00:00 (Sun)
+-63675774000, #  utc_end 2018-10-21 03:00:00 (Sun)
++63676983600, #  utc_end 2018-11-04 03:00:00 (Sun)
+ 63654591600, #  local_start 2018-02-17 23:00:00 (Sat)
+-63675763200, #local_end 2018-10-21 00:00:00 (Sun)
++63676972800, #local_end 2018-11-04 00:00:00 (Sun)
+ -10800,
+ 0,
+ '-03',
+ ],
+ [
+

Bug#887047: jessie-pu: package dh-make-perl/0.84-2+deb8u1

2018-01-12 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've prepared an update for dh-make-perl in jessie which fixes #851848.

The problem is that the Contents files have changed between then and
now, and dh-make-perl in jessie fails to parse them now. Manfred
Stock has provides a patch which simply removes the check for the
"headers", which don't exist in the Contents files anymore, and
additionally adds tests.

The actual "meat" of the change is (quilt patch applied, git diff -w):

#v+
- --- a/lib/Debian/AptContents.pm
+++ b/lib/Debian/AptContents.pm
@@ -315,10 +315,8 @@ sub read_cache {
 }

 $self->warning( 1, "Parsing $_ ..." );
- -my $capturing = 0;
 my $line;
 while ( defined( $line = $f->getline ) ) {
- -if ($capturing) {
 my ( $file, $packages ) = split( /\s+/, $line );
 next unless $file =~ s{
 ^usr/
@@ -336,10 +334,6 @@ sub read_cache {
 # matches. Otherwise we'd parse thousands of entries,
 # while checking only a couple
 }
- -else {
- -$capturing = 1 if $line =~ /^FILE\s+LOCATION/;
- -}
- -}
 }

 if ( %{ $cache->{apt_contents} } ) {
#v-


Full debdiff attached.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlpZZBlfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgZOgw//Q0JAWl5d4Eo03sVpgw6+cUTgGSg2/nQgufA+xfltFjZOuiPiczTIeMoI
D3kF+YiTeR2Lsp2Bx+Pt25/XugjTedBJC1OqOm/ER5jWEVbB6hK2z80ipCKPCthm
ScxNlpb8ttiecM+ql22Y3tyyRluJH4J3TEjlT10VUSw7ngO1zhQ9cGwJs0IWjove
BZKhNmw0AeuKV3JJBugs0QTez1jSLADXrrHT00bmuLks1f0L9SgiLpwfyOoIrLH3
Y96u6AtdOKGikg+b6GldcwyYH4r4hPIJKh8tyz7DCkJH/VkOlrMqfNYZQRWd0fK4
T6EH7KIeVEl+IIab3y0eboFxHFioKBl4CfTKcNqY/3WazUCQS+mSboTp/jztbibv
rGyzA1Th7Uvfzvs6JGycV8dSsZsQYzYpXDj73U8wddabRKPoFTXLE4qR+RqnTJQT
/cXJcSIlqhqL+vGj/Oe49CO4qYMY7A05+Qab8cJezdJt+cKquJOt7LDeumpNeQRI
mrZCmPIYyqPNLC41yjQROXMddc8yxb5ZLJ6rLtVzhL4oNwxdneZbxBOjjeylcA4/
Dfp7+lH0FK5QD63cs9h2NUaLz0/sc6TW5vkzPOV3baB2ZtBx8V8ACe0GDro2un0w
RvIgKfOEgMSoCT1T4gNI4Dw71ecZJRBxCHkGk3o9Z1WWPetZISQ=
=veg1
-END PGP SIGNATURE-
diff -Nru dh-make-perl-0.84/debian/changelog dh-make-perl-0.84/debian/changelog
--- dh-make-perl-0.84/debian/changelog  2015-01-21 19:00:35.0 +0100
+++ dh-make-perl-0.84/debian/changelog  2018-01-13 02:28:20.0 +0100
@@ -1,3 +1,18 @@
+dh-make-perl (0.84-2+deb8u1) UNRELEASED; urgency=medium
+
+  [ Manfred Stock ]
+  * Support Contents files without header.
+Current versions of the Contents files in the Debian archive don't seem to
+contain a header anymore, which kind-of breaks the parser, as it only
+processed lines after the line matched by the regular expression
+^FILE\s+LOCATION. Since the regular expression which is used to parse the
+file column of the Contents files looks robust enough, it seems like this
+check can be dropped).
+
+    Closes: #851848
+
+ -- gregor herrmann <gre...@debian.org>  Sat, 13 Jan 2018 02:28:20 +0100
+
 dh-make-perl (0.84-2) unstable; urgency=medium
 
   * Add runtime dependency on libyaml-libyaml-perl.
diff -Nru 
dh-make-perl-0.84/debian/patches/0001-Support-Contents-files-without-header.patch
 
dh-make-perl-0.84/debian/patches/0001-Support-Contents-files-without-header.patch
--- 
dh-make-perl-0.84/debian/patches/0001-Support-Contents-files-without-header.patch
   1970-01-01 01:00:00.0 +0100
+++ 
dh-make-perl-0.84/debian/patches/0001-Support-Contents-files-without-header.patch
   2018-01-13 02:28:20.0 +0100
@@ -0,0 +1,143 @@
+>From d18535572869a6a3e526bfb4ad08e667ce479c71 Mon Sep 17 00:00:00 2001
+From: Manfred Stock <manfred.stock+deb...@gmail.com>
+Date: Thu, 19 Jan 2017 09:34:13 +0100
+Subject: [PATCH] Support Contents files without header
+
+Current versions of the Contents files in the Debian archive don't seem to
+contain a header anymore, which kind-of breaks the parser, as it only processed
+lines after the line matched by the regular expression ^FILE\s+LOCATION. Since
+the regular expression which is used to parse the file column of the Contents
+files looks robust enough, it seems like this check can be dropped (which gets
+done in a rather unrelated change in dh-make-perl commit
+885b31c44b4a61d6f6ca44d3335c20506ab41ee9, too, so current versions are not
+affected by this problem).
+---
+ lib/Debian/AptContents.pm | 38 ++-
+ t/AptContents.t   | 16 +-
+ t/contents/sources.list   |  1 +
+ t/contents/test_debian_dists_stable_main_Contents |  2 ++
+ 4 files changed, 

Bug#879629: stretch-pu: package libdatetime-timezone-perl/1:2.09-1+2017c

2017-10-24 Thread gregor herrmann
On Tue, 24 Oct 2017 06:50:44 +0100, Adam D. Barratt wrote:

> On Mon, 2017-10-23 at 19:39 +0200, gregor herrmann wrote:
> > I've prepared an update for libdatetime-timezone-perl in stretch
> > which incorporates the changes from the Olson db 2017c release.
> Please go ahead.

Thanks, uploaded.
 
> We'll look at -updates later in the week, most likely once it's clearer
> what's happening with tzdata uploads for the new version.

Perfect!


Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: Little Walter: It's Too Late Brother


signature.asc
Description: Digital Signature


Bug#879630: jessie-pu: package libdatetime-timezone-perl/1:1.75-2+2017c

2017-10-23 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've prepared an update for libdatetime-timezone-perl in jessie which
incorporates the changes from the Olson db 2017c release.
The changes are in a quilt patch and touch only the data files in
lib/DateTime/TimeZone.

2017c contains recent changes to a couple of timezones, the first
change happening this weekend (2017-10-29) in North Cyprus, so this
might be material for jessie-updates before a next point release.
Cf. https://mm.icann.org/pipermail/tz-announce/2017-October/47.html

A manually stripped down debdiff is attached.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlnuKTxfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgaJQw/9HvCfmTSa3DP1Cmezxsw68+ot9CHjzYO3+3zk53NiB8wECj3TT5Ot8RNq
q49w0gxMj+ACmW44GYwHbT9+IUkkvtWMLWG2z304Ko0ykOJEB1UdLC4Ev4/HE5Dp
NUMWq1ZVWG7HskuKSoD1yrmJUnsutMbFAMvLwWmuxkP7RBThmNrdv8Yo5GrFWc1f
yIOLI5tD4y9k7eR89EB0iiTib7mE1hJZxkIf6DKhPur+uq+us4M0eW60HG4TV63P
MLK0jBdQ+AJZyvsBdtd0y1LBWujvHjAj0+YTf39mBUetRPpdTHYp5w4D65i/k08C
gS71acqF2hDBsbJ2v2kX19Lo87RNdVNyt1ie05VzVmpwXSQ2lPXLSlv1BoTqP+Ii
ke/kLsoJfdKJbEQIw6ROzOQ/PsFrIlAPQIhUsHp0qERrmQ3hAFd3zffBmgUR6R1R
JIIe0iwFUOkcayQkdBSJ642Xme3jiJixTA3TBEC97Z0+9csJc2HqHxXMVq7WMO8j
jr+453kued5QL4PK7dNdAMIkRftEG+WLdCvpdlSH5z6OZfpJyFgjUkHAzDfhhMHt
FTH9IPLCYxfP7J9KdUz7l/+DoRoLIQQdAftBEIy6XOE8eiDYrOWXLJZIGlSyifPd
ZD2N8drZ6gE0tcOeMBORdYUxZDa9XTS0l5/XRIbaUiKH/3PB2cg=
=UfK7
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-1.75/debian/changelog 
libdatetime-timezone-perl-1.75/debian/changelog
--- libdatetime-timezone-perl-1.75/debian/changelog 2017-04-02 
22:32:45.0 +0200
+++ libdatetime-timezone-perl-1.75/debian/changelog 2017-10-23 
19:10:12.0 +0200
@@ -1,3 +1,11 @@
+libdatetime-timezone-perl (1:1.75-2+2017c) UNRELEASED; urgency=medium
+
+  * Update to Olson database version 2017c.
+This update contains contemporary changes for Northern Cyprus, Fiji,
+Namibia, Sudan, Tonga, and Turks & Caicos.
+
+ -- gregor herrmann <gre...@debian.org>  Mon, 23 Oct 2017 19:10:12 +0200
+
 libdatetime-timezone-perl (1:1.75-2+2017b) jessie; urgency=medium
 
   * Update to Olson database version 2017b.
diff -Nru libdatetime-timezone-perl-1.75/debian/patches/olson-2017c 
libdatetime-timezone-perl-1.75/debian/patches/olson-2017c
--- libdatetime-timezone-perl-1.75/debian/patches/olson-2017c   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-1.75/debian/patches/olson-2017c   2017-10-23 
19:10:12.0 +0200
@@ -0,0 +1,11569 @@
+Description: update to olson db 2017c
+Origin: vendor
+Author: gregor herrmann <gre...@debian.org>
+Last-Update: 2017-10-23
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2017b
++# Generated from debian/tzdata/africa.  Olson data version 2017c
+ #
+ # Do not edit this file directly.
+ #
+@@ -39,7 +39,7 @@
+ ],
+ ];
+ 
+-sub olson_version { '2017b' }
++sub olson_version { '2017c' }
+ 
+ sub has_dst_changes { 0 }
+ 
+--- a/lib/DateTime/TimeZone/Asia/Famagusta.pm
 b/lib/DateTime/TimeZone/Asia/Famagusta.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/asia.  Olson data version 2017b
++# Generated from debian/tzdata/asia.  Olson data version 2017c
+ #
+ # Do not edit this file directly.
+ #
+@@ -795,18 +795,216 @@
+ ],
+ [
+ 63608965200, #utc_start 2016-09-07 21:00:00 (Wed)
+-DateTime::TimeZone::INFINITY, #  utc_end
++63644922000, #  utc_end 2017-10-29 01:00:00 (Sun)
+ 63608976000, #  local_start 2016-09-08 00:00:00 (Thu)
+-DateTime::TimeZone::INFINITY, #local_end
++63644932800, #local_end 2017-10-29 04:00:00 (Sun)
+ 10800,
+ 0,
+ '+03',
+ ],
++[
++63644922000, #utc_start 2017-10-29 01:00:00 (Sun)
++63657622800, #  utc_end 2018-03-25 01:00:00 (Sun)
++63644929200, #  local_start 2017-10-29 03:00:00 (Sun)
++6365763, #local_end 2018-03-25 03:00:00 (Sun)
++7200,
++0,
++'EET',
++],
++[
++63657622800, #utc_start 2018-03-25 01:00:00 (Sun)
++63676371600, #  utc_end 2018-10-28 01:00:00 (Sun)
++63657633600, #  local_start 2018-03-25 04:00:00 (Sun)
++63676382400, #local_end 2018-10-28 04:00:00 (Sun)
++10800,
++1,
++'EEST',
++],
++[
++63676371600, #utc_start 2018-10-28 01:00:00 (Sun)
++63689677200, #  utc_end 2019-03-31 01:00:00 (Sun)
++63676378800, #  local_start 2018-10-28 03:00:00 (Sun)
++63689684400, #local_end 2019-03-31 03:00:00 (Sun)
++7200,
++0,
++'EET',
++],
++[
++63689677200, #utc_start 201

Bug#879629: stretch-pu: package libdatetime-timezone-perl/1:2.09-1+2017c

2017-10-23 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've prepared an update for libdatetime-timezone-perl in stretch which
incorporates the changes from the Olson db 2017c release.
The changes are in a quilt patch and touch only the data files in
lib/DateTime/TimeZone.

2017c contains recent changes to a couple of timezones, the first
change happening this weekend (2017-10-29) in North Cyprus, so this
might be material for stretch-updates before a next point release.
Cf. https://mm.icann.org/pipermail/tz-announce/2017-October/47.html

A manually stripped down debdiff is attached.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlnuKTpfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYFHQ/9GnSly2C/fEM9MeXIOhI4TPUiO9VvYRiCj1LeKglDjkEW0CkvVrcM7ZRX
THyMwXHcHsvKQy55Qsu4pZM8/zO0whuOplaeDS+WahWr770tKCTS3tZvVjNdzYdo
cTK70/zryhXy6Ycdd91UuYu1yE39eBR9iVbLQLZcG2vMMWo5yXZX7UyuAtZFKHxx
bZmxDwnCVYgnfQJXqY09dmIyfoY7UuOo8Z8bKeWGrSuwaG10u7J9mMqlNYEPMH6G
9MZ5i6+OSn+mCLaU+/o78UshGMxFoWI6shFHyXg3LBN2XFzlU66cnqb2zXA4PHaA
gj17aooxGGxW+T0vwY8Pw3VrNZlnDENA8XJCOkqdNqBJVfFuhffExsb8YbiL2O4O
iIQMjC9tWnskyWpz+BY6I8W1M1OYI3cxmG1QG5S6YvAeIM4F8AdgF/UHX6tcvJ9H
MuQZe9mB8mMmfIypwxodU/YRmmLBCl72kQfVTOZOmM/yXy2b3YK77byDIdpveq6l
/CJRMguTZpDa4UG+ZL66ViayLoiL6jfFrmNq6rqRwiDA9hiwHhawqlN6vfIr1Qp3
wIll1weOiEg+c7POpsM0AHUDxHJa0tclL0FcERF8e3tzAlLv6qKqe4DwqRLtcTv8
6KW8sQib7dMCrk/X0Zln3Zn/694oqj1IvKL4AWLLCmdynvDvedA=
=l9J2
-END PGP SIGNATURE-
diff -Nru libdatetime-timezone-perl-2.09/debian/changelog 
libdatetime-timezone-perl-2.09/debian/changelog
--- libdatetime-timezone-perl-2.09/debian/changelog 2017-03-24 
20:02:23.0 +0100
+++ libdatetime-timezone-perl-2.09/debian/changelog 2017-10-23 
19:24:29.0 +0200
@@ -1,3 +1,11 @@
+libdatetime-timezone-perl (1:2.09-1+2017c) UNRELEASED; urgency=medium
+
+  * Update to Olson database version 2017c.
+This update contains contemporary changes for Northern Cyprus, Fiji,
+Namibia, Sudan, Tonga, and Turks & Caicos.
+
+ -- gregor herrmann <gre...@debian.org>  Mon, 23 Oct 2017 19:24:29 +0200
+
 libdatetime-timezone-perl (1:2.09-1+2017b) unstable; urgency=medium
 
   * Update to Olson database version 2017b.
diff -Nru libdatetime-timezone-perl-2.09/debian/patches/olson-2017c 
libdatetime-timezone-perl-2.09/debian/patches/olson-2017c
--- libdatetime-timezone-perl-2.09/debian/patches/olson-2017c   1970-01-01 
01:00:00.0 +0100
+++ libdatetime-timezone-perl-2.09/debian/patches/olson-2017c   2017-10-23 
19:24:29.0 +0200
@@ -0,0 +1,11512 @@
+Description: update to olson db 2017c
+Origin: vendor
+Author: gregor herrmann <gre...@debian.org>
+Last-Update: 2017-10-23
+
+--- a/lib/DateTime/TimeZone/Africa/Abidjan.pm
 b/lib/DateTime/TimeZone/Africa/Abidjan.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/africa.  Olson data version 2017b
++# Generated from debian/tzdata/africa.  Olson data version 2017c
+ #
+ # Do not edit this file directly.
+ #
+@@ -43,7 +43,7 @@
+ ],
+ ];
+ 
+-sub olson_version {'2017b'}
++sub olson_version {'2017c'}
+ 
+ sub has_dst_changes {0}
+ 
+--- a/lib/DateTime/TimeZone/Asia/Famagusta.pm
 b/lib/DateTime/TimeZone/Asia/Famagusta.pm
+@@ -3,7 +3,7 @@
+ # DateTime::TimeZone module distribution in the tools/ directory
+ 
+ #
+-# Generated from debian/tzdata/asia.  Olson data version 2017b
++# Generated from debian/tzdata/asia.  Olson data version 2017c
+ #
+ # Do not edit this file directly.
+ #
+@@ -799,18 +799,216 @@
+ ],
+ [
+ 63608965200, #utc_start 2016-09-07 21:00:00 (Wed)
+-DateTime::TimeZone::INFINITY, #  utc_end
++63644922000, #  utc_end 2017-10-29 01:00:00 (Sun)
+ 63608976000, #  local_start 2016-09-08 00:00:00 (Thu)
+-DateTime::TimeZone::INFINITY, #local_end
++63644932800, #local_end 2017-10-29 04:00:00 (Sun)
+ 10800,
+ 0,
+ '+03',
+ ],
++[
++63644922000, #utc_start 2017-10-29 01:00:00 (Sun)
++63657622800, #  utc_end 2018-03-25 01:00:00 (Sun)
++63644929200, #  local_start 2017-10-29 03:00:00 (Sun)
++6365763, #local_end 2018-03-25 03:00:00 (Sun)
++7200,
++0,
++'EET',
++],
++[
++63657622800, #utc_start 2018-03-25 01:00:00 (Sun)
++63676371600, #  utc_end 2018-10-28 01:00:00 (Sun)
++63657633600, #  local_start 2018-03-25 04:00:00 (Sun)
++63676382400, #local_end 2018-10-28 04:00:00 (Sun)
++10800,
++1,
++'EEST',
++],
++[
++63676371600, #utc_start 2018-10-28 01:00:00 (Sun)
++63689677200, #  utc_end 2019-03-31 01:00:00 (Sun)
++63676378800, #  local_start 2018-10-28 03:00:00 (Sun)
++63689684400, #local_end 2019-03-31 03:00:00 (Sun)
++7200,
++0,
++'EET',
++],
++[
++63689677200, #utc_start 201

Bug#862961: jessie-pu: package libembperl-perl/2.5.0-4+deb8u1

2017-08-08 Thread gregor herrmann
On Tue, 08 Aug 2017 15:44:48 -0400, Adam D. Barratt wrote:

> > > I'm attaching the full new debdiff, and I'm looping in Axel for a sanity
> > > check.
> > I won't be tagging this bug report with +confirmed right away, since we're
> > awaiting for some more feedback, but the proposed changes look good to me.
> Me too. Based on the subsequent responses, please go ahead.

Thank you! Uploaded.

Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   


signature.asc
Description: Digital Signature


Bug#866389: transition: perl 5.26

2017-07-20 Thread gregor herrmann
On Thu, 20 Jul 2017 10:43:30 +1000, Paul Wise wrote:

> On Thu, Jul 20, 2017 at 5:04 AM, gregor herrmann wrote:
> > #867213: syslog-ng-incubator: one rdep (syslog-ng). No reaction on
> >  the bug report, unrelated build failure; I guess syslog-ng*
> >  can be removed from testing if noone fixes the problem in
> >  time.
> I'd like to point out that DSA relies on syslog-ng on debian.org
> hosts, so it would be appreciated if the issues could be fixed or
> worked around rather than removing syslog-ng from buster. Of course
> buster is not in use on any debian.org hosts yet.

Good news: Some hours ago the maintainer added a note about a local
fix to the bug log and tagged the bug pending.


Cheers,
gregor 

-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   BOFH excuse #286:  Telecommunications is downgrading. 



Bug#866389: transition: perl 5.26

2017-07-19 Thread gregor herrmann
On Fri, 14 Jul 2017 22:52:49 +0300, Niko Tyni wrote:

> On Fri, Jul 14, 2017 at 10:50:16AM +0200, Emilio Pozuelo Monfort wrote:
> > 
> > Thanks. Please go ahead and bump them to severity:serious as we are close to
> > doing this.
> 
> Thanks, done.

Update re blocking bugs: In a couple of hours the last 4 NMUs will
leave DELAYED. The remaining buggy packages, already targetted for
auto-removal, then are:

#826473: kdesrc-build: no rdepends, can be removed from testing (or
 maybe even from the archive, according to the bug log).

#867213: syslog-ng-incubator: one rdep (syslog-ng). No reaction on
 the bug report, unrelated build failure; I guess syslog-ng*
 can be removed from testing if noone fixes the problem in
 time.

So I think from the point of view of blockers we are basically ready.


Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   


signature.asc
Description: Digital Signature


Bug#862961: jessie-pu: package libembperl-perl/2.5.0-4+deb8u1

2017-07-14 Thread gregor herrmann
On Thu, 13 Jul 2017 13:05:31 +0200, Axel Beckert wrote:

> Cyril Brulebois wrote:
> > gregor herrmann <gre...@debian.org> (2017-06-28):

> > > #v+
> > > --- a/debian/zembperl.load.in
> > > +++ b/debian/zembperl.load.in
> > > @@ -1,6 +1,6 @@
> > >  # The sucky "zembperl" name is so we load after perl
> > > 
> > > -# Depends: perl
> > > +# Recommends: perl
> > > 
> > >  
> > >LoadModule embperl_module @ARCHLIB@/auto/Embperl/Embperl.so
> > > #v-
> > > 
> > > 
> > > I've now tentatively changed d/changelog to say
> > > 
> > > #v+
> > >   * Change hard dependency on mod_perl in zembperl.load to Recommends.
> > > mod_perl is not required, and is enabled by default anyway if it is
> > > installed.
> > > This change matches the package dependencies and fixes an installation
> > > failure when libapache2-mod-perl2 is not installed.
> > > (Closes: #810655)
> > > #v-
> > > 
> > > 
> > > Does this make sense?
> > 
> > I think the situation is clearer with your explanations above, and the
> > changes+changelog look in sync and reasonable.
> 
> *nod* Looks fine to me, too.

Thanks Axel for checking and confirming!
 

Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: Frank Zappa: Theme from RUN HOME SLOW


signature.asc
Description: Digital Signature


Bug#866389: transition: perl 5.26

2017-07-02 Thread gregor herrmann
On Fri, 30 Jun 2017 12:39:09 +0200, Emilio Pozuelo Monfort wrote:

> We need to distinguish among blockers and non-blockers in that list. E.g.,
> "fails to run with perl 5.26" is a blocker, but "uses a deprecated feature" is
> not. 

Just for clarification, most of the bugs which have "deprecated" in
the title will fail to run with 5.26; IOW: the warnings are from
5.24, and in 5.26 the issues become fatal.


Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: Solomon Burke: Flesh And Blood


signature.asc
Description: Digital Signature


Bug#863049: jessie-pu: package shutter/0.92-0.1+deb8u2

2017-06-30 Thread gregor herrmann
On Fri, 30 Jun 2017 02:03:34 +0200, Cyril Brulebois wrote:

> > So I propose to proceed with the upload to jessie with the proposed
> > changes, if that's ok for KiBi.
> Sure, feel free to go ahead.

Thank you; uploaded (before going to bed and without sending _this_
mail :))

Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: Ry Cooder: Available Space


signature.asc
Description: Digital Signature


Bug#863049: jessie-pu: package shutter/0.92-0.1+deb8u2

2017-06-29 Thread gregor herrmann
On Thu, 29 Jun 2017 09:11:43 +0200, Dominique Dumont wrote:

> On Wednesday, 28 June 2017 20:15:01 CEST gregor herrmann wrote:
> > I suppose yes, in order to make sure that the script waits for
> > nautilus-sendto to return, as the return value is checked in the next line.
> Indeed. The only drawback is that shutter will hang while the mail is sent by 
> nautilus-sendto. Depending on network condition, this may be noticeable by 
> user.

Thanks for the confirmation.
 

So I propose to proceed with the upload to jessie with the proposed
changes, if that's ok for KiBi.


Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: Bruce Springsteen & The E Street Band: Brilliant Disguise


signature.asc
Description: Digital Signature


Bug#863049: jessie-pu: package shutter/0.92-0.1+deb8u2

2017-06-28 Thread gregor herrmann
On Wed, 28 Jun 2017 01:27:42 +0200, Cyril Brulebois wrote:

> gregor herrmann <gre...@debian.org> (2017-05-20):
> > I've prepared an upload of shutter for stable. The new version
> > includes two patches:
> > - one fixing CVE-2016-10081 / #849777
> > - another one which dod uploaded together with this one as 0.93.1-1.3
> >   in January which is also security relevant (replaces
> >   system("string") with system(@array)).
> That's a long patch… Comments below (see last hunk, mainly).

Thanks for taking the time to go through the patch in detail!
 
> > + sub nautilus_sendto {
> > +   my ( $self, $user_data ) = @_;
> > +-  system("nautilus-sendto $user_data &");
> > ++  system('nautilus-sendto', $user_data);
> > +   if($?){
> > +   my $response = $self->{_dialogs}->dlg_error_message( 
> > +   sprintf( $self->{_d}->get("Error while executing %s."), 
> > "'nautilus-sendto'"),
> 
> Was the '&' really meant to go away?

I suppose yes, in order to make sure that the script waits for nautilus-sendto
to return, as the return value is checked in the next line.

And/or because it simply doesn't work, as adding a '&' would be
interpreted as an argument:


#v+
#!/usr/bin/perl

use strict;
use warnings;

my $args='-ls';

print "string\n";
system( "ls $args &" ) == 0 or die "system(string) failed: $?";
#-

% perl background.pl
string
total 4 
  
4 -rw-rw-r-- 1 gregoa gregoa 234 Jun 28 20:10 background.pl


vs.


#v+
#!/usr/bin/perl

use strict;
use warnings;

my $args='-ls';

print "list\n";
system( 'ls', '-la', '&' ) == 0 or die "system(list) failed: $?";
#v-

% perl background.pl
list
ls: cannot access '&': No such file or directory
system(list) failed: 512 at background.pl line 9.


So yes, this seems intended :)


Nevertheless looping in dod as the author of this patch.


Cheers,
gregor


-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: Ben Weaver: Voice In The Wilderness


signature.asc
Description: Digital Signature


Bug#862961: jessie-pu: package libembperl-perl/2.5.0-4+deb8u1

2017-06-28 Thread gregor herrmann
On Wed, 28 Jun 2017 00:51:33 +0200, Cyril Brulebois wrote:

> > I've prepared an update for libembperl-perl in jessie to fix #810655
> > there as well. The changes are just the targetted fix taken from -5
> > without changes. Full debdiff attached.
> 
> > diff --git a/debian/changelog b/debian/changelog
> > index b59bf9e..e296d69 100644
> > --- a/debian/changelog
> > +++ b/debian/changelog
> > @@ -1,3 +1,11 @@
> > +libembperl-perl (2.5.0-4+deb8u1) UNRELEASED; urgency=medium
> > +
> > +  [ Axel Beckert ]
> > +  * Drop hard a2enmod dependency on mod_perl in zembperl.load. mod_perl is
> > +    enabled by default anyways if installed. (Closes: #810655)
> > +
> > + -- gregor herrmann <gre...@debian.org>  Fri, 19 May 2017 13:09:03 +0200
> > +
> 
> I haven't matched this to code changes at first glance. For the sake of
> clarity: this relates to the Depends → Recommends update, because code
> was added to “apache2_invoke enmode perl” where needed?

Thanks for asking; this made me look at the changes again, and made
me realize that I made a mistake (I took only one of Axel's commits
between 2.5.0-4 and 2.5.0-5 but there were actually three). Sorry for
that.
 
> (The second sentence makes it look like this /was/ the case already,
> while this seems to /become/ the case with this particular upload
> AFAIUI.)

The problem in #810655, as I understand it, is that d/control has
libapache2-mod-perl2 in Recommends (which is correct as embperl
doesn't require it) but that embperl's
/etc/apache2/mods-available/zembperl.load unconditionally tried to
load mod_perl.
 

Axel has in a later commit removed the changes in libembperl-perl.postinst
again, after verifying that embperl installs without mod_perl, with
mod_perl installed and activated and with mod_perl installed but
disabled.


So the only remaining code change is actually:

#v+
--- a/debian/zembperl.load.in
+++ b/debian/zembperl.load.in
@@ -1,6 +1,6 @@
 # The sucky "zembperl" name is so we load after perl

-# Depends: perl
+# Recommends: perl

 
   LoadModule embperl_module @ARCHLIB@/auto/Embperl/Embperl.so
#v-


I've now tentatively changed d/changelog to say

#v+
  * Change hard dependency on mod_perl in zembperl.load to Recommends.
mod_perl is not required, and is enabled by default anyway if it is
installed.
This change matches the package dependencies and fixes an installation
failure when libapache2-mod-perl2 is not installed.
(Closes: #810655)
#v-


Does this make sense?


I'm attaching the full new debdiff, and I'm looping in Axel for a
sanity check.


Cheers,
gregor


-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: Tom Waits: Sins Of My Father
diff --git a/debian/changelog b/debian/changelog
index b59bf9e..b2e9d48 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+libembperl-perl (2.5.0-4+deb8u1) UNRELEASED; urgency=medium
+
+  [ Axel Beckert ]
+  * Change hard dependency on mod_perl in zembperl.load to Recommends.
+mod_perl is not required, and is enabled by default anyway if it is
+installed.
+This change matches the package dependencies and fixes an installation
+failure when libapache2-mod-perl2 is not installed.
+(Closes: #810655)
+
+ -- gregor herrmann <gre...@debian.org>  Fri, 19 May 2017 13:09:03 +0200
+
 libembperl-perl (2.5.0-4) unstable; urgency=low
 
   [ Salvatore Bonaccorso ]
diff --git a/debian/zembperl.load.in b/debian/zembperl.load.in
index ce9542b..91bb120 100644
--- a/debian/zembperl.load.in
+++ b/debian/zembperl.load.in
@@ -1,6 +1,6 @@
 # The sucky "zembperl" name is so we load after perl
 
-# Depends: perl
+# Recommends: perl
 
 
   LoadModule embperl_module @ARCHLIB@/auto/Embperl/Embperl.so


signature.asc
Description: Digital Signature


Bug#862997: jessie-pu: package libx11-protocol-other-perl/28-1+deb8u1

2017-06-28 Thread gregor herrmann
On Wed, 28 Jun 2017 01:13:37 +0200, Cyril Brulebois wrote:

> gregor herrmann <gre...@debian.org> (2017-05-19):
> > I've prepared an update for libx11-protocol-other-perl in jessie to
> > fix #848060. The only change is to disable a brittle test via
> > debian/rules in order to avoid test/build failures.
> This looks good to me, feel free to upload (targetting jessie); thanks.

Thanks, uploaded.


Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: Didier Squiban: Marche des conscrits du Faoutet


signature.asc
Description: Digital Signature


Bug#862986: jessie-pu: package libdata-faker-perl/0.10-1+deb8u1

2017-06-28 Thread gregor herrmann
On Wed, 28 Jun 2017 01:07:24 +0200, Cyril Brulebois wrote:

> gregor herrmann <gre...@debian.org> (2017-05-19):
> > I've prepared an update for libdata-faker-perl which makes sure that
> > tests are run under the C locale in order to avoid test failures as
> > in #808454.
> This looks good to me, feel free to upload (targetting jessie); thanks.

Thanks! Uploaded.


Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   


signature.asc
Description: Digital Signature


Bug#862983: jessie-pu: package libsys-syscall-perl/0.25-2+deb8u1

2017-06-28 Thread gregor herrmann
On Wed, 28 Jun 2017 01:05:23 +0200, Cyril Brulebois wrote:

> gregor herrmann <gre...@debian.org> (2017-05-19):
> > I've prepared an update for libsys-syscall-perl that adds support for
> > more architectures where the package is silently broken in stable
> > right now. The patches are taken unchanged from testing/sid.
> > Fixed bugs: #824843, #824936, #826136
> This looks good to me, feel free to upload (targetting jessie).

Thank you; uploaded.


Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: Eagles


signature.asc
Description: Digital Signature


Bug#862976: jessie-pu: package libhttp-proxy-perl/0.301-1+deb8u1

2017-06-28 Thread gregor herrmann
On Wed, 28 Jun 2017 00:59:29 +0200, Cyril Brulebois wrote:

> gregor herrmann <gre...@debian.org> (2017-05-19):
> > I've prepared an update for libhttp-proxy-perl in jessie to fix
> > #788350. The update adds a patch from the recent upstream release
> > (which is in testing/unstable, and we've also used the patch before
> > it was released). Full debdiff attached.
> This looks good to me, feel free to upload (targetting jessie).

Thank you; uploaded.


Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: Bruce Springsteen: Secret Garden


signature.asc
Description: Digital Signature


Bug#862964: jessie-pu: package libhtml-microformats-perl/0.105-2+deb8u1

2017-06-28 Thread gregor herrmann
On Wed, 28 Jun 2017 00:56:22 +0200, Cyril Brulebois wrote:

> > I've prepared an update of libhtml-microformats-perl in stable to fix
> > #783656. The only change is the addition of the missing dependency.
> This looks good to me, feel free to upload (targetting jessie).

Thank you; uploaded.


Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: Van Morrison


signature.asc
Description: Digital Signature


Bug#862960: jessie-pu: package libcgi-application-plugin-anytemplate-perl/0.18-1+deb8u1

2017-06-28 Thread gregor herrmann
On Wed, 28 Jun 2017 00:46:01 +0200, Cyril Brulebois wrote:

> > I've prepared an update for libcgi-application-plugin-anytemplate-perl
> > in stable to fix #788008. Complete debdiff attached.
> This looks good to me, but please remember to target jessie.
> Feel free to upload, thanks.

Thank you! Uploaded.


Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: Beatles


signature.asc
Description: Digital Signature


Bug#863049: jessie-pu: package shutter/0.92-0.1+deb8u2

2017-05-20 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've prepared an upload of shutter for stable. The new version
includes two patches:
- - one fixing CVE-2016-10081 / #849777
- - another one which dod uploaded together with this one as 0.93.1-1.3
  in January which is also security relevant (replaces
  system("string") with system(@array)).

Full debdiff attached.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlkgqZJfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgbWNA/8DPTaKOesYQ4tMjj580foTMqUu+G3qEk/UgqFhkhAFNoBXRJKVPiF4tkL
V10CgEpEySMee18bVLSk08nWb0NJmuP8OSlcw43nspI2nRZIum7Vnsyf9rhOEd2o
0SzW8Z1/cNsRWhgy2UP5esinZmu9/djJBmSfc5E7bzH3tIYHc0H2wfnhys3uYOLk
yyoCZf5u1JA/cTFRcIgGmX60PhrtZMPRtN3x63JYKCOqGPR4rBrb9aii4etKetEh
lXMj8hF2ZShnJDXTXuI+rtq5i3KPuAhBr5bjqXuQJ4g2C8L1KHG9HYQB5XZNaafn
7oOa39fQXVA52hf/WBM6y+YICkO2EuVS+6bNcEJfWQaQN19NX/YdpkkzxCyuv3/Q
rMNRHt9B3tZDeD99tGhvG8RbKyZbfbML+xfcOELLXNZhf+LjWb6hE4rtLJUirgB6
7FmiQwvOLPZc1tHXjLGEC6cvUt7jI95ZOCiQc/OtxrWPmRmJH88mYQJP1EQA0+gm
RBQf6PlDvKMN+9/zPZxhK4lZbuQz6NN27B1De9f5kB2hESQphzCBpVqSs4ytsekc
hGYGFt98igVGrZo244Of3FOSCZd0fxFCzaxOm0R2op/Z+AQgMmhiPY+0bO2fWYTc
dkbLqtxwNZQEh3vesb08NN1bZUeXRshybi85g9TIam5QQBKFs64=
=KPfu
-END PGP SIGNATURE-
diff --git a/debian/changelog b/debian/changelog
index 009a696..af656ed 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+shutter (0.92-0.1+deb8u2) UNRELEASED; urgency=medium
+
+  [ Dominique Dumont ]
+  * add patch to fix CVE-2016-10081 (Closes: #849777)
+  * add patch to secure system() calls
+
+ -- gregor herrmann <gre...@debian.org>  Sat, 20 May 2017 22:30:53 +0200
+
 shutter (0.92-0.1+deb8u1) jessie; urgency=high
 
   * Fix insecure usage of system(). Closes: #798862 [CVE-2015-0854]
diff --git a/debian/patches/CVE-2016-10081.patch 
b/debian/patches/CVE-2016-10081.patch
new file mode 100644
index 000..edd2ff8
--- /dev/null
+++ b/debian/patches/CVE-2016-10081.patch
@@ -0,0 +1,42 @@
+Bug: https://bugs.launchpad.net/shutter/+bug/1652600
+Bug-Debian: https://bugs.debian.org/849777
+Author: Christoph Biedl <debian.a...@manchmal.in-ulm.de>
+Description: fix insecure use of perl exec()
+ The patch attached uses the multi-argument invocation and also changes
+ it in the code path for non-Perl plugins.
+--- a/bin/shutter
 b/bin/shutter
+@@ -7159,8 +7159,13 @@
+ elsif ( $pid == 0 ) {
+ 
+ #see Bug #661424
+-my $qfilename = quotemeta $session_screens{$key}->{'long'};
+-exec( sprintf( "$^X $plugin_value %d $qfilename 
$session_screens{$key}->{'width'} $session_screens{$key}->{'height'} 
$session_screens{$key}->{'filetype'}\n", $socket->get_id ) );
++#my $qfilename = quotemeta $session_screens{$key}->{'long'};
++exec( $^X, $plugin_value,
++$socket->get_id,
++$session_screens{$key}->{'long'},
++$session_screens{$key}->{'width'},
++$session_screens{$key}->{'height'},
++$session_screens{$key}->{'filetype'} );
+ }
+ 
+ $sdialog->show_all;
+@@ -7193,11 +7198,15 @@
+ my $plugin_process = Proc::Simple->new;
+ 
+ #see Bug #661424
+-my $qfilename = quotemeta $session_screens{$key}->{'long'};
++#my $qfilename = quotemeta $session_screens{$key}->{'long'};
+ 
+ $plugin_process->start(
+ sub {
+-system("'$plugin_value' $qfilename 
'$session_screens{$key}->{'width'}' '$session_screens{$key}->{'height'}' 
'$session_screens{$key}->{'filetype'}' ");
++system( $plugin_value,
++$session_screens{$key}->{'long'},
++$session_screens{$key}->{'width'},
++$session_screens{$key}->{'height'},
++$session_screens{$key}->{'filetype'} );
+ POSIX::_exit(0);
+ }
+ );
diff --git a/debian/patches/fix-perl-system-calls 
b/debian/patches/fix-perl-system-calls
new file mode 100644
index 000..6de4ac5
--- /dev/null
+++ b/debian/patches/fix-perl-system-calls
@@ -0,0 +1,268 @@
+Author: dod
+Description: Fix perl system calls
+ This patch replaces all system("big string") calls to 
+ system(@big_list) in all plugins to avoid problems similar to CVE-2016-10081.
+--- a/share/shutter/resources/system/plugins/perl/sppolaroid/sppolaroid
 b/share/shutter/resources/system/plugins/perl/sppolaroid/sppolaroid
+@@ -349,9 +349,6 @@
+ 
+ sub apply_effect {
+ 
+-  #quote filename
+-  my $qfilename = 

Bug#862997: jessie-pu: package libx11-protocol-other-perl/28-1+deb8u1

2017-05-19 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've prepared an update for libx11-protocol-other-perl in jessie to
fix #848060. The only change is to disable a brittle test via
debian/rules in order to avoid test/build failures.

Full debdiff attached.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlkfUYtfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgbbFQ/+N314RF9UUhXc4y4fom6YRkoKOvs5wr+qIvnU6wNG9i9Z7414OzXGirZ5
EAF/omMD3Y86UyqAHDXayHTvGDgUGIdJ9X+WBOOVd51wnU3Rp1i5Qbqa7RhzWrzs
lj8Z1kjpW6ECzaeWE/ElXchrAdwPszlisqx+EH2nYbuGkFGq5sSwri8abcEMdt4D
15jnoZ2MD3FcPBYqUv1rrS1rAfaGCgTqG63XMXY6OBGkPBBYMwk3VnjPFQDlOJ5g
IucX7uY7xcaNneXognWXEEIhcigO3GbZn08o/qf/c4MM7A9+hzq0lEDglH+tV4KU
djkzX2Bp3tLIlAp0LC6/82CRycvNmkHmJmOmxv825PA0DPK3JhIfDAZMHLh0jZQR
tUrJfLQfxJXy2GxkVRUwy6bV0jLfqqvObqF6NFSF83JOLR7howZ/ytDZ6cEwFAAO
ybhKtytetTn12VG7Gs5iXJELb8Dr8o4XnSmJY/LgoB6SXTNZULPn3PWkTuGFMsK3
Lu0DB21p+hPQBNFv04h+wRR78HrLDMs1GT83cP9o6HAvxqS7Y8UGkO6fgMwAk0Om
M2FGft2Q7j3IBLu+JaJ1tj75eh5vtEUWHAF/UXRhmQftFIIh2fq0kJJ14R/jTeGi
vJUWo8/QvT5BwOq6STBHM//+b+cmn0pVMMaddh0LJqoGbJgCq68=
=K9bF
-END PGP SIGNATURE-
diff --git a/debian/changelog b/debian/changelog
index 4afdeec..d31f2d2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+libx11-protocol-other-perl (28-1+deb8u1) UNRELEASED; urgency=medium
+
+  * Disable t/XSetRoot.t during build and autopkgtest.
+This test is known to have problems with xvfb.
+Thanks to Santiago Vila for the bug report. (Closes: #848060)
+
+ -- gregor herrmann <gre...@debian.org>  Fri, 19 May 2017 22:07:14 +0200
+
 libx11-protocol-other-perl (28-1) unstable; urgency=low
 
   * Initial Release. (Closes: #735257)
diff --git a/debian/rules b/debian/rules
index c242220..0228c2a 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,8 +1,10 @@
 #!/usr/bin/make -f
 
+TEST_FILES = $(filter-out t/XSetRoot.t, $(wildcard t/*.t))
+
 %:
dh $@
 
 # The tests need an X server. This provides one even inside a chroot
 override_dh_auto_test:
-   xvfb-run -a dh_auto_test
+   xvfb-run -a dh_auto_test -- TEST_FILES="$(TEST_FILES)"


Bug#862986: jessie-pu: package libdata-faker-perl/0.10-1+deb8u1

2017-05-19 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've prepared an update for libdata-faker-perl which makes sure that
tests are run under the C locale in order to avoid test failures as
in #808454.

Full debdiff attached.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlkfGRVfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYlaBAAiKFmFFmSiGN7PBSpOclK/x8wSPu2JdurnWLHcGa1N4ZOVYYAfK5q6I2t
KvKtQ3fldXeLvzeWxLr5wDsyPZfBPwjdBdsAR/OsTgJmO8P4p1ybXUADCOGmRiR5
zpFRV93zdpbijzU+14gElXHcx6Z7qWVeHOx1aMdOUbms+8Rq1YsuE6fwLW9OVnr4
BhB2mJjVguEM5LnxHP1ODdX59HiO7YMuIMu8knlQnrbrh6JvXN7xAiDclbx35T2i
fn8BJLnBud4lp1/FANzQNwQH05DnLX+Pzsbih26wy66WMrOtRlKJQgt2XrlkG2IM
3c++KKkaeMqlQoeBX9dItyAMlkVlRFPZ6i6szDcIV/IL0kbX4VM3Jy2eBM9JhGeW
oOjWHSaQ9930+53JmX2iaV7IvJsVrLMMzq40ZOwzZT4A8sZujGDD2GtAdgxw2IMg
qYjnkpKwqz6KanLpZ2HlfWGu9XPudUsvt3ojx2FiKa2xcZRlSInj6xaxVSRd7Mn+
p0ETcvgHB3Dk1YTjbE36JvWbQ35mZudikgAxBoAPKAwMZ7E7H+l4o0akdmCM/SnQ
3k6RMEXiRWwAauazKA1IAnGA5/UIARt0TQ2PZHTUGI6ibdmWblyQqh7h+IZUqlHH
IDOr6AOvsc1qh1huImFREXeIShma0nwBVCs/KwPYz9wKFhvF95o=
=xKMJ
-END PGP SIGNATURE-
diff --git a/debian/changelog b/debian/changelog
index c0a7a6d..34c969a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libdata-faker-perl (0.10-1+deb8u1) UNRELEASED; urgency=medium
+
+  * Set C locale for tests. Thanks to Chris Lamb for the bug report.
+(Closes: #808454)
+
+ -- gregor herrmann <gre...@debian.org>  Fri, 19 May 2017 18:07:24 +0200
+
 libdata-faker-perl (0.10-1) unstable; urgency=low
 
   * Team upload.
diff --git a/debian/rules b/debian/rules
index 2d33f6a..cf29635 100755
--- a/debian/rules
+++ b/debian/rules
@@ -2,3 +2,6 @@
 
 %:
dh $@
+
+override_dh_auto_test:
+   LC_ALL=C dh_auto_test


Bug#862983: jessie-pu: package libsys-syscall-perl/0.25-2+deb8u1

2017-05-19 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've prepared an update for libsys-syscall-perl that adds support for
more architectures where the package is silently broken in stable
right now. The patches are taken unchanged from testing/sid.
Fixed bugs: #824843, #824936, #826136

Full debdiff attached.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlkfE1FfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgZZyA//YureJo+THPupOQNis9cwDflnHBYl9sprvnrgJyqetYHZtOG0AKGZGtrH
hd9yC1niHX6fuC3d7HjUvV/VMoTvIJ9T/VvLaPZY5o8J/8+UoTg/8wCvur8m49AW
gTioJrmr3VROPUwqLmYzv8FFsuBf7qToWqvOrglfDT8fOdQV18+E0gm/4v5AO1G5
SeBEulKAKMy0OOuGmXJu99rLvkrA+OMl0kafVJAJN7APwG6NGZYaxK6gfJ/HFmEG
wkYONiStjfDU08jVOf6etYD6ifAoOTUE6Fooh2XTk0HCrG+DRyy8qJcbVfegmdQx
Ie/l0ydFUbHyykZaQ+G4MDAHmoR+9kQw6CjtgWqCJYDh6iNwiKyQQPyryonAbgSW
+3HenRqCveLbIemR27+ox0zrxJOktAXdhMYzMXTONe/xv3poJVqr9wop/5ataIQq
LP1MQ3T4TBDjRHQNAU33N0DU5B1sKTIqvQoMR9n2+dZunP20N7wtV9b9rzGzYKpW
8BeFCSxT+JcXqGk3UIgkFFzrDc1alS+KEx19Bs/qKWeQMs8Dfnf3znHqSafChOr2
a8CdOUu64Tl1tvXAzzzZ0G9cpuPpdearUgZwBksx9PUfIyLpZpk6OWmNF2VkMFEB
v8ra3jP4Hcs5rcjyo/d43+fChGHfdCOhn21fdWWZ22phZ/G1WV8=
=l9KN
-END PGP SIGNATURE-
diff --git a/debian/changelog b/debian/changelog
index 713dd5e..17db76a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+libsys-syscall-perl (0.25-2+deb8u1) UNRELEASED; urgency=medium
+
+  * Add patches (from -3, -4, and -6) to support more architectures.
+aarch64.patch, hppa.patch, mips.patch, ppc64le.patch, s390x.patch.
+(Closes: #824843, #824936, #826136)
+
+ -- gregor herrmann <gre...@debian.org>  Fri, 19 May 2017 17:33:52 +0200
+
 libsys-syscall-perl (0.25-2) unstable; urgency=medium
 
   [ gregor herrmann ]
diff --git a/debian/patches/aarch64.patch b/debian/patches/aarch64.patch
new file mode 100644
index 000..c2423e0
--- /dev/null
+++ b/debian/patches/aarch64.patch
@@ -0,0 +1,70 @@
+From 6c7c516edfabd2edc835d0aaad39f946164bb25d Mon Sep 17 00:00:00 2001
+From: Yaakov Selkowitz <yselk...@redhat.com>
+Date: Fri, 4 Dec 2015 02:31:28 -0600
+Subject: [PATCH 3/3] Add aarch64 support
+
+This is a bit complicated because AArch64, as a completely new architecture,
+does not support the deprecated epoll_create and epoll_wait syscalls.
+Instead, these wrap the epoll_create1 and epoll_pwait syscalls, which serve
+the same purpose but with slightly different syntaxes.
+
+Origin: backport, 
https://github.com/bradfitz/sys-syscall/commit/6c7c516edfabd2edc835d0aaad39f946164bb25d
+Bug-Debian: https://bugs.debian.org/824843
+---
+ lib/Sys/Syscall.pm | 19 +--
+ 1 file changed, 17 insertions(+), 2 deletions(-)
+
+diff --git a/lib/Sys/Syscall.pm b/lib/Sys/Syscall.pm
+index 702e835..abd010a 100644
+--- a/lib/Sys/Syscall.pm
 b/lib/Sys/Syscall.pm
+@@ -48,6 +48,8 @@ our (
+  $SYS_readahead,
+  );
+ 
++our $no_deprecated = 0;
++
+ if ($^O eq "linux") {
+ # whether the machine requires 64-bit numbers to be on 8-byte
+ # boundaries.
+@@ -101,6 +103,14 @@ if ($^O eq "linux") {
+ $SYS_epoll_wait   = 409;
+ $SYS_readahead= 379;
+ $u64_mod_8= 1;
++} elsif ($machine eq "aarch64") {
++$SYS_epoll_create = 20;  # (sys_epoll_create1)
++$SYS_epoll_ctl= 21;
++$SYS_epoll_wait   = 22;  # (sys_epoll_pwait)
++$SYS_sendfile = 71;  # (sys_sendfile64)
++$SYS_readahead= 213;
++$u64_mod_8= 1;
++$no_deprecated= 1;
+ } elsif ($machine =~ m/arm(v\d+)?.*l/) {
+ # ARM OABI
+ $SYS_epoll_create = 250;
+@@ -203,7 +213,7 @@ sub epoll_defined { return $SYS_epoll_create ? 1 : 0; }
+ # size doesn't even matter (radix tree now, not hash)
+ sub epoll_create {
+ return -1 unless defined $SYS_epoll_create;
+-my $epfd = eval { syscall($SYS_epoll_create, ($_[0]||100)+0) };
++my $epfd = eval { syscall($SYS_epoll_create, $no_deprecated ? 0 : 
($_[0]||100)+0) };
+ return -1 if $@;
+ return $epfd;
+ }
+@@ -241,7 +251,12 @@ sub epoll_wait_mod8 {
+ $epoll_wait_size = $_[1];
+ $epoll_wait_events = "\0" x 16 x $epoll_wait_size;
+ }
+-my $ct = syscall($SYS_epoll_wait, $_[0]+0, $epoll_wait_events, $_[1]+0, 
$_[2]+0);
++my $ct;
++if ($no_deprecated) {
++$ct = syscall($SYS_epoll_wait, $_[0]+0, $epoll_wait_events, $_[1]+0, 
$_[2]+0, undef);
++} else {
++$ct = syscall($SYS_epoll_wait, $_[0]+0, $epoll_wait_events, $_[1]+0, 
$_[2]+0);
++}
+ for (0..$ct-1) {
+ # 16 byte epoll_event structs, with format:
+ #4 byte mask [idx 1]
+-- 
+2.8.1
+
diff --git a/debian/patches/hppa.patch b/debian/patches/hppa.patch
new file mode 100644
index 000..b

Bug#862976: jessie-pu: package libhttp-proxy-perl/0.301-1+deb8u1

2017-05-19 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've prepared an update for libhttp-proxy-perl in jessie to fix
#788350. The update adds a patch from the recent upstream release
(which is in testing/unstable, and we've also used the patch before
it was released). Full debdiff attached.

Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlke/epfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYLzg/9HYuhzXIoy+VpwwGjdo+gb44frK3nhn7tK3GySsxsbGXXAL+yjmiNjo8C
CeiU621CEAow+c0e1prIcevforauy1nSqHe/rw18iI+1pTSZJE5IYsIVgXGiRzJ+
eYQBKe/JoAWc4yid6CZ58HS2ULENvxhSsxHh/fJ9PQnGkQLHMGNJg3cBftiFS8li
dAtokFh0Fw5qGDFX0sWjZvoTMIyC/KHKEuFdQMcMLCiRsMo9rP/YNXSsDFfdhbMi
rZs3K6vTcKasJ1jDjgvjdhl6FJVqiUL95xtee2WbBWh2RpGbpCsCyi6jKq66Eoah
hxVu1E2kYFjmxSCsh6woCEbF4w7ezUjyA/5FfJ7Yy5A/DOttgJU2/1/WovUQ/k9K
zRB56z3cJPU0iPyezWCyTP079gQbFv77umoJoC0kHx+y25He8Fsv4g8e5oqDdGMf
qG/n50YVvFRWxwpTP6Bjt9P/lGClsPHoAtOn4TgkRCutTwIiReuVpIRotJXPIe9E
YxSC9j/6aUIPY5GYNqauDnmx9U4UeBNPzJsT4kgcXu0BeZ60HfjNQrd7lzNb1x/S
9pc/4j9lucVl1fpkH30fLSx+SboBe+I/CWfljFGUnF9H+9VWAMiVI5rB3SPFsRyc
MhIgJwWd0yzV71jxyiH/wNqUp+o+TV5nack0+CoPXre6w1a1S6g=
=i7gm
-END PGP SIGNATURE-
diff --git a/debian/changelog b/debian/changelog
index 3ee3d48..80d7b02 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+libhttp-proxy-perl (0.301-1+deb8u1) UNRELEASED; urgency=medium
+
+  * Add patch to fix broken custom 'via' handling.
+(Patch taken from upstream release 0.304.)
+(Closes: #788350)
+
+ -- gregor herrmann <gre...@debian.org>  Fri, 19 May 2017 15:43:44 +0200
+
 libhttp-proxy-perl (0.301-1) unstable; urgency=medium
 
   * New upstream release.
diff --git a/debian/patches/0001-add-port-to-Via-header.patch 
b/debian/patches/0001-add-port-to-Via-header.patch
new file mode 100644
index 000..7e26423
--- /dev/null
+++ b/debian/patches/0001-add-port-to-Via-header.patch
@@ -0,0 +1,38 @@
+From e105876f84220791f2a6b1e64d2a913658c1d269 Mon Sep 17 00:00:00 2001
+From: Slaven Rezic <sla...@rezic.de>
+Date: Fri, 12 Nov 2010 11:37:59 +0100
+Subject: [PATCH] add port to Via header
+
+RFC 2616 kind of suggests to add the port to the Via header if it's not
+the default port:
+
+"If the port is not given, it MAY be assumed to be the default port
+of the received-protocol."
+
+This patch sets the port in the generated Via header if it's not the
+default 80.
+---
+ lib/HTTP/Proxy.pm | 5 -
+ 1 file changed, 4 insertions(+), 1 deletion(-)
+
+--- a/lib/HTTP/Proxy.pm
 b/lib/HTTP/Proxy.pm
+@@ -91,7 +91,6 @@
+ port => 8080,
+ stash=> {},
+ timeout  => 60,
+-via  => hostname() . " (HTTP::Proxy/$VERSION)",
+ x_forwarded_for => 1,
+ );
+ 
+@@ -117,6 +116,10 @@
+ $self->{$_} = exists $params{$_} ? delete( $params{$_} ) : $defaults{$_}
+   for keys %defaults;
+ 
++if (!defined $self->{via}) {
++  $self->{via} = hostname() . ($self->{port} != 80 ? ':' . $self->{port} 
: '') . " (HTTP::Proxy/$VERSION)";
++}
++
+ # choose an engine with the remaining parameters
+ $self->{engine} = HTTP::Proxy::Engine->new( %params, proxy => $self );
+ $self->log( PROXY, "PROXY", "Selected engine " . ref $self->{engine} );
diff --git a/debian/patches/series b/debian/patches/series
index 55d236c..b990146 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1,3 @@
 hashbang.patch
 spelling.patch
+0001-add-port-to-Via-header.patch


Bug#862964: jessie-pu: package libhtml-microformats-perl/0.105-2+deb8u1

2017-05-19 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've prepared an update of libhtml-microformats-perl in stable to fix
#783656. The only change is the addition of the missing dependency.

Full debdiff attached.

Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlke2u9fFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgao8w//QODB4Y54Ug0SWIdmyy7DF+YqyPb06wb7c1AcE0ZwYaj7HdCwnLZOxqqB
EuXlutjYn+iZ6jqMYLK1AfO3bMU/4ctIYg5cLRAjoQcLFnu+2/KUrQmK8Pe4TVMd
V//rPdzHFwUdmrxceHoUDV7g5l9atOo4wHsP3G8Y5wOZMY7FwtDFaUmLyZCuYC5b
a+RcxKugBw3EXhKXW692h81Jb8fD1bJW1dSS8b798v2oit0FbnpLBjrnrPbO/Skr
CNvvQTg6mnsgJk9vx5G4gRR5vvJvSi+h3lNVGbMymj9kZXYvGSaf476822VPblM1
tGO32yfv9mcVssuKrrC2ZsPTwTmPMtBCqr9AQyBSCt5qHRH89c0i8Lsqi7ug5jQj
I0Yfewbi1ZNRrxx0ryBUfl3KsDU/Zfae3RT7lHP9irZymj0P+OBGCRa57cEkOugE
C6PfwOmRQSFLCBwwDCajn7WTYAVFKc88QW7w5pkrd3kMWhcra28zRylLKRPsoR+A
Clqy788b3+xp2/e3mGIsPCbttGUD5AAhhGKEvXjjtkmhFzFGcjDTXGcAhdXsOP6K
gpaj9XsIfXCfFuc7UqamuYRuN1n2XQOZCN7vABXPLkF/vwIVW1GnkSUne5lqVP9I
0qTfyHy5ck1qVSxwyXZZo//+Gm0YTYCanUtWS5h1w0lZajFNmUA=
=jppL
-END PGP SIGNATURE-
diff --git a/debian/changelog b/debian/changelog
index efbbc52..4d2b7d0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libhtml-microformats-perl (0.105-2+deb8u1) UNRELEASED; urgency=medium
+
+  * Add buildtime and runtime dependency on libmodule-pluggable-perl.
+(Closes: #783656)
+
+ -- gregor herrmann <gre...@debian.org>  Fri, 19 May 2017 13:42:25 +0200
+
 libhtml-microformats-perl (0.105-2) unstable; urgency=low
 
   [ Salvatore Bonaccorso ]
diff --git a/debian/control b/debian/control
index 844324a..4bb6f59 100644
--- a/debian/control
+++ b/debian/control
@@ -13,6 +13,7 @@ Build-Depends: cdbs,
  libdatetime-set-perl,
  libhtml-html5-sanity-perl,
  libjson-perl,
+ libmodule-pluggable-perl,
  librdf-trine-perl,
  libxml-libxml-perl,
  liburi-perl,
diff --git a/debian/rules b/debian/rules
index 9d349aa..ea67fcd 100755
--- a/debian/rules
+++ b/debian/rules
@@ -31,7 +31,7 @@ pkg = $(DEB_SOURCE_PACKAGE)
 perl-deps = datetime datetime-format-builder
 perl-deps += datetime-format-natural datetime-format-strptime
 perl-deps += datetime-set html-html5-sanity
-perl-deps += json rdf-trine xml-libxml uri
+perl-deps += json module-pluggable rdf-trine xml-libxml uri
 perl-deps-recommend = rdf-icalendar rdf-kml-exporter rdf-vcard xml-atom-fromowl
 deps = $(patsubst %,$(comma) lib%-perl,$(perl-deps))
 deps +=, libhttp-date-perl | libwww-perl (<< 6)


Bug#862961: jessie-pu: package libembperl-perl/2.5.0-4+deb8u1

2017-05-19 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've prepared an update for libembperl-perl in jessie to fix #810655
there as well. The changes are just the targetted fix taken from -5
without changes. Full debdiff attached.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlke0/FfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgbSgw//acSQN47Vj8siqhUaKCJILhRkL7fsfLMKKrH1qLNrdtsKFj9o/z+YGjuJ
f+ZU0yN3l3SckcQzgFBqlXIStqIoKV2JevIjA93wpV2VEZUOuzfPmXdDgcSd0pcx
g6uIAfXarxYgVKV2fRVQbyMGz1E3+lQk2sbOwCd+VHoED0NiCNFpmmZ5cSB6cEAf
KuurqpwSqOjRXWSLm6T9O0gNNLOT2yUxKH4vCZ+s4XktIktP1fXvVx8sllUGS9Zs
pX2LGMxHL3CgyVxhpF8yTK8GEqqziHVSBIkpYwY7t+dI1PX4qeAol9rL0X3mlISV
HVOxmk3xLx4hPTc6Gon7z5+d8b287+75b4JWR5GhgmmzQo2GnJWR/pE2cNH/6zpb
fW/xK6xWke22ngihrrjXzQEttCAlGa8QtenWjqcKs21Xf/29Qns/o3yptsEdCYwX
K92QzmOvtFNVheRVC5GiOrqyrEw6strcweCWvhrieudjVqrKSOXbpVveFu8RWn5j
xossC0bqeMKgIuj98J7SEcGCAkoNkX6R5w5KyQ/MxC5DYcY+Zl5xiJrXFXyf0WCX
E5FAyA2B5VT6ZJPdwEl9BfMJdd61weZQXAeddN8rgcmdLDEL4+734yiCe5MaaQ9H
fNpP3gYo3L7PCcTNlX1et6hFBXbQgeHKYenOxbJ/ct1m9wMzd+w=
=1qY+
-END PGP SIGNATURE-
diff --git a/debian/changelog b/debian/changelog
index b59bf9e..e296d69 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+libembperl-perl (2.5.0-4+deb8u1) UNRELEASED; urgency=medium
+
+  [ Axel Beckert ]
+  * Drop hard a2enmod dependency on mod_perl in zembperl.load. mod_perl is
+enabled by default anyways if installed. (Closes: #810655)
+
+ -- gregor herrmann <gre...@debian.org>  Fri, 19 May 2017 13:09:03 +0200
+
 libembperl-perl (2.5.0-4) unstable; urgency=low
 
   [ Salvatore Bonaccorso ]
diff --git a/debian/libembperl-perl.postinst b/debian/libembperl-perl.postinst
index 3223cfd..9ce3aee 100644
--- a/debian/libembperl-perl.postinst
+++ b/debian/libembperl-perl.postinst
@@ -11,11 +11,17 @@ if [ "$1" = "configure" ]; then
 # mod_embperl is not thread-safe, requires the prefork MPM
 if [ $(a2query -M) != 'prefork' ] ; then
 if apache2_switch_mpm prefork ; then
+if [ -e /etc/apache2/mods-available/perl.load ]; then
+apache2_invoke enmod perl
+fi
 apache2_invoke enmod zembperl
 else
 apache2_msg err "Could not switch to prefork, not enabling 
mod_embperl (you must use cgi or offline mode to use Embperl)"
 fi
 else
+if [ -e /etc/apache2/mods-available/perl.load ]; then
+apache2_invoke enmod perl
+fi
 apache2_invoke enmod zembperl
 fi
 fi
diff --git a/debian/zembperl.load.in b/debian/zembperl.load.in
index ce9542b..91bb120 100644
--- a/debian/zembperl.load.in
+++ b/debian/zembperl.load.in
@@ -1,6 +1,6 @@
 # The sucky "zembperl" name is so we load after perl
 
-# Depends: perl
+# Recommends: perl
 
 
   LoadModule embperl_module @ARCHLIB@/auto/Embperl/Embperl.so


Bug#862960: jessie-pu: package libcgi-application-plugin-anytemplate-perl/0.18-1+deb8u1

2017-05-19 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've prepared an update for libcgi-application-plugin-anytemplate-perl
in stable to fix #788008. Complete debdiff attached.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlkezdBfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgYg9BAAi6Iwx3Uyrls01UANObnLRS4gYzD4Ze8ak4BlPtaG4iTXWsKRJ19JBsZq
+OPVJeG/qxk1lwveCYMX9H6r9w2i6St81S4BRBH5X38YSwANE7/LuVLlKzllotqY
6ia48XHC13ElvAXNOofoIfxkB4GtCvxQqvlRCV9yb7//0EHswNIJ0gtHsO/WOITc
Tds+MZZKte4J8IMdm/rx9He5w8e7AJWnsZdP7G4RU2z9rkSrVGHGZb1Os34woqDa
r9ulIPD88ezQi1F4yA2qimkWhR/M124CFp5/B5E7J+WFa+nns8QFa4CBDBoP98MO
iIidTG0jOSTkSA3lUabQtugXr7w5gn9V975AZECAcIq69cbLUn9IhTGEjOW1+fI7
Up5uMSt07gJsbYje8naR12RhA/qFwCmV7bAO7KG/KjrLExfl6oktoAMwnOwf15HP
t+zwJwwNEnBmG1tN5BEew5Lt1csXbeJnpOXxrjfWzzJ8I9mC0weqWXr3vJTraOeI
eIolpHi7p/uk/77apDUth8SFLpO2SgSxcxKC0rb06m5kd8QQanKzAgSJcsOlRe4n
Q5i3ORPJYh0/fSp4iPA27kNtZXaJmmQUeqE9m6+4ozS/D5QASDmeWD44I5VKaqmS
mFjyppC21x8109BrXp8iN/cdrxM2lPTjRpQuGNvTd+8R+F808kY=
=ASr7
-END PGP SIGNATURE-
diff --git a/debian/changelog b/debian/changelog
index 43facf0..774d19e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libcgi-application-plugin-anytemplate-perl (0.18-1+deb8u1) UNRELEASED; 
urgency=medium
+
+  * Add missing dependency on libclone-perl | libclone-pp-perl.
+(Closes: #788008)
+
+ -- gregor herrmann <gre...@debian.org>  Fri, 19 May 2017 12:39:39 +0200
+
 libcgi-application-plugin-anytemplate-perl (0.18-1) unstable; urgency=low
 
   * Initial Release. (Closes: #605522)
diff --git a/debian/control b/debian/control
index e879522..1e310ca 100644
--- a/debian/control
+++ b/debian/control
@@ -16,7 +16,8 @@ Vcs-Browser: 
http://svn.debian.org/viewsvn/pkg-perl/trunk/libcgi-application-plu
 Package: libcgi-application-plugin-anytemplate-perl
 Architecture: all
 Depends: ${misc:Depends}, ${perl:Depends}, libcgi-application-perl,
- libcgi-application-basic-plugin-bundle-perl
+ libcgi-application-basic-plugin-bundle-perl,
+ libclone-perl | libclone-pp-perl
 Replaces: libcgi-application-extra-plugin-bundle-perl (<< 0.3)
 Breaks: libcgi-application-extra-plugin-bundle-perl (<< 0.3)
 Suggests: libcgi-application-extra-plugin-bundle-perl (>= 0.3),


Bug#860973: RM: libapache2-authenntlm-perl/0.02-7

2017-04-22 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: rm

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

libapache2-authenntlm-perl doesn't work with Apache 2.4; cf. #857327.
While the specific bug could be fixed that fact that noone has
complained for almost 2 years seems to indicate that noone needs this
package; besides that, upstream is inactive as well.

I already filed #860916 (removal from sid); as the package is broken
in stable, I guess we should remove it from jessie as well.

Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlj7zX5fFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgbz5g//QRTKi1xMeaUy0QpoTernUBbdRiz2TMDfiAIv/tVY1YLprdokftsBFOG2
XY0ZzQW3EHcxwyIVuktWEgZNQB7S3pOchI13xLZYBlsEW1ZafJkuRkX33nehdKBD
G/xrMKREZwTLoyiS8StAWaN2gEleJCDoBZWf0jyWaTRWymGlKb9H5lEEeFKAV50J
Ik+4ZF5vOtQ4TOY0766MkS4GRU0oUQPDJdsYO8YtMVjOLsASeNHPBYBECTIE7W6M
1OwGZSs/HqzLAEqi8nmc/30R87YN2EZtIgaLQQLjTnfDufoaHo7D0wJploQztgU4
2YgyI9vniTf6J+9AufC6fMJAkcjNGUCsszcZ/1Hgc0iyGDZFHBwAa50xWSm9QIhr
mb49WD1I9XJDgnXE0hCyiKC5Cg8gKqYcAG3ojugxnyBGhFE0+fss0Q95nAS783Bv
9S+a7NtXEPn5Cq1pEe3Agl0nG1+wD59TPbms3hZw86wGnwfo5WQTUAFrl8WeC48K
Js8EPMS30ez8SPZMx96KPkZ4Y7Svk2TwvG/evLl1B4gid1/Ky6VQyga91FAzZf1L
2ZabbBOlNCSi6n9/EZHpBdWQO0mLDzkToELAVS6soTxFgTLCbT7ENCTKmt3D6t7y
+sgtOqpj4u452O4I0Uu9gKJI34hEAgi9wqgAv7zufE2CiS/o4xg=
=4O+1
-END PGP SIGNATURE-



Bug#860914: RM: libwww-dict-leo-org-perl/1.39-1

2017-04-21 Thread gregor herrmann
On Fri, 21 Apr 2017 21:38:26 +0200, gregor herrmann wrote:

> - or to remove 1.39-1 from stable, which looks like the logical way
>   to go forward.

Plus providing a backport once stretch is release and 2.00-1 or later
migrated to buster.


Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: The Dubliners: Dirty old town


signature.asc
Description: Digital Signature


  1   2   3   4   >