You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Without this change, parsing changelog entries such as
Tue Mar 28 07:25:39 WEST 2017 - someone@suse
would produce a Mar 27 date in the .spec file, because
TZ=CET perl -e 'use Date::Parse; print str2time("28 Mar 2017")'
1490652000
considers the local timezone and maps to
date -d @1490652000 -u -Iseconds
2017-03-27T22:00:00+00:00
This patch was done while working on reproducible builds for openSUSE.
0 commit comments