Hello community, here is the log from the commit of package python-monotonic for openSUSE:Factory checked in at 2018-02-26 23:24:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-monotonic (Old) and /work/SRC/openSUSE:Factory/.python-monotonic.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-monotonic" Mon Feb 26 23:24:39 2018 rev:5 rq:579534 version:1.4 Changes: -------- --- /work/SRC/openSUSE:Factory/python-monotonic/python-monotonic.changes 2017-04-13 10:45:08.620802768 +0200 +++ /work/SRC/openSUSE:Factory/.python-monotonic.new/python-monotonic.changes 2018-02-26 23:24:40.847350821 +0100 @@ -1,0 +2,6 @@ +Fri Feb 23 14:23:13 UTC 2018 - [email protected] + +- update to 1.4 + No changelog provided + +------------------------------------------------------------------- Old: ---- monotonic-1.3.tar.gz New: ---- monotonic-1.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-monotonic.spec ++++++ --- /var/tmp/diff_new_pack.vzrWiL/_old 2018-02-26 23:24:41.683320757 +0100 +++ /var/tmp/diff_new_pack.vzrWiL/_new 2018-02-26 23:24:41.695320325 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-monotonic # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 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.3 +Version: 1.4 Release: 0 Summary: An implementation of time.monotonic() for Python 2 & < 33 License: Apache-2.0 ++++++ monotonic-1.3.tar.gz -> monotonic-1.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/monotonic-1.3/PKG-INFO new/monotonic-1.4/PKG-INFO --- old/monotonic-1.3/PKG-INFO 2017-03-14 16:52:13.000000000 +0100 +++ new/monotonic-1.4/PKG-INFO 2017-10-30 20:10:18.000000000 +0100 @@ -1,11 +1,12 @@ Metadata-Version: 1.1 Name: monotonic -Version: 1.3 +Version: 1.4 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.3/README.md new/monotonic-1.4/README.md --- old/monotonic-1.3/README.md 1970-01-01 01:00:00.000000000 +0100 +++ new/monotonic-1.4/README.md 2017-10-30 20:01:14.000000000 +0100 @@ -0,0 +1,44 @@ +monotonic +========= +This module provides a ``monotonic()`` function which returns the +value (in fractional seconds) of a clock which never goes backwards. +It is compatible with Python 2 and Python 3. + +On Python 3.3 or newer, ``monotonic`` will be an alias of +[``time.monotonic``][0] from the standard library. On older versions, +it will fall back to an equivalent implementation: + + OS | Implementation +-----------------|----------------------------------------- + Linux, BSD, AIX | [clock_gettime][1] + Windows | [GetTickCount][2] or [GetTickCount64][3] + OS X | [mach_absolute_time][3] + +If no suitable implementation exists for the current platform, +attempting to import this module (or to import from it) will +cause a RuntimeError exception to be raised. + +monotonic is available via the Python Cheese Shop (PyPI): + https://pypi.python.org/pypi/monotonic/ + +License +------- +Copyright 2014, 2015, 2016, 2017 Ori Livneh <[email protected]> + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +[0]: https://docs.python.org/3/library/time.html#time.monotonic +[1]: http://linux.die.net/man/3/clock_gettime +[2]: https://msdn.microsoft.com/en-us/library/windows/desktop/ms724408 +[3]: https://msdn.microsoft.com/en-us/library/windows/desktop/ms724411 +[4]: https://developer.apple.com/library/mac/qa/qa1398/ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/monotonic-1.3/monotonic.egg-info/PKG-INFO new/monotonic-1.4/monotonic.egg-info/PKG-INFO --- old/monotonic-1.3/monotonic.egg-info/PKG-INFO 2017-03-14 16:52:13.000000000 +0100 +++ new/monotonic-1.4/monotonic.egg-info/PKG-INFO 2017-10-30 20:10:18.000000000 +0100 @@ -1,11 +1,12 @@ Metadata-Version: 1.1 Name: monotonic -Version: 1.3 +Version: 1.4 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.3/monotonic.egg-info/SOURCES.txt new/monotonic-1.4/monotonic.egg-info/SOURCES.txt --- old/monotonic-1.3/monotonic.egg-info/SOURCES.txt 2017-03-14 16:52:13.000000000 +0100 +++ new/monotonic-1.4/monotonic.egg-info/SOURCES.txt 2017-10-30 20:10:18.000000000 +0100 @@ -1,10 +1,10 @@ LICENSE MANIFEST.in +README.md monotonic.py setup.cfg setup.py monotonic.egg-info/PKG-INFO monotonic.egg-info/SOURCES.txt monotonic.egg-info/dependency_links.txt -monotonic.egg-info/pbr.json monotonic.egg-info/top_level.txt \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/monotonic-1.3/monotonic.egg-info/pbr.json new/monotonic-1.4/monotonic.egg-info/pbr.json --- old/monotonic-1.3/monotonic.egg-info/pbr.json 2016-08-03 18:49:28.000000000 +0200 +++ new/monotonic-1.4/monotonic.egg-info/pbr.json 1970-01-01 01:00:00.000000000 +0100 @@ -1 +0,0 @@ -{"is_release": true, "git_version": "8447153178"} \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/monotonic-1.3/monotonic.py new/monotonic-1.4/monotonic.py --- old/monotonic-1.3/monotonic.py 2017-03-14 16:41:51.000000000 +0100 +++ new/monotonic-1.4/monotonic.py 2017-10-30 20:01:14.000000000 +0100 @@ -133,7 +133,7 @@ try: clock_gettime = ctypes.CDLL(ctypes.util.find_library('c'), use_errno=True).clock_gettime - except AttributeError: + except Exception: clock_gettime = ctypes.CDLL(ctypes.util.find_library('rt'), use_errno=True).clock_gettime @@ -165,5 +165,5 @@ if monotonic() - monotonic() > 0: raise ValueError('monotonic() is not monotonic!') - except Exception: - raise RuntimeError('no suitable implementation for this system') + except Exception as e: + raise RuntimeError('no suitable implementation for this system: ' + repr(e)) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/monotonic-1.3/setup.cfg new/monotonic-1.4/setup.cfg --- old/monotonic-1.3/setup.cfg 2017-03-14 16:52:13.000000000 +0100 +++ new/monotonic-1.4/setup.cfg 2017-10-30 20:10:18.000000000 +0100 @@ -7,5 +7,4 @@ [egg_info] tag_build = tag_date = 0 -tag_svn_revision = 0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/monotonic-1.3/setup.py new/monotonic-1.4/setup.py --- old/monotonic-1.3/setup.py 2017-03-14 16:46:01.000000000 +0100 +++ new/monotonic-1.4/setup.py 2017-10-30 20:01:30.000000000 +0100 @@ -31,7 +31,7 @@ setup( name='monotonic', - version='1.3', + version='1.4', license='Apache', author='Ori Livneh', author_email='[email protected]',
