python-botocore/hide_py_pckgmgmt.patch
Robert Schweikert 9558507a3c Accepting request 653581 from home:glaubitz:branches:devel:languages:python:aws
- Version update to 1.12.57 (bsc#1118021, bsc#1118027)
  * bugfix:s3: Add md5 header injection to new operations that require it
  * api-change:``s3``: Update s3 client to latest version
- from version 1.12.56
  * api-change:``elbv2``: Update elbv2 client to latest version
  * api-change:``stepfunctions``: Update stepfunctions client to latest version
  * api-change:``xray``: Update xray client to latest version
  * api-change:``lambda``: Update lambda client to latest version
  * api-change:``events``: Update events client to latest version
  * api-change:``serverlessrepo``: Update serverlessrepo client to latest version
  * api-change:``kafka``: Update kafka client to latest version
  * api-change:``s3``: Update s3 client to latest version
- from version 1.12.55
  * api-change:``ec2``: Update ec2 client to latest version
  * api-change:``appmesh``: Update appmesh client to latest version
  * api-change:``license-manager``: Update license-manager client to latest version
  * api-change:``servicediscovery``: Update servicediscovery client to latest version
  * api-change:``sagemaker``: Update sagemaker client to latest version
  * api-change:``lightsail``: Update lightsail client to latest version
- from version 1.12.54
  * api-change:``securityhub``: Update securityhub client to latest version
  * api-change:``rds``: Update rds client to latest version
  * api-change:``fsx``: Update fsx client to latest version
  * api-change:``dynamodb``: Update dynamodb client to latest version
- from version 1.12.53
  * api-change:``meteringmarketplace``: Update meteringmarketplace client to latest version
  * api-change:``ec2``: Update ec2 client to latest version
  * api-change:``codedeploy``: Update codedeploy client to latest version
  * api-change:``translate``: Update translate client to latest version
  * api-change:``logs``: Update logs client to latest version

OBS-URL: https://build.opensuse.org/request/show/653581
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:aws/python-botocore?expand=0&rev=25
2018-12-03 16:38:42 +00:00

80 lines
2.8 KiB
Diff

diff -Nru botocore-1.12.57.orig/setup.py botocore-1.12.57/setup.py
--- botocore-1.12.57.orig/setup.py 2018-11-30 01:57:48.000000000 +0100
+++ botocore-1.12.57/setup.py 2018-12-03 15:18:54.196085340 +0100
@@ -23,31 +23,31 @@
raise RuntimeError("Unable to find version string.")
-requires = ['jmespath>=0.7.1,<1.0.0',
- 'docutils>=0.10']
+# requires = ['jmespath>=0.7.1,<1.0.0',
+# 'docutils>=0.10']
-if sys.version_info[:2] == (2, 6):
- # For python2.6 we have a few other dependencies.
- # First we need an ordered dictionary so we use the
- # 2.6 backport.
- requires.append('ordereddict==1.1')
- # Then we need simplejson. This is because we need
- # a json version that allows us to specify we want to
- # use an ordereddict instead of a normal dict for the
- # JSON objects. The 2.7 json module has this. For 2.6
- # we need simplejson.
- requires.append('simplejson==3.3.0')
- requires.append('python-dateutil>=2.1,<2.7.0')
-else:
- requires.append('python-dateutil>=2.1,<3.0.0')
-
-if sys.version_info[:2] == (2, 6):
- requires.append('urllib3>=1.20,<1.24')
-elif sys.version_info[:2] == (3, 3):
- requires.append('urllib3>=1.20,<1.23')
-else:
- requires.append('urllib3>=1.20,<1.25')
+# if sys.version_info[:2] == (2, 6):
+# # For python2.6 we have a few other dependencies.
+# # First we need an ordered dictionary so we use the
+# # 2.6 backport.
+# requires.append('ordereddict==1.1')
+# # Then we need simplejson. This is because we need
+# # a json version that allows us to specify we want to
+# # use an ordereddict instead of a normal dict for the
+# # JSON objects. The 2.7 json module has this. For 2.6
+# # we need simplejson.
+# requires.append('simplejson==3.3.0')
+# requires.append('python-dateutil>=2.1,<2.7.0')
+# else:
+# requires.append('python-dateutil>=2.1,<3.0.0')
+
+# if sys.version_info[:2] == (2, 6):
+# requires.append('urllib3>=1.20,<1.24')
+# elif sys.version_info[:2] == (3, 3):
+# requires.append('urllib3>=1.20,<1.23')
+# else:
+# requires.append('urllib3>=1.20,<1.25')
setup(
@@ -62,13 +62,13 @@
package_data={'botocore': ['cacert.pem', 'data/*.json', 'data/*/*.json'],
'botocore.vendored.requests': ['*.pem']},
include_package_data=True,
- install_requires=requires,
- extras_require={
- ':python_version=="2.6"': [
- 'ordereddict==1.1',
- 'simplejson==3.3.0',
- ]
- },
+ # install_requires=requires,
+ # extras_require={
+ # ':python_version=="2.6"': [
+ # 'ordereddict==1.1',
+ # 'simplejson==3.3.0',
+ # ]
+ # },
license="Apache License 2.0",
classifiers=(
'Development Status :: 5 - Production/Stable',