File gsutilHideDeps.patch of Package google-cloud-sdk
Index: google-cloud-sdk-0.9.16/platform/gsutil/setup.py
===================================================================
--- google-cloud-sdk-0.9.16.orig/platform/gsutil/setup.py
+++ google-cloud-sdk-0.9.16/platform/gsutil/setup.py
@@ -32,24 +32,24 @@ management tasks, including:
* Editing object and bucket ACLs.
"""
-requires = [
- 'boto==2.22.1',
- 'httplib2>=0.8',
- 'python-gflags>=2.0',
- 'google-api-python-client>=1.1',
- 'pyOpenSSL>=0.13',
- 'crcmod>=1.7',
+#requires = [
+# 'boto==2.22.1',
+# 'httplib2>=0.8',
+# 'python-gflags>=2.0',
+# 'google-api-python-client>=1.1',
+# 'pyOpenSSL>=0.13',
+# 'crcmod>=1.7',
# Not using 1.02 because of:
# https://code.google.com/p/socksipy-branch/issues/detail?id=3
- 'SocksiPy-branch==1.01',
- 'retry_decorator>=1.0.0',
-]
+# 'SocksiPy-branch==1.01',
+# 'retry_decorator>=1.0.0',
+#]
-dependency_links = [
+#dependency_links = [
# Note: this commit ID should be kept in sync with the 'third_party/boto'
# entry in 'git submodule status'.
- 'https://github.com/boto/boto/archive/7cb344c382c3acb95038cf54bf8a84d5242318b9.tar.gz#egg=boto-2.22.1',
-]
+# 'https://github.com/boto/boto/archive/7cb344c382c3acb95038cf54bf8a84d5242318b9.tar.gz#egg=boto-2.22.1',
+#]
CURDIR = os.path.abspath(os.path.dirname(__file__))
BOTO_DIR = os.path.join(CURDIR, 'third_party', 'boto')
@@ -154,8 +154,8 @@ setup(
'gsutil = gslib.__main__:main',
],
},
- install_requires=requires,
- dependency_links=dependency_links,
+# install_requires=requires,
+# dependency_links=dependency_links,
cmdclass={
'build_py': CustomBuildPy,
'sdist': CustomSDist,