Hello community, here is the log from the commit of package python-s3transfer for openSUSE:Leap:15.2 checked in at 2020-02-29 17:15:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/python-s3transfer (Old) and /work/SRC/openSUSE:Leap:15.2/.python-s3transfer.new.26092 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-s3transfer" Sat Feb 29 17:15:53 2020 rev:13 rq:780166 version:0.2.1 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/python-s3transfer/python-s3transfer.changes 2020-01-15 15:52:47.379575422 +0100 +++ /work/SRC/openSUSE:Leap:15.2/.python-s3transfer.new.26092/python-s3transfer.changes 2020-02-29 17:18:32.085300988 +0100 @@ -1,0 +2,24 @@ +Thu Aug 22 14:38:47 UTC 2019 - John Paul Adrian Glaubitz <[email protected]> + +- Update in SLE-15 (bsc#1146854) + +------------------------------------------------------------------- +Wed Jun 12 11:58:09 UTC 2019 - John Paul Adrian Glaubitz <[email protected]> + +- Update to version 0.2.1 + * enhancment:ProcessPool: Adds user agent suffix. + +------------------------------------------------------------------- +Wed Feb 13 12:53:52 UTC 2019 - John Paul Adrian Glaubitz <[email protected]> + +- Update to version 0.2.0 + * feature:``ProcessPoolDownloader``: Add ``ProcessPoolDownloader`` class + to speed up download throughput by using processes instead of threads. +- Drop obsolete patch + + system-requests.patch +- Refresh patches for new version + + hide_py_pckgmgmt.patch + + no-bundled-packages.patch +- Update Requires in spec file from setup.py + +------------------------------------------------------------------- Old: ---- s3transfer-0.1.13.tar.gz system-requests.patch New: ---- s3transfer-0.2.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-s3transfer.spec ++++++ --- /var/tmp/diff_new_pack.J2bQTK/_old 2020-02-29 17:18:32.477301796 +0100 +++ /var/tmp/diff_new_pack.J2bQTK/_new 2020-02-29 17:18:32.481301804 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-s3transfer # -# 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 @@ -12,13 +12,13 @@ # 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-%{**}} Name: python-s3transfer -Version: 0.1.13 +Version: 0.2.1 Release: 0 Summary: Python S3 transfer manager License: Apache-2.0 @@ -26,9 +26,8 @@ URL: https://github.com/boto/s3transfer Source0: https://files.pythonhosted.org/packages/source/s/s3transfer/s3transfer-%{version}.tar.gz Patch0: hide_py_pckgmgmt.patch -Patch1: system-requests.patch -Patch2: no-bundled-packages.patch -BuildRequires: %{python_module botocore >= 1.4.10} +Patch1: no-bundled-packages.patch +BuildRequires: %{python_module botocore >= 1.12.36} BuildRequires: %{python_module mock} BuildRequires: %{python_module nose} BuildRequires: %{python_module setuptools} @@ -37,7 +36,7 @@ BuildRequires: python-rpm-macros BuildRequires: python2-futures >= 2.2.0 Requires: python-botocore <= 2.0.0 -Requires: python-botocore >= 1.4.10 +Requires: python-botocore >= 1.12.36 Requires: python-requests Requires: python-urllib3 BuildArch: noarch @@ -52,9 +51,8 @@ %prep %setup -q -n s3transfer-%{version} -%patch0 +%patch0 -p1 %patch1 -p1 -%patch2 -p1 # remove integration tests that need running s3 :) rm -rf tests/integration ++++++ hide_py_pckgmgmt.patch ++++++ --- /var/tmp/diff_new_pack.J2bQTK/_old 2020-02-29 17:18:32.493301829 +0100 +++ /var/tmp/diff_new_pack.J2bQTK/_new 2020-02-29 17:18:32.493301829 +0100 @@ -1,34 +1,43 @@ ---- setup.py.orig -+++ setup.py -@@ -10,15 +10,15 @@ ROOT = os.path.dirname(__file__) +diff -Nru s3transfer-0.2.0.orig/setup.py s3transfer-0.2.0/setup.py +--- s3transfer-0.2.0.orig/setup.py 2019-02-07 00:14:54.000000000 +0100 ++++ s3transfer-0.2.0/setup.py 2019-02-13 13:26:03.879007918 +0100 +@@ -10,15 +10,15 @@ VERSION_RE = re.compile(r'''__version__ = ['"]([0-9.]+)['"]''') -requires = [ -- 'botocore>=1.3.0,<2.0.0', +- 'botocore>=1.12.36,<2.0.0', -] -+#requires = [ -+# 'botocore>=1.3.0,<2.0.0', -+#] ++# requires = [ ++# 'botocore>=1.12.36,<2.0.0', ++# ] -if sys.version_info[0] == 2: - # concurrent.futures is only in python3, so for - # python2 we need to install the backport. - requires.append('futures>=2.2.0,<4.0.0') -+#if sys.version_info[0] == 2: -+# # concurrent.futures is only in python3, so for -+# # python2 we need to install the backport. -+# requires.append('futures>=2.2.0,<4.0.0') ++# if sys.version_info[0] == 2: ++# # concurrent.futures is only in python3, so for ++# # python2 we need to install the backport. ++# requires.append('futures>=2.2.0,<4.0.0') def get_version(): -@@ -36,7 +36,7 @@ setup( +@@ -36,11 +36,11 @@ url='https://github.com/boto/s3transfer', packages=find_packages(exclude=['tests*']), include_package_data=True, - install_requires=requires, -+# install_requires=requires, - extras_require={ - ':python_version=="2.6" or python_version=="2.7"': [ - 'futures>=2.2.0,<4.0.0'] +- extras_require={ +- ':python_version=="2.6" or python_version=="2.7"': [ +- 'futures>=2.2.0,<4.0.0'] +- }, ++ # install_requires=requires, ++ # extras_require={ ++ # ':python_version=="2.6" or python_version=="2.7"': [ ++ # 'futures>=2.2.0,<4.0.0'] ++ # }, + license="Apache License 2.0", + classifiers=( + 'Development Status :: 3 - Alpha', ++++++ no-bundled-packages.patch ++++++ --- /var/tmp/diff_new_pack.J2bQTK/_old 2020-02-29 17:18:32.501301846 +0100 +++ /var/tmp/diff_new_pack.J2bQTK/_new 2020-02-29 17:18:32.501301846 +0100 @@ -1,34 +1,20 @@ -Index: s3transfer-0.1.13/s3transfer/__init__.py -=================================================================== ---- s3transfer-0.1.13.orig/s3transfer/__init__.py -+++ s3transfer-0.1.13/s3transfer/__init__.py -@@ -138,7 +138,7 @@ from botocore.compat import six - try: - from botocore.vendored.requests.packages.urllib3.exceptions import ReadTimeoutError - except ImportError: -- from requests.packages.urllib3.exceptions import ReadTimeoutError -+ from urllib3.exceptions import ReadTimeoutError - - from botocore.exceptions import IncompleteReadError - -Index: s3transfer-0.1.13/s3transfer/download.py -=================================================================== ---- s3transfer-0.1.13.orig/s3transfer/download.py -+++ s3transfer-0.1.13/s3transfer/download.py -@@ -20,7 +20,7 @@ import heapq +diff -Nru s3transfer-0.2.0.orig/s3transfer/__init__.py s3transfer-0.2.0/s3transfer/__init__.py +--- s3transfer-0.2.0.orig/s3transfer/__init__.py 2019-02-07 00:14:54.000000000 +0100 ++++ s3transfer-0.2.0/s3transfer/__init__.py 2019-02-13 13:29:44.840939556 +0100 +@@ -134,8 +134,7 @@ + import concurrent.futures from botocore.compat import six - from botocore.exceptions import IncompleteReadError -from botocore.vendored.requests.packages.urllib3.exceptions import \ -+from urllib3.exceptions import \ - ReadTimeoutError +- ReadTimeoutError ++from urllib3.exceptions import ReadTimeoutError + from botocore.exceptions import IncompleteReadError - from s3transfer.compat import SOCKET_ERROR -Index: s3transfer-0.1.13/tests/unit/test_s3transfer.py -=================================================================== ---- s3transfer-0.1.13.orig/tests/unit/test_s3transfer.py -+++ s3transfer-0.1.13/tests/unit/test_s3transfer.py -@@ -18,7 +18,7 @@ from tests import unittest + import s3transfer.compat +diff -Nru s3transfer-0.2.0.orig/tests/unit/test_s3transfer.py s3transfer-0.2.0/tests/unit/test_s3transfer.py +--- s3transfer-0.2.0.orig/tests/unit/test_s3transfer.py 2019-02-07 00:14:54.000000000 +0100 ++++ s3transfer-0.2.0/tests/unit/test_s3transfer.py 2019-02-13 13:30:41.309433514 +0100 +@@ -18,7 +18,7 @@ from contextlib import closing import mock ++++++ s3transfer-0.1.13.tar.gz -> s3transfer-0.2.1.tar.gz ++++++ ++++ 2810 lines of diff (skipped)
