Hello community,

here is the log from the commit of package python-monotonic for 
openSUSE:Factory checked in at 2019-01-03 18:08:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-monotonic (Old)
 and      /work/SRC/openSUSE:Factory/.python-monotonic.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-monotonic"

Thu Jan  3 18:08:42 2019 rev:7 rq:662446 version:1.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-monotonic/python-monotonic.changes        
2018-12-24 11:39:53.433532044 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-monotonic.new.28833/python-monotonic.changes 
    2019-01-03 18:08:46.780025684 +0100
@@ -1,0 +2,6 @@
+Wed Jan  2 12:46:46 UTC 2019 - Thomas Bechtold <[email protected]>
+
+- update to 1.5:
+  * Only import modules if needed
+
+-------------------------------------------------------------------

Old:
----
  monotonic-1.4.tar.gz

New:
----
  monotonic-1.5.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-monotonic.spec ++++++
--- /var/tmp/diff_new_pack.glmvET/_old  2019-01-03 18:08:47.144025361 +0100
+++ /var/tmp/diff_new_pack.glmvET/_new  2019-01-03 18:08:47.148025357 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-monotonic
 #
-# 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
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-monotonic
-Version:        1.4
+Version:        1.5
 Release:        0
 Summary:        An implementation of time.monotonic() for Python 2 & < 33
 License:        Apache-2.0

++++++ monotonic-1.4.tar.gz -> monotonic-1.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/monotonic-1.4/PKG-INFO new/monotonic-1.5/PKG-INFO
--- old/monotonic-1.4/PKG-INFO  2017-10-30 20:10:18.000000000 +0100
+++ new/monotonic-1.5/PKG-INFO  2018-05-03 22:55:25.000000000 +0200
@@ -1,12 +1,11 @@
 Metadata-Version: 1.1
 Name: monotonic
-Version: 1.4
+Version: 1.5
 Summary: An implementation of time.monotonic() for Python 2 & < 3.3
 Home-page: https://github.com/atdt/monotonic
 Author: Ori Livneh
 Author-email: [email protected]
 License: Apache
-Description-Content-Type: UNKNOWN
 Description: 
         monotonic
         ~~~~~~~~~
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/monotonic-1.4/monotonic.egg-info/PKG-INFO 
new/monotonic-1.5/monotonic.egg-info/PKG-INFO
--- old/monotonic-1.4/monotonic.egg-info/PKG-INFO       2017-10-30 
20:10:18.000000000 +0100
+++ new/monotonic-1.5/monotonic.egg-info/PKG-INFO       2018-05-03 
22:55:25.000000000 +0200
@@ -1,12 +1,11 @@
 Metadata-Version: 1.1
 Name: monotonic
-Version: 1.4
+Version: 1.5
 Summary: An implementation of time.monotonic() for Python 2 & < 3.3
 Home-page: https://github.com/atdt/monotonic
 Author: Ori Livneh
 Author-email: [email protected]
 License: Apache
-Description-Content-Type: UNKNOWN
 Description: 
         monotonic
         ~~~~~~~~~
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/monotonic-1.4/monotonic.py 
new/monotonic-1.5/monotonic.py
--- old/monotonic-1.4/monotonic.py      2017-10-30 20:01:14.000000000 +0100
+++ new/monotonic-1.5/monotonic.py      2018-05-03 22:40:45.000000000 +0200
@@ -38,11 +38,6 @@
   limitations under the License.
 
 """
-import ctypes
-import ctypes.util
-import os
-import sys
-import threading
 import time
 
 
@@ -52,6 +47,11 @@
 try:
     monotonic = time.monotonic
 except AttributeError:
+    import ctypes
+    import ctypes.util
+    import os
+    import sys
+    import threading
     try:
         if sys.platform == 'darwin':  # OS X, iOS
             # See Technical Q&A QA1398 of the Mac Developer Library:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/monotonic-1.4/setup.py new/monotonic-1.5/setup.py
--- old/monotonic-1.4/setup.py  2017-10-30 20:01:30.000000000 +0100
+++ new/monotonic-1.5/setup.py  2018-05-03 22:52:09.000000000 +0200
@@ -31,7 +31,7 @@
 
 setup(
     name='monotonic',
-    version='1.4',
+    version='1.5',
     license='Apache',
     author='Ori Livneh',
     author_email='[email protected]',


Reply via email to