SHA256
1
0
forked from pool/aws-cli
aws-cli/hide_py_pckgmgmt.patch
Robert Schweikert d9f7af500a - Update to version 1.10.38 (bsc#985858)
+ forward port hide_py_pckgmgmt.patch
  + feature:acm: Update acm command to latest version
  + feature:ses: Update ses command to latest version
  + feature:rds: Update rds command to latest version
  + feature:cloudtrail: Update cloudtrail command to latest version
- From 1.10.37
  + feature:s3: Update s3 command to latest version
- From 1.10.36
  + feature:dynamodbstreams: Update dynamodbstreams command to latest version
  + feature:machinelearning: Update machinelearning command to latest version
  + feature:iot: Update iot command to latest version
  + bugfix:Pagination: Fix regression with --no-paginate introduced in
    #1958 (fixes #1993)
- From 1.10.35
  + feature:ec2: Update ec2 command to latest version
  + feature:application-autoscaling: Update application-autoscaling
    command to latest version
- From 1.10.34
  + feature:elasticache: Update elasticache command to latest version
- From 1.10.33
  + feature:rds: Update rds command to latest version
  + feature:ec2: Update ec2 command to latest version
  + bugfix:help: Write help content to stdout if less is not installed.
    Fixes #1957
- From 1.10.32
  + feature:firehose: Update firehose command to latest version
  + bugfix:Table: Fix rendering of tables with double-width characters.
  + feature:ec2: Update ec2 command to latest version
  + feature:ecs: Update ecs command to latest version

OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/aws-cli?expand=0&rev=24
2016-06-21 12:34:42 +00:00

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.28',
- 'colorama>=0.2.5,<=0.3.3',
- 'docutils>=0.10',
- 'rsa>=3.1.2,<=3.5.0',
- 's3transfer==0.0.1']
+#requires = ['botocore==1.4.28',
+# 'colorama>=0.2.5,<=0.3.3',
+# 'docutils>=0.10',
+# 'rsa>=3.1.2,<=3.5.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',