forked from pool/aws-cli
Robert Schweikert
06f4ea8c34
+ bugfix:``aws s3 cp``: Fix issue with parts of a file being downloaded more than once when streaming to stdout (`issue 1087 <https://github.com/aws/aws-cli/pull/1087>`__) + bugfix:``--no-sign-request``: Fix issue where requests were still trying to be signed even though user used the ``--no-sign-request`` flag. (`botocore issue 433 <https://github.com/boto/botocore/pull/433>`__) + bugfix:``aws cloudsearchdomain search``: Fix invalid signatures when using the ``aws cloudsearchdomain search`` command (`issue 976 <https://github.com/aws/aws-cli/issues/976>`__) + feature:``aws cloudhsm``: Add support for AWS CloudHSM. + feature:``aws ecs``: Add support for ``aws ecs``, the Amazon EC2 Container Service (ECS) + feature:``aws rds``: Add Encryption at Rest and CloudHSM Support. + feature:``aws ec2``: Add Classic Link support + feature:``aws cloudsearch``: Update ``aws cloudsearch`` command to latest version + bugfix:``aws cloudfront wait``: Fix issue where wait commands did not stop waiting when a success state was reached. (`botocore issue 426 <https://github.com/boto/botocore/pull/426>`_) + bugfix:``aws ec2 run-instances``: Allow binary files to be passed to ``--user-data`` (`botocore issue 416 <https://github.com/boto/botocore/pull/416>`_) + bugfix:``aws cloudsearchdomain suggest``: Add ``--suggest-query`` option to fix the argument being shadowed by the top level ``--query`` option. (`issue 1068 <https://github.com/aws/aws-cli/pull/1068>`__) + bugfix:``aws emr``: Fix issue with endpoints for ``eu-central-1`` and ``cn-north-1`` (`botocore issue 423 <https://github.com/boto/botocore/pull/423>`__) OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/aws-cli?expand=0&rev=7
40 lines
1.3 KiB
Diff
40 lines
1.3 KiB
Diff
Index: aws-cli-1.2.13/setup.py
|
|
===================================================================
|
|
--- aws-cli-1.2.13.orig/setup.py
|
|
+++ aws-cli-1.2.13/setup.py
|
|
@@ -6,16 +6,16 @@ from setuptools import setup, find_packa
|
|
import awscli
|
|
|
|
|
|
-requires = ['botocore>=0.82.0,<0.83.0',
|
|
- 'bcdoc>=0.12.0,<0.13.0',
|
|
- 'colorama==0.2.5',
|
|
- 'docutils>=0.10',
|
|
- 'rsa==3.1.2']
|
|
+#requires = ['botocore>=0.82.0,<0.83.0',
|
|
+# 'bcdoc>=0.12.0,<0.13.0',
|
|
+# 'colorama==0.2.5',
|
|
+# 'docutils>=0.10',
|
|
+# 'rsa==3.1.2']
|
|
|
|
-if sys.version_info[:2] == (2, 6):
|
|
- # For python2.6 we have to require argparse since it
|
|
- # was not in stdlib until 2.7.
|
|
- requires.append('argparse>=1.1')
|
|
+#if sys.version_info[:2] == (2, 6):
|
|
+# # For python2.6 we have to require argparse since it
|
|
+# # was not in stdlib until 2.7.
|
|
+# requires.append('argparse>=1.1')
|
|
|
|
|
|
setup_options = dict(
|
|
@@ -33,7 +33,7 @@ setup_options = dict(
|
|
package_dir={'awscli': 'awscli'},
|
|
package_data={'awscli': ['data/*.json', 'examples/*/*.rst',
|
|
'examples/*/*/*.rst']},
|
|
- install_requires=requires,
|
|
+# install_requires=requires,
|
|
license="Apache License 2.0",
|
|
classifiers=(
|
|
'Development Status :: 5 - Production/Stable',
|