- Modify httplib2-use-system-certs.patch to not depend on a generated bundle.

OpenSSL has everything built in to do the cert verification, we do not
  need to pass a cert bundle file

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-httplib2?expand=0&rev=48
This commit is contained in:
Robert Schweikert 2014-03-05 21:24:40 +00:00 committed by Git OBS Bridge
parent ec4ee5f3b4
commit 6364e2e8d9
2 changed files with 8 additions and 1 deletions

View File

@ -15,7 +15,7 @@ diff -ruN a/python2/httplib2/__init__.py b/python2/httplib2/__init__.py
- CA_CERTS = os.path.join(
- os.path.dirname(os.path.abspath(__file__ )), "cacerts.txt")
+# Default CA certificates file bundled with httplib2.
+CA_CERTS = '/etc/ssl/ca-bundle.pem'
+CA_CERTS = None
# Which headers are hop-by-hop headers by default
HOP_BY_HOP = ['connection', 'keep-alive', 'proxy-authenticate', 'proxy-authorization', 'te', 'trailers', 'transfer-encoding', 'upgrade']

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Mar 5 21:21:56 UTC 2014 - rschweikert@suse.com
- Modify httplib2-use-system-certs.patch to not depend on a generated bundle.
OpenSSL has everything built in to do the cert verification, we do not
need to pass a cert bundle file
-------------------------------------------------------------------
Thu Feb 13 08:00:00 UTC 2014 - rschweikert@suse.com