Hello community, here is the log from the commit of package python-Twisted for openSUSE:Factory checked in at 2019-02-02 21:42:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-Twisted (Old) and /work/SRC/openSUSE:Factory/.python-Twisted.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-Twisted" Sat Feb 2 21:42:56 2019 rev:33 rq:668541 version:18.9.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-Twisted/python-Twisted.changes 2018-11-14 14:41:11.674838589 +0100 +++ /work/SRC/openSUSE:Factory/.python-Twisted.new.28833/python-Twisted.changes 2019-02-02 21:42:57.952307370 +0100 @@ -1,0 +2,6 @@ +Thu Jan 24 16:09:14 UTC 2019 - [email protected] + +- test-mktime-invalid-tm_isdst.patch: don't pass invalid tm_isdst value to + mktime (see also bpo-15750) + +------------------------------------------------------------------- New: ---- test-mktime-invalid-tm_isdst.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-Twisted.spec ++++++ --- /var/tmp/diff_new_pack.afrBzM/_old 2019-02-02 21:43:01.028304706 +0100 +++ /var/tmp/diff_new_pack.afrBzM/_new 2019-02-02 21:43:01.040304695 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-Twisted # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -30,6 +30,7 @@ Patch1: skip_MultiCast.patch Patch2: openssl111.patch Patch3: no-pygtkcompat.patch +Patch4: test-mktime-invalid-tm_isdst.patch BuildRequires: %{python_module Automat >= 0.3.0} BuildRequires: %{python_module PyHamcrest >= 1.9.0} BuildRequires: %{python_module appdirs >= 1.4.0} ++++++ test-mktime-invalid-tm_isdst.patch ++++++ Index: Twisted-18.9.0/src/twisted/test/test_log.py =================================================================== --- Twisted-18.9.0.orig/src/twisted/test/test_log.py +++ Twisted-18.9.0/src/twisted/test/test_log.py @@ -456,13 +456,13 @@ class FileObserverTests(LogPublisherTest # Compute a POSIX timestamp for a certain date and time that is # known to occur at a time when daylight saving time is in effect. - localDaylightTuple = (2006, 6, 30, 0, 0, 0, 4, 181, 1) + localDaylightTuple = (2006, 6, 30, 0, 0, 0, 4, 181, -1) daylight = time.mktime(localDaylightTuple) # Compute a POSIX timestamp for a certain date and time that is # known to occur at a time when daylight saving time is not in # effect. - localStandardTuple = (2007, 1, 31, 0, 0, 0, 2, 31, 0) + localStandardTuple = (2007, 1, 31, 0, 0, 0, 2, 31, -1) standard = time.mktime(localStandardTuple) self.assertEqual(
