Accepting request 322471 from Cloud:Tools

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/322471
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aws-cli?expand=0&rev=7
This commit is contained in:
Stephan Kulow 2015-08-27 06:55:16 +00:00 committed by Git OBS Bridge
commit 2cfb9c1fce
5 changed files with 28 additions and 16 deletions

View File

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

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

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:762e41d2e2aa15923824344fcd483cd1682d1066caa9d1bfb3d8f1b037ffa650
size 735326

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Fri Jul 31 10:03:34 UTC 2015 - ms@suse.com
- update to version 1.7.42 (fate#318337)
- feature:``aws opsworks``: Add support for managing Amazon ECS
- feature:``aws rds``: Add support for Amazon Aurora
- feature:``aws s3api``: Add support for more types of event notifications.
- feature:``aws s3api``: Add support for GET/HEAD storage class response
- feature:``aws logs``: Add destination API support.
- feature:``aws glacier``: Add support for Vault Lock.
- feature:``aws emr``: Add support for release-based clusters.
- feature:``aws ecs``: Update API
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 1 20:47:37 UTC 2015 - rjschwei@suse.com Mon Jun 1 20:47:37 UTC 2015 - rjschwei@suse.com

View File

@ -17,7 +17,7 @@
Name: aws-cli Name: aws-cli
Version: 1.7.31 Version: 1.7.42
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,7 +31,7 @@ Requires: python-argparse >= 1.1
%endif %endif
Requires: python-bcdoc >= 0.14.0 Requires: python-bcdoc >= 0.14.0
Requires: python-bcdoc < 0.15.0 Requires: python-bcdoc < 0.15.0
Requires: python-botocore >= 1.0.0 Requires: python-botocore >= 1.1.6
Requires: python-colorama <= 0.3.3 Requires: python-colorama <= 0.3.3
Requires: python-colorama >= 0.2.5 Requires: python-colorama >= 0.2.5
Requires: python-docutils >= 0.10 Requires: python-docutils >= 0.10

View File

@ -1,20 +1,19 @@
--- setup.py.orig --- setup.py.orig 2015-07-31 13:36:41.178495452 +0200
+++ setup.py +++ setup.py 2015-07-31 13:36:59.438576404 +0200
@@ -6,16 +6,16 @@ from setuptools import setup, find_packa @@ -6,16 +6,16 @@
import awscli import awscli
-requires = ['botocore==1.0.0a3', -requires = ['botocore==1.1.5',
- 'bcdoc>=0.14.0,<0.15.0',
- 'colorama>=0.2.5,<=0.3.3', - 'colorama>=0.2.5,<=0.3.3',
- 'docutils>=0.10', - 'docutils>=0.10',
- 'rsa>=3.1.2,<=3.1.4'] - 'rsa>=3.1.2,<=3.1.4']
+#requires = ['botocore==1.0.0a3', +#requires = ['botocore==1.1.5',
+# 'bcdoc>=0.14.0,<0.15.0',
+# 'colorama>=0.2.5,<=0.3.3', +# 'colorama>=0.2.5,<=0.3.3',
+# 'docutils>=0.10', +# 'docutils>=0.10',
+# 'rsa>=3.1.2,<=3.1.4'] +# 'rsa>=3.1.2,<=3.1.4']
-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.
@ -26,12 +25,12 @@
setup_options = dict( setup_options = dict(
@@ -33,7 +33,7 @@ setup_options = dict( @@ -31,7 +31,7 @@
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']},
- install_requires=requires, - install_requires=requires,
+# install_requires=requires, +# install_requires=requires,
license="Apache License 2.0", extras_require={
classifiers=( ':python_version=="2.6"': [
'Development Status :: 5 - Production/Stable', 'argparse>=1.1',