Accepting request 738330 from home:glaubitz:branches:Cloud:Tools
- Update to version 1.16.258 + For detailed changes see https://github.com/aws/aws-cli/blob/1.16.258/CHANGELOG.rst + Forward port hide_py_pckgmgmt.patch + Update Requires in spec file from setup.py OBS-URL: https://build.opensuse.org/request/show/738330 OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/aws-cli?expand=0&rev=68
This commit is contained in:
parent
5d0cac0cfa
commit
f2b0799387
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3ebe5277235947065d1dc2c6751240f69085c81c0cd990c7d0bb60293f06f982
|
|
||||||
size 1366517
|
|
3
aws-cli-1.16.258.tar.gz
Normal file
3
aws-cli-1.16.258.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c8063686877fb37a084564b627f0d5435d0a460163776fefee01fd099675a0d4
|
||||||
|
size 1470566
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 14 12:43:10 UTC 2019 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 1.16.258
|
||||||
|
+ For detailed changes see
|
||||||
|
https://github.com/aws/aws-cli/blob/1.16.258/CHANGELOG.rst
|
||||||
|
+ Forward port hide_py_pckgmgmt.patch
|
||||||
|
+ Update Requires in spec file from setup.py
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Sep 27 18:41:35 UTC 2019 - Robert Schweikert <rjschwei@suse.com>
|
Fri Sep 27 18:41:35 UTC 2019 - Robert Schweikert <rjschwei@suse.com>
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: aws-cli
|
Name: aws-cli
|
||||||
Version: 1.16.223
|
Version: 1.16.258
|
||||||
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
|
||||||
@ -31,8 +31,8 @@ BuildRequires: fdupes
|
|||||||
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.12.213
|
Requires: python3-botocore >= 1.12.248
|
||||||
Requires: python3-colorama <= 0.4.1
|
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
|
||||||
Requires: python3-rsa < 5.0.0
|
Requires: python3-rsa < 5.0.0
|
||||||
|
@ -1,11 +1,10 @@
|
|||||||
--- setup.py.orig 2019-08-21 20:20:11.000000000 +0200
|
--- setup.py.orig 2019-10-11 20:12:23.000000000 +0200
|
||||||
+++ setup.py 2019-08-22 15:09:23.121269602 +0200
|
+++ setup.py 2019-10-14 14:42:54.622237116 +0200
|
||||||
@@ -23,23 +23,23 @@
|
@@ -23,30 +23,30 @@
|
||||||
raise RuntimeError("Unable to find version string.")
|
raise RuntimeError("Unable to find version string.")
|
||||||
|
|
||||||
|
|
||||||
-requires = ['botocore==1.12.213',
|
-install_requires = ['botocore==1.12.248',
|
||||||
- 'colorama>=0.2.5,<=0.3.9',
|
|
||||||
- '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.2.0,<0.3.0']
|
- 's3transfer>=0.2.0,<0.3.0']
|
||||||
@ -14,15 +13,22 @@
|
|||||||
-if sys.version_info[:2] == (2, 6):
|
-if sys.version_info[:2] == (2, 6):
|
||||||
- # For python2.6 we have to require argparse since it
|
- # For python2.6 we have to require argparse since it
|
||||||
- # was not in stdlib until 2.7.
|
- # was not in stdlib until 2.7.
|
||||||
- requires.append('argparse>=1.1')
|
- install_requires.append('argparse>=1.1')
|
||||||
-
|
-
|
||||||
- # For Python 2.6, we have to require a different verion of PyYAML since the latest
|
- # For Python 2.6, we have to require a different verion of PyYAML since the latest
|
||||||
- # versions dropped support for Python 2.6.
|
- # versions dropped support for Python 2.6.
|
||||||
- requires.append('PyYAML>=3.10,<=3.13')
|
- install_requires.append('PyYAML>=3.10,<=3.13')
|
||||||
|
-
|
||||||
|
- # Colorama removed support for EOL pythons.
|
||||||
|
- install_requires.append('colorama>=0.2.5,<=0.3.9')
|
||||||
|
-elif sys.version_info[:2] == (3, 3):
|
||||||
|
- install_requires.append('PyYAML>=3.10,<=3.13')
|
||||||
|
- # Colorama removed support for EOL pythons.
|
||||||
|
- install_requires.append('colorama>=0.2.5,<=0.3.9')
|
||||||
-else:
|
-else:
|
||||||
- requires.append('PyYAML>=3.10,<=5.2')
|
- install_requires.append('PyYAML>=3.10,<5.2')
|
||||||
+# requires = ['botocore==1.12.213',
|
- install_requires.append('colorama>=0.2.5,<0.4.2')
|
||||||
+# 'colorama>=0.2.5,<=0.3.9',
|
+# install_requires = ['botocore==1.12.248',
|
||||||
+# '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.2.0,<0.3.0']
|
+# 's3transfer>=0.2.0,<0.3.0']
|
||||||
@ -31,27 +37,35 @@
|
|||||||
+# if sys.version_info[:2] == (2, 6):
|
+# if sys.version_info[:2] == (2, 6):
|
||||||
+# # For python2.6 we have to require argparse since it
|
+# # For python2.6 we have to require argparse since it
|
||||||
+# # was not in stdlib until 2.7.
|
+# # was not in stdlib until 2.7.
|
||||||
+# requires.append('argparse>=1.1')
|
+# install_requires.append('argparse>=1.1')
|
||||||
+
|
+
|
||||||
+# # For Python 2.6, we have to require a different verion of PyYAML since the latest
|
+# # For Python 2.6, we have to require a different verion of PyYAML since the latest
|
||||||
+# # versions dropped support for Python 2.6.
|
+# # versions dropped support for Python 2.6.
|
||||||
+# requires.append('PyYAML>=3.10,<=3.13')
|
+# install_requires.append('PyYAML>=3.10,<=3.13')
|
||||||
|
+
|
||||||
|
+# # Colorama removed support for EOL pythons.
|
||||||
|
+# install_requires.append('colorama>=0.2.5,<=0.3.9')
|
||||||
|
+# elif sys.version_info[:2] == (3, 3):
|
||||||
|
+# install_requires.append('PyYAML>=3.10,<=3.13')
|
||||||
|
+# # Colorama removed support for EOL pythons.
|
||||||
|
+# install_requires.append('colorama>=0.2.5,<=0.3.9')
|
||||||
+# else:
|
+# else:
|
||||||
+# requires.append('PyYAML>=3.10,<=5.2')
|
+# install_requires.append('PyYAML>=3.10,<5.2')
|
||||||
|
+# install_requires.append('colorama>=0.2.5,<0.4.2')
|
||||||
|
|
||||||
|
|
||||||
setup_options = dict(
|
setup_options = dict(
|
||||||
@@ -57,12 +57,12 @@
|
@@ -64,12 +64,12 @@
|
||||||
'examples/*/*.txt', 'examples/*/*/*.txt',
|
'examples/*/*.txt', 'examples/*/*/*.txt',
|
||||||
'examples/*/*/*.rst', 'topics/*.rst',
|
'examples/*/*/*.rst', 'topics/*.rst',
|
||||||
'topics/*.json']},
|
'topics/*.json']},
|
||||||
- install_requires=requires,
|
- install_requires=install_requires,
|
||||||
- extras_require={
|
- extras_require={
|
||||||
- ':python_version=="2.6"': [
|
- ':python_version=="2.6"': [
|
||||||
- 'argparse>=1.1',
|
- 'argparse>=1.1',
|
||||||
- ]
|
- ]
|
||||||
- },
|
- },
|
||||||
+ # install_requires=requires,
|
+ # install_requires=install_requires,
|
||||||
+ # extras_require={
|
+ # extras_require={
|
||||||
+ # ':python_version=="2.6"': [
|
+ # ':python_version=="2.6"': [
|
||||||
+ # 'argparse>=1.1',
|
+ # 'argparse>=1.1',
|
||||||
|
Loading…
Reference in New Issue
Block a user