Accepting request 787894 from home:glaubitz:branches:Cloud:Tools

- Update to version 1.18.27
  + For detailed changes see
    https://github.com/aws/aws-cli/blob/1.18.27/CHANGELOG.rst
  + Forward port hide_py_pckgmgmt.patch
  + Update Requires in spec file from setup.py

OBS-URL: https://build.opensuse.org/request/show/787894
OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/aws-cli?expand=0&rev=84
This commit is contained in:
Robert Schweikert 2020-03-24 18:22:45 +00:00 committed by Git OBS Bridge
parent f5a669a57e
commit 1576874e97
5 changed files with 24 additions and 13 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3433bd5e5ce9e59da3548f0d066c56a5eab8ada43e6ff2dec24d90b75a7215da
size 1695733

3
aws-cli-1.18.27.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6564de265bb437009b06450468e3e1326a3e4b5779d1890c5563a0810520a008
size 1718632

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Tue Mar 24 18:10:27 UTC 2020 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 1.18.27
+ For detailed changes see
https://github.com/aws/aws-cli/blob/1.18.27/CHANGELOG.rst
+ Forward port hide_py_pckgmgmt.patch
+ Update Requires in spec file from setup.py
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 17 20:08:19 UTC 2020 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com> Mon Feb 17 20:08:19 UTC 2020 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>

View File

@ -17,7 +17,7 @@
Name: aws-cli Name: aws-cli
Version: 1.18.0 Version: 1.18.27
Release: 0 Release: 0
Summary: Amazon Web Services Command Line Interface Summary: Amazon Web Services Command Line Interface
License: Apache-2.0 License: Apache-2.0
@ -35,7 +35,7 @@ BuildRequires: python3-setuptools
Requires: python3 Requires: python3
Requires: python3-PyYAML <= 6.0.0 Requires: python3-PyYAML <= 6.0.0
Requires: python3-PyYAML >= 3.10 Requires: python3-PyYAML >= 3.10
Requires: python3-botocore >= 1.15.0 Requires: python3-botocore >= 1.15.27
Requires: python3-colorama <= 0.4.2 Requires: python3-colorama <= 0.4.2
Requires: python3-colorama >= 0.2.5 Requires: python3-colorama >= 0.2.5
Requires: python3-docutils >= 0.10 Requires: python3-docutils >= 0.10

View File

@ -1,37 +1,39 @@
--- setup.py.orig 2020-02-14 20:07:25.000000000 +0100 --- setup.py.orig 2020-03-23 19:15:32.000000000 +0100
+++ setup.py 2020-02-17 19:55:53.766213224 +0100 +++ setup.py 2020-03-24 19:10:14.975389538 +0100
@@ -23,19 +23,19 @@ @@ -23,20 +23,20 @@
raise RuntimeError("Unable to find version string.") raise RuntimeError("Unable to find version string.")
-install_requires = [ -install_requires = [
- 'botocore==1.15.0', - 'botocore==1.15.27',
- 'docutils>=0.10,<0.16', - 'docutils>=0.10,<0.16',
- 'rsa>=3.1.2,<=3.5.0', - 'rsa>=3.1.2,<=3.5.0',
- 's3transfer>=0.3.0,<0.4.0', - 's3transfer>=0.3.0,<0.4.0',
- 'PyYAML>=3.10,<5.3',
-] -]
+# install_requires = [ +# install_requires = [
+# 'botocore==1.15.0', +# 'botocore==1.15.27',
+# 'docutils>=0.10,<0.16', +# 'docutils>=0.10,<0.16',
+# 'rsa>=3.1.2,<=3.5.0', +# 'rsa>=3.1.2,<=3.5.0',
+# 's3transfer>=0.3.0,<0.4.0', +# 's3transfer>=0.3.0,<0.4.0',
+# 'PyYAML>=3.10,<5.3',
+# ] +# ]
-if sys.version_info[:2] == (3, 4): -if sys.version_info[:2] == (3, 4):
- install_requires.append('PyYAML>=3.10,<5.3')
- install_requires.append('colorama>=0.2.5,<0.4.2') - install_requires.append('colorama>=0.2.5,<0.4.2')
-else: -else:
- install_requires.append('PyYAML>=3.10,<5.4')
- install_requires.append('colorama>=0.2.5,<0.4.4') - install_requires.append('colorama>=0.2.5,<0.4.4')
+# if sys.version_info[:2] == (3, 4): +# if sys.version_info[:2] == (3, 4):
+# install_requires.append('PyYAML>=3.10,<5.3')
+# install_requires.append('colorama>=0.2.5,<0.4.2') +# install_requires.append('colorama>=0.2.5,<0.4.2')
+# else: +# else:
+# install_requires.append('PyYAML>=3.10,<5.4')
+# install_requires.append('colorama>=0.2.5,<0.4.4') +# install_requires.append('colorama>=0.2.5,<0.4.4')
setup_options = dict( setup_options = dict(
@@ -53,8 +53,8 @@ @@ -54,8 +54,8 @@
'examples/*/*.txt', 'examples/*/*/*.txt', 'examples/*/*.txt', 'examples/*/*/*.txt',
'examples/*/*/*.rst', 'topics/*.rst', 'examples/*/*/*.rst', 'topics/*.rst',
'topics/*.json']}, 'topics/*.json']},