python-botocore/hide_py_pckgmgmt.patch
Dominique Leuenberger e77696c311 Accepting request 281659 from devel:languages:python
- Update to version 0.82.0
  + there is no upstream changelog
  + update in support for fix of bnc#905354

OBS-URL: https://build.opensuse.org/request/show/281659
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-botocore?expand=0&rev=4
2015-01-20 18:01:11 +00:00

49 lines
1.6 KiB
Diff

--- setup.py.orig
+++ setup.py
@@ -10,21 +10,21 @@ import botocore
from setuptools import setup, find_packages
-requires = ['jmespath==0.5.0',
- 'python-dateutil>=2.1,<3.0.0']
-
-
-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 = ['jmespath==0.5.0',
+# 'python-dateutil>=2.1']
+
+
+#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')
setup(
@@ -42,7 +42,7 @@ setup(
'botocore.vendored.requests': ['*.pem']},
package_dir={'botocore': 'botocore'},
include_package_data=True,
- install_requires=requires,
+# install_requires=requires,
license=open("LICENSE.txt").read(),
classifiers=(
'Development Status :: 3 - Alpha',