Robert Schweikert
c53c24928a
+ forward port hide_py_pckgmgmt.patch + feature:batch: Update batch command to latest version + feature:logs: Update logs command to latest version + feature:rds: Update rds command to latest version + feature:dms: Update dms command to latest version + feature:marketplacecommerceanalytics: Update marketplacecommerceanalytics command to latest version + feature:elasticbeanstalk: Update elasticbeanstalk command to latest version + feature:sts: Update sts command to latest version - From 1.11.28 + feature:cloudfront: Add lambda function associations to cache behaviors. + feature:rds: Add cluster create data to DBCluster APIs. + bugfix:opsworks: This fixes an issue with opsworks register --local and python3 on some versions of linux. + feature:waf-regional: With this new feature, customers can use AWS WAF directly on Application Load Balancers in a VPC within available regions to protect their websites and web services from malicious attacks such as SQL injection, Cross Site Scripting, bad bots, etc. - From 1.11.27 + feature:config: Update config command to latest version + feature:sqs: Update sqs command to latest version + feature:s3: Update s3 command to latest version - From 1.11.26 + feature:sts: Update sts command to latest version + feature:config: Update config command to latest version + feature:ec2: Update ec2 command to latest version + feature:pinpoint: Update pinpoint command to latest version - From 1.11.25 + bugfix:opsworks-cm: Rename opsworkscm to opsworks-cm, keeping support OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/aws-cli?expand=0&rev=26
49 lines
1.4 KiB
Diff
49 lines
1.4 KiB
Diff
--- setup.py.orig
|
|
+++ setup.py
|
|
@@ -6,18 +6,18 @@ from setuptools import setup, find_packa
|
|
import awscli
|
|
|
|
|
|
-requires = ['botocore==1.4.86',
|
|
- 'colorama>=0.2.5,<=0.3.7',
|
|
- 'docutils>=0.10',
|
|
- 'rsa>=3.1.2,<=3.5.0',
|
|
- 's3transfer>=0.1.9,<0.2.0',
|
|
- 'PyYAML>=3.10,<=3.12']
|
|
+#requires = ['botocore==1.4.86',
|
|
+# 'colorama>=0.2.5,<=0.3.7',
|
|
+# 'docutils>=0.10',
|
|
+# 'rsa>=3.1.2,<=3.5.0',
|
|
+# 's3transfer>=0.1.9,<0.2.0',
|
|
+# 'PyYAML>=3.10,<=3.12']
|
|
|
|
|
|
-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(
|
|
@@ -34,12 +34,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',
|