SHA256
1
0
forked from pool/aws-cli
aws-cli/hide_py_pckgmgmt.patch
Robert Schweikert 0265197680 - Update to version 1.9.12 (bsc#958686)
+ feature:aws configure add-model: Added command for updating commands
    in the CLI and clients in boto3. (issue 1664)
  + feature:aws cloudfront create-invalidation: Add a new --paths option.
    (issue 1662)
  + feature:aws cloudfront sign: Add a new command to create a signed url.
    (issue 1668)
  + feature:aws autoscaling: Added support for protecting instances from
    scale-in events.
  + feature:aws rds: Added support for Aurora encryption at rest.
- From version 1.9.11
  + feature:aws rds: Added support for specifying port number.
  + feature:aws ds: Added support for Microsoft ActiveDirctory.
  + feature:aws route53: Added support for TrafficFlow, a new management
    and modeling layer for Route53.
  + feature:Timeouts: Added additonal options for configuring socket timeouts.
- From version 1.9.10
  + feature:aws config: Added support for dedicated hosts.
  + feature:aws s3: Added support for custom metadata in cp, mv, and sync.
- From version 1.9.9
  + feature:aws s3api: Added support for the aws-exec-read canned ACL on
    objects.
  + feature:aws elasticbeanstalk: Added support for composable web applications.
  + feature:aws ec2: Added support for EC2 dedicated hosts.
  + feature:aws ecs: Added support for task stopped reasons and task start
    and stop times.
- From version 1.9.8
  + feature:Read Timeouts: Add --cli-read-timeout to specify the number of
    seconds until a read times out.
  + bugfix:aws s3: Fix regression when downloading a restored Glacier object

OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/aws-cli?expand=0&rev=19
2015-12-10 22:31:59 +00:00

47 lines
1.4 KiB
Diff

Index: aws-cli-1.8.12/setup.py
===================================================================
--- aws-cli-1.8.12.orig/setup.py
+++ aws-cli-1.8.12/setup.py
@@ -6,16 +6,16 @@ from setuptools import setup, find_packa
import awscli
-requires = ['botocore==1.3.12',
- 'colorama>=0.2.5,<=0.3.3',
- 'docutils>=0.10',
- 'rsa>=3.1.2,<=3.3.0']
+#requires = ['botocore==1.3.12',
+# 'colorama>=0.2.5,<=0.3.3',
+# 'docutils>=0.10',
+# 'rsa>=3.1.2,<=3.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
# was not in stdlib until 2.7.
- requires.append('argparse>=1.1')
+# requires.append('argparse>=1.1')
setup_options = dict(
@@ -31,12 +31,12 @@ setup_options = dict(
package_data={'awscli': ['data/*.json', 'examples/*/*.rst',
'examples/*/*/*.rst', 'topics/*.rst',
'topics/*.json']},
- install_requires=requires,
- extras_require={
- ':python_version=="2.6"': [
- 'argparse>=1.1',
- ]
- },
+# install_requires=requires,
+# extras_require={
+# ':python_version=="2.6"': [
+# 'argparse>=1.1',
+# ]
+# },
license="Apache License 2.0",
classifiers=(
'Development Status :: 5 - Production/Stable',