Hello community,

here is the log from the commit of package python-tblib for openSUSE:Leap:15.2 
checked in at 2020-02-21 23:49:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/python-tblib (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.python-tblib.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-tblib"

Fri Feb 21 23:49:02 2020 rev:11 rq:777203 version:1.6.0

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/python-tblib/python-tblib.changes      
2020-01-15 15:53:45.219608575 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.python-tblib.new.26092/python-tblib.changes   
2020-02-21 23:49:03.260531026 +0100
@@ -1,0 +2,43 @@
+Sun Dec 15 16:02:49 UTC 2019 - Stefan Brüns <[email protected]>
+
+- Move the Twisted test out of the main package to avoid the
+  Twisted dependency chain.
+
+-------------------------------------------------------------------
+Sun Dec 15 15:34:21 UTC 2019 - Stefan Brüns <[email protected]>
+
+- version update to 1.6.0
+  * When pickling an Exception, also pickle its traceback and the Exception
+    chain (raise ... from ...). Contributed by Guido Imperiale in #53.
+- version update to 1.5.0
+  * Added support for Python 3.8. Contributed by Victor Stinner in #42.
+  * Removed support for end of life Python 3.4.
+  * Few CI improvements and fixes.
+
+-------------------------------------------------------------------
+Mon May  6 07:56:48 UTC 2019 - [email protected]
+
+- version update to 1.4.0
+  * Remove support for end of life Python 3.3.
+  * Fixed tests for Python 3.7. Contributed by Elliott Sales de Andrade in
+    `#36 <https://github.com/ionelmc/python-tblib/issues/36>`_.
+  * Fixed compatibility issue with Twised (``twisted.python.failure.Failure``
+    expected a ``co_code`` attribute).
+- deleted patches
+  - 0001-Patch-tests-against-Python-3.7.patch (upstreamed)
+
+-------------------------------------------------------------------
+Sun Mar  3 10:29:39 UTC 2019 - John Vandenberg <[email protected]>
+
+- Remove bcond_with test preventing the tests from running,
+  and fix the %check
+- Remove unnecessary dependency on tox, flake8 and 9 other deps
+- Add 0001-Patch-tests-against-Python-3.7.patch to workaround
+  Python 3.7 test failure.
+
+-------------------------------------------------------------------
+Tue Dec  4 12:55:02 UTC 2018 - Matej Cepl <[email protected]>
+
+- Remove superfluous devel dependency for noarch package
+
+-------------------------------------------------------------------

Old:
----
  tblib-1.3.2.tar.gz

New:
----
  _multibuild
  tblib-1.6.0.tar.gz

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

Other differences:
------------------
++++++ python-tblib.spec ++++++
--- /var/tmp/diff_new_pack.XHBJcs/_old  2020-02-21 23:49:03.704531909 +0100
+++ /var/tmp/diff_new_pack.XHBJcs/_new  2020-02-21 23:49:03.708531916 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package python-tblib
+# spec file for package python
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,40 +12,38 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
-# Tests require network connection
-%bcond_with test
-
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
-Name:           python-tblib
-Version:        1.3.2
+%global flavor @BUILD_FLAVOR@%{nil}
+%if "%{flavor}" == "test"
+%bcond_without  test
+%bcond_without  test_twisted
+%define psuffix -test
+%else
+%bcond_without  test
+%bcond_with     test_twisted
+%endif
+Name:           python-tblib%{?psuffix}
+Version:        1.6.0
 Release:        0
 Summary:        Traceback serialization library
 License:        BSD-2-Clause
 Group:          Development/Languages/Python
-Url:            https://github.com/ionelmc/python-tblib
+URL:            https://github.com/ionelmc/python-tblib
 Source:         
https://files.pythonhosted.org/packages/source/t/tblib/tblib-%{version}.tar.gz
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
-BuildRequires:  %{python_module six}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
+%if %{with test_twisted}
+BuildRequires:  %{python_module Twisted}
+BuildRequires:  %{python_module tblib == %{version}}
+%endif
 %if %{with test}
-BuildRequires:  %{python_module Pygments}
-BuildRequires:  %{python_module check-manifest}
-BuildRequires:  %{python_module docutils}
-BuildRequires:  %{python_module flake8}
-BuildRequires:  %{python_module isort}
-BuildRequires:  %{python_module pytest-cov}
-BuildRequires:  %{python_module pytest-travis-fold}
 BuildRequires:  %{python_module pytest}
-BuildRequires:  %{python_module readme_renderer}
-BuildRequires:  %{python_module requests}
-BuildRequires:  %{python_module sphinx_py3doc_enhanced_theme}
-BuildRequires:  python3-tox
+BuildRequires:  %{python_module six}
 %endif
 Requires:       python-six
 BuildArch:      noarch
@@ -78,18 +76,21 @@
 %python_build
 
 %install
+%if "%{flavor}" != "test"
 %python_install
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
+%endif
 
-%if %{with test}
 %check
-%python_expand py.test-%{$python_bin_suffix}
+%if %{with test}
+%pytest
 %endif
 
+%if "%{flavor}" != "test"
 %files %{python_files}
-%defattr(-,root,root,-)
 %doc AUTHORS.rst CHANGELOG.rst README.rst
 %license LICENSE
 %{python_sitelib}/*
+%endif
 
 %changelog

++++++ _multibuild ++++++
<multibuild>
  <package>test</package>
</multibuild>
++++++ tblib-1.3.2.tar.gz -> tblib-1.6.0.tar.gz ++++++
++++ 2495 lines of diff (skipped)


Reply via email to