summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Fredric <kentnl@gentoo.org>2020-07-24 19:22:35 +1200
committerKent Fredric <kentnl@gentoo.org>2020-07-24 19:23:22 +1200
commit73e212f847dcf1c8834cbe36abf48ac9aab02a4e (patch)
treedd2f84293b37639522e40027422808d5acd8f993 /dev-perl/Date-ICal/files
parentnet-analyzer/net-snmp: Fix sub-SLOT (diff)
downloadgentoo-73e212f847dcf1c8834cbe36abf48ac9aab02a4e.tar.gz
gentoo-73e212f847dcf1c8834cbe36abf48ac9aab02a4e.tar.bz2
gentoo-73e212f847dcf1c8834cbe36abf48ac9aab02a4e.zip
dev-perl/Date-ICal: -r bump for EAPI7 & Bug #707790
- EAPI7 - Improve deps - Parallel tests - Fix handling of epoch re bug #707790 Bug: https://bugs.gentoo.org/707790 Package-Manager: Portage-2.3.103, Repoman-2.3.22 Signed-off-by: Kent Fredric <kentnl@gentoo.org>
Diffstat (limited to 'dev-perl/Date-ICal/files')
-rw-r--r--dev-perl/Date-ICal/files/Date-ICal-2.678-timegm-year.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/dev-perl/Date-ICal/files/Date-ICal-2.678-timegm-year.patch b/dev-perl/Date-ICal/files/Date-ICal-2.678-timegm-year.patch
new file mode 100644
index 000000000000..a133c7ec7b11
--- /dev/null
+++ b/dev-perl/Date-ICal/files/Date-ICal-2.678-timegm-year.patch
@@ -0,0 +1,27 @@
+From 9d7e303d13541e9546b303a6eb5508bd23e204a5 Mon Sep 17 00:00:00 2001
+From: Kent Fredric <kentnl@gentoo.org>
+Date: Fri, 24 Jul 2020 18:04:44 +1200
+Subject: Always pass full year to timegm()
+
+Bug: https://rt.cpan.org/Ticket/Display.html?id=124548
+Bug: https://bugs.gentoo.org/707790
+---
+ lib/Date/ICal.pm | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/lib/Date/ICal.pm b/lib/Date/ICal.pm
+index 39844af..fbfdbaf 100755
+--- a/lib/Date/ICal.pm
++++ b/lib/Date/ICal.pm
+@@ -334,7 +334,7 @@ sub epoch {
+
+ $epoch =
+ timegm( $self->sec, $self->min, $self->hour, $self->day,
+- ( $self->month ) - 1, ( $self->year ) - 1900 );
++ ( $self->month ) - 1, $self->year );
+ }
+
+ return $epoch;
+--
+2.27.0
+