From 6364e2e8d97d6e780767f049b5cbb05bdf80d5595df4f29fdd61f61204f7bba8 Mon Sep 17 00:00:00 2001 From: Robert Schweikert Date: Wed, 5 Mar 2014 21:24:40 +0000 Subject: [PATCH] - 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 --- httplib2-use-system-certs.patch | 2 +- python-httplib2.changes | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/httplib2-use-system-certs.patch b/httplib2-use-system-certs.patch index 4571c98..16aa8af 100644 --- a/httplib2-use-system-certs.patch +++ b/httplib2-use-system-certs.patch @@ -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'] diff --git a/python-httplib2.changes b/python-httplib2.changes index 0f705ec..d920d3f 100644 --- a/python-httplib2.changes +++ b/python-httplib2.changes @@ -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