Hello community,
here is the log from the commit of package python-subprocess32 for
openSUSE:Leap:15.2 checked in at 2020-03-31 07:21:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/python-subprocess32 (Old)
and /work/SRC/openSUSE:Leap:15.2/.python-subprocess32.new.3160 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-subprocess32"
Tue Mar 31 07:21:38 2020 rev:12 rq:789501 version:3.5.4
Changes:
--------
---
/work/SRC/openSUSE:Leap:15.2/python-subprocess32/python-subprocess32.changes
2020-01-15 15:53:39.771605452 +0100
+++
/work/SRC/openSUSE:Leap:15.2/.python-subprocess32.new.3160/python-subprocess32.changes
2020-03-31 07:21:44.778381785 +0200
@@ -1,0 +2,46 @@
+Fri May 24 19:34:16 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Update to 3.5.4:
+ * TimeoutExpired and CalledProcessError exceptions can now
+ be unpickled.
+ * Backport the fixes for https://bugs.python.org/issue10963,
+ https://bugs.python.org/issue19612, and https://bugs.python.org/issue30418.
+
+-------------------------------------------------------------------
+Wed Jan 9 22:55:45 UTC 2019 - Jonathan Brownell <[email protected]>
+
+- Add dependency on python-test for Red Hat platforms to avoid build
+ error "ImportError: No module named _testcapi"
+
+-------------------------------------------------------------------
+Fri Nov 16 19:00:59 UTC 2018 - Todd R <[email protected]>
+
+- Update to 3.5.3
+ * Disallow rediculiously large numbers (millions) of arguments.
+- Update to 3.5.2
+ * Explicitly include <signal.h> in _posixsubprocess_helpers.c; it already
+ gets configure checked and pulled in via Python's own <Python.h> in many
+ circumstances but it is better to be explicit. #IWYU
+ If you were using subprocess32 on a Python interpreter built *without*
+ the --with-fpectl configure option enabled, restore_signals is now
+ useful rather than a no-op. I do not know if such builds were common.
+ * Adds a functional test for restore_signals=True behavior.
+
+-------------------------------------------------------------------
+Wed Jun 6 16:41:05 UTC 2018 - [email protected]
+
+- Clean SPEC file
+ - switched to py2k-only (the package is a backport of py3k
+ functionality, so we don't want to promote its use in py3k-world).
+ - switched on rather comprehensive tests.
+ - upgrade to 3.5.1:
+ - backport of functionality from all versions up to 3.5
+ - a lot of bugfixes
+ complete changelog is packaged as ChangeLog
+
+-------------------------------------------------------------------
+Thu Aug 24 13:55:35 UTC 2017 - [email protected]
+
+- singlespec auto-conversion
+
+-------------------------------------------------------------------
@@ -4,0 +51 @@
+
Old:
----
subprocess32-3.2.7.tar.gz
New:
----
subprocess32-3.5.4.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-subprocess32.spec ++++++
--- /var/tmp/diff_new_pack.t9OnIh/_old 2020-03-31 07:21:45.266381998 +0200
+++ /var/tmp/diff_new_pack.t9OnIh/_new 2020-03-31 07:21:45.266381998 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-subprocess32
#
-# Copyright (c) 2017 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
@@ -12,24 +12,28 @@
# 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/
#
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
# Note: this package is python 2.x-only.
-
+%define skip_python3 1
Name: python-subprocess32
-Version: 3.2.7
+Version: 3.5.4
Release: 0
Summary: A backport of the subprocess module from Python 3.2/3.3 for
use on 2.x
License: Python-2.0
Group: Development/Languages/Python
-Url: https://github.com/google/python-subprocess32
+URL: https://github.com/google/python-subprocess32
Source:
https://files.pythonhosted.org/packages/source/s/subprocess32/subprocess32-%{version}.tar.gz
-BuildRequires: python-devel
-BuildRequires: python-setuptools
-Provides: python2-subprocess32 = %{version}
-BuildRoot: %{_tmppath}/%{name}-%{version}-build
+BuildRequires: %{python_module devel}
+BuildRequires: %{python_module setuptools}
+BuildRequires: python-rpm-macros
+%if 0%{?rhel} || 0%{?fedora}
+BuildRequires: python-test
+%endif
+%python_subpackages
%description
This is a backport of the subprocess standard library module from
@@ -45,15 +49,19 @@
%build
export CFLAGS="%{optflags}"
-python setup.py build
+%python_build
%install
-python setup.py install --root=%{buildroot} --prefix=%{_prefix}
+%python_install
+
+%check
+%python_exec setup.py test -v
-%files
-%defattr(-,root,root,-)
-%doc ChangeLog LICENSE README.md
-%{python_sitearch}/_posixsubprocess.so
+%files %{python_files}
+%license LICENSE
+%doc ChangeLog README.md
+%{python_sitearch}/_posixsubprocess32.so
+%pycache_only %{python_sitearch}/__pycache__/*
%{python_sitearch}/subprocess32.py*
%{python_sitearch}/subprocess32-%{version}-py*.egg-info
++++++ subprocess32-3.2.7.tar.gz -> subprocess32-3.5.4.tar.gz ++++++
++++ 7138 lines of diff (skipped)