forked from pool/aws-cli
Robert Schweikert
0420e5bc97
- Update to version 1.16.176 + For detailed changes see https://github.com/aws/aws-cli/blob/1.16.176/CHANGELOG.rst + Forward port hide_py_pckgmgmt.patch + Update Requires in spec file from setup.py - Relax version constraints for python-PyYAML and python-rsa - Run fdupes to hardlink duplicate files + Add fdupes to BuildRequires + Add %fdupes invocation to %install - Run recursive find with chmod to remove executable bit for REST files in example folder to fix rpmlint warning OBS-URL: https://build.opensuse.org/request/show/709439 OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/aws-cli?expand=0&rev=58
51 lines
1.6 KiB
Diff
51 lines
1.6 KiB
Diff
--- setup.py.orig 2019-06-11 20:28:13.000000000 +0200
|
|
+++ setup.py 2019-06-12 14:54:16.071249846 +0200
|
|
@@ -23,18 +23,18 @@
|
|
raise RuntimeError("Unable to find version string.")
|
|
|
|
|
|
-requires = ['botocore==1.12.166',
|
|
- 'colorama>=0.2.5,<=0.3.9',
|
|
- 'docutils>=0.10',
|
|
- 'rsa>=3.1.2,<=3.5.0',
|
|
- 's3transfer>=0.2.0,<0.3.0',
|
|
- 'PyYAML>=3.10,<=3.13']
|
|
+# requires = ['botocore==1.12.166',
|
|
+# 'colorama>=0.2.5,<=0.3.9',
|
|
+# 'docutils>=0.10',
|
|
+# 'rsa>=3.1.2,<=3.5.0',
|
|
+# 's3transfer>=0.2.0,<0.3.0',
|
|
+# 'PyYAML>=3.10,<=3.13']
|
|
|
|
|
|
-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(
|
|
@@ -51,12 +51,12 @@
|
|
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',
|