forked from pool/aws-cli
Accepting request 711137 from home:glaubitz:branches:Cloud:Tools
- Update to version 1.16.182 + For detailed changes see https://github.com/aws/aws-cli/blob/1.16.182/CHANGELOG.rst + Forward port hide_py_pckgmgmt.patch + Update Requires in spec file from setup.py OBS-URL: https://build.opensuse.org/request/show/711137 OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/aws-cli?expand=0&rev=60
This commit is contained in:
parent
0420e5bc97
commit
15a7270b05
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:bdf3206945b932ed179a2792080318cfd30d7d519d39d67d35aba82d0f28bf61
|
|
||||||
size 1267915
|
|
3
aws-cli-1.16.182.tar.gz
Normal file
3
aws-cli-1.16.182.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:5de8f31661c324052358a869588ae437066bd3054d0ad6dd93798967853273a6
|
||||||
|
size 1282398
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 20 12:52:57 UTC 2019 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 1.16.182
|
||||||
|
+ For detailed changes see
|
||||||
|
https://github.com/aws/aws-cli/blob/1.16.182/CHANGELOG.rst
|
||||||
|
+ Forward port hide_py_pckgmgmt.patch
|
||||||
|
+ Update Requires in spec file from setup.py
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 12 14:10:01 UTC 2019 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
Wed Jun 12 14:10:01 UTC 2019 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: aws-cli
|
Name: aws-cli
|
||||||
Version: 1.16.176
|
Version: 1.16.182
|
||||||
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
|
||||||
@ -30,7 +30,7 @@ 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.166
|
Requires: python3-botocore >= 1.12.172
|
||||||
Requires: python3-colorama <= 0.4.1
|
Requires: python3-colorama <= 0.4.1
|
||||||
Requires: python3-colorama >= 0.2.5
|
Requires: python3-colorama >= 0.2.5
|
||||||
Requires: python3-docutils >= 0.10
|
Requires: python3-docutils >= 0.10
|
||||||
|
@ -1,35 +1,47 @@
|
|||||||
--- setup.py.orig 2019-06-11 20:28:13.000000000 +0200
|
--- setup.py.orig 2019-06-19 21:39:25.000000000 +0200
|
||||||
+++ setup.py 2019-06-12 14:54:16.071249846 +0200
|
+++ setup.py 2019-06-20 14:50:23.155273311 +0200
|
||||||
@@ -23,18 +23,18 @@
|
@@ -23,23 +23,23 @@
|
||||||
raise RuntimeError("Unable to find version string.")
|
raise RuntimeError("Unable to find version string.")
|
||||||
|
|
||||||
|
|
||||||
-requires = ['botocore==1.12.166',
|
-requires = ['botocore==1.12.172',
|
||||||
- 'colorama>=0.2.5,<=0.3.9',
|
- 'colorama>=0.2.5,<=0.3.9',
|
||||||
- 'docutils>=0.10',
|
- 'docutils>=0.10',
|
||||||
- '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']
|
||||||
- 'PyYAML>=3.10,<=3.13']
|
-
|
||||||
+# requires = ['botocore==1.12.166',
|
-
|
||||||
+# 'colorama>=0.2.5,<=0.3.9',
|
|
||||||
+# 'docutils>=0.10',
|
|
||||||
+# 'rsa>=3.1.2,<=3.5.0',
|
|
||||||
+# 's3transfer>=0.2.0,<0.3.0',
|
|
||||||
+# 'PyYAML>=3.10,<=3.13']
|
|
||||||
|
|
||||||
|
|
||||||
-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')
|
- requires.append('argparse>=1.1')
|
||||||
|
-
|
||||||
|
- # For Python 2.6, we have to require a different verion of PyYAML since the latest
|
||||||
|
- # versions dropped support for Python 2.6.
|
||||||
|
- requires.append('PyYAML>=3.10,<=3.13')
|
||||||
|
-else:
|
||||||
|
- requires.append('PyYAML>=3.10,<=5.1')
|
||||||
|
+# requires = ['botocore==1.12.172',
|
||||||
|
+# 'colorama>=0.2.5,<=0.3.9',
|
||||||
|
+# 'docutils>=0.10',
|
||||||
|
+# 'rsa>=3.1.2,<=3.5.0',
|
||||||
|
+# 's3transfer>=0.2.0,<0.3.0']
|
||||||
|
+
|
||||||
|
+
|
||||||
+# 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')
|
+# requires.append('argparse>=1.1')
|
||||||
|
+
|
||||||
|
+# # For Python 2.6, we have to require a different verion of PyYAML since the latest
|
||||||
|
+# # versions dropped support for Python 2.6.
|
||||||
|
+# requires.append('PyYAML>=3.10,<=3.13')
|
||||||
|
+# else:
|
||||||
|
+# requires.append('PyYAML>=3.10,<=5.1')
|
||||||
|
|
||||||
|
|
||||||
setup_options = dict(
|
setup_options = dict(
|
||||||
@@ -51,12 +51,12 @@
|
@@ -56,12 +56,12 @@
|
||||||
package_data={'awscli': ['data/*.json', 'examples/*/*.rst',
|
package_data={'awscli': ['data/*.json', 'examples/*/*.rst',
|
||||||
'examples/*/*/*.rst', 'topics/*.rst',
|
'examples/*/*/*.rst', 'topics/*.rst',
|
||||||
'topics/*.json']},
|
'topics/*.json']},
|
||||||
|
Loading…
Reference in New Issue
Block a user