Robert Schweikert
e358463a1b
+ forward port hide_py_pckgmgmt.patch + feature:lambda: Added support for setting the function runtime as nodejs4.3, as well as updating function configuration to set the runtime. + feature:ds: Added support for Directory Service Conditional Forwarder APIs. + feature:elasticbeanstalk: Adds support for three additional elements in AWS Elasticbeanstalk's DescribeInstancesHealthResponse: Deployment, AvailabilityZone, and InstanceType. Additionally adds support for increased EnvironmentName length from 23 to 40. + bugfix:Paginator: Allow non-specified input tokens in old starting token format. - From 1.10.18 + feature:apigateway: Added support for API Import + feature:route53: Added support for metric-based health checks and regional health checks. + feature:sts: Added support for GetCallerIdentity, which returns details about the credentials used to make the API call. The details include name and account, as well as the type of entity making the call, such as an IAM user vs. federated user. + feature:s3api: Added support for VersionId in PutObjectAcl (issue 856) + bugfix:s3api: Add validation to enforce S3 metadata only contains ASCII. (issue 861) + bugfix:Exceptions: Consistently parse errors with no body (issue 859) + bugfix:Config: Handle case where S3 config key is not a dict (issue 858) - From 1.10.17 + feature:acm: Update command to latest version + feature:cloudformation: Update command to latest version + feature:codedeploy: Update command to latest version + feature:dms: Update command to latest version + feature:elasticache: Update command to latest version OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/aws-cli?expand=0&rev=21
47 lines
1.3 KiB
Diff
47 lines
1.3 KiB
Diff
--- setup.py.orig
|
|
+++ setup.py
|
|
@@ -6,17 +6,17 @@ from setuptools import setup, find_packa
|
|
import awscli
|
|
|
|
|
|
-requires = ['botocore==1.4.10',
|
|
- 'colorama>=0.2.5,<=0.3.3',
|
|
- 'docutils>=0.10',
|
|
- 'rsa>=3.1.2,<=3.3.0',
|
|
- 's3transfer==0.0.1']
|
|
+#requires = ['botocore==1.4.10',
|
|
+# 'colorama>=0.2.5,<=0.3.3',
|
|
+# 'docutils>=0.10',
|
|
+# 'rsa>=3.1.2,<=3.3.0',
|
|
+# 's3transfer==0.0.1']
|
|
|
|
|
|
-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(
|
|
@@ -33,12 +33,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',
|