Hello community,
here is the log from the commit of package python-dogpile.cache for
openSUSE:Factory checked in at 2018-03-28 12:26:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-dogpile.cache (Old)
and /work/SRC/openSUSE:Factory/.python-dogpile.cache.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-dogpile.cache"
Wed Mar 28 12:26:49 2018 rev:17 rq:591544 version:0.6.5
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-dogpile.cache/python-dogpile.cache.changes
2018-02-19 13:02:21.471069460 +0100
+++
/work/SRC/openSUSE:Factory/.python-dogpile.cache.new/python-dogpile.cache.changes
2018-03-28 12:26:51.420573248 +0200
@@ -1,0 +2,12 @@
+Tue Mar 27 00:44:45 CEST 2018 - [email protected]
+
+- update to 0.6.5:
+ * Fixed import issue for Python 3.7 where several variables named
+ "async" were, leading to syntax errors.
+ * drop dogpile-threading.patch (upstreamed)
+
+- add dogpile.cache-tests_more_slow_waiters.patch (bsc#1086987)
+ increase number of allowed slow waiters in testsuite
+ otherwise this testsuite seems extremely flaky on non-x86_64
+
+-------------------------------------------------------------------
Old:
----
dogpile-threading.patch
dogpile.cache-0.6.4.tar.gz
New:
----
dogpile.cache-0.6.5.tar.gz
dogpile.cache-tests_more_slow_waiters.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-dogpile.cache.spec ++++++
--- /var/tmp/diff_new_pack.5jWwpr/_old 2018-03-28 12:26:52.096549029 +0200
+++ /var/tmp/diff_new_pack.5jWwpr/_new 2018-03-28 12:26:52.100548885 +0200
@@ -19,14 +19,14 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define oldpython python
Name: python-dogpile.cache
-Version: 0.6.4
+Version: 0.6.5
Release: 0
Summary: A caching front-end based on the Dogpile lock
License: BSD-3-Clause
Group: Development/Languages/Python
Url: http://bitbucket.org/zzzeek/dogpile.cache
Source:
https://pypi.io/packages/source/d/dogpile.cache/dogpile.cache-%{version}.tar.gz
-Patch0: dogpile-threading.patch
+Patch1: dogpile.cache-tests_more_slow_waiters.patch
BuildRequires: %{python_module Mako}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module mock}
@@ -56,7 +56,7 @@
%prep
%setup -q -n dogpile.cache-%{version}
-%patch0 -p1
+%patch1 -p1
%build
%python_build
++++++ dogpile.cache-0.6.4.tar.gz -> dogpile.cache-0.6.5.tar.gz ++++++
++++ 26942 lines of diff (skipped)
++++++ dogpile.cache-tests_more_slow_waiters.patch ++++++
--- dogpile.cache-0.6.4/tests/test_lock.py 2018/03/17 11:48:50 1.1
+++ dogpile.cache-0.6.4/tests/test_lock.py 2018/03/17 11:52:43
@@ -227,6 +227,8 @@
if slow_write_time:
expected_slow_waiters = num_threads * expected_generations
+ # one extra for slow platforms
+ expected_slow_waiters += 2
# time spent also increments by one wait period in the beginning...
expected_run_time += effective_creation_time