Blame SOURCES/python-httplib2.certfile.patch

a5fc66
diff -Nur httplib2-0.9.orig/python2/httplib2/__init__.py httplib2-0.9/python2/httplib2/__init__.py
a5fc66
--- httplib2-0.9.orig/python2/httplib2/__init__.py	2014-04-14 06:52:57.000000000 -0600
a5fc66
+++ httplib2-0.9/python2/httplib2/__init__.py	2014-05-23 21:17:02.082118837 -0600
a5fc66
@@ -191,8 +191,10 @@
a5fc66
     CA_CERTS = ca_certs_locater.get()
a5fc66
 except ImportError:
a5fc66
     # Default CA certificates file bundled with httplib2.
a5fc66
-    CA_CERTS = os.path.join(
a5fc66
-        os.path.dirname(os.path.abspath(__file__ )), "cacerts.txt")
a5fc66
+#    CA_CERTS = os.path.join(
a5fc66
+#        os.path.dirname(os.path.abspath(__file__ )), "cacerts.txt")
a5fc66
+# Use Fedora system-wide shared certificate store for security, consistency.
a5fc66
+    CA_CERTS = "/etc/pki/tls/certs/ca-bundle.crt"
a5fc66
 
a5fc66
 # Which headers are hop-by-hop headers by default
a5fc66
 HOP_BY_HOP = ['connection', 'keep-alive', 'proxy-authenticate', 'proxy-authorization', 'te', 'trailers', 'transfer-encoding', 'upgrade']
a5fc66
--- httplib2-0.9/python3/httplib2/__init__.py	2014-04-14 05:52:57.000000000 -0700
a5fc66
+++ httplib2-0.9/python3/httplib2/__init__.py.new	2015-01-12 17:22:19.815505848 -0800
a5fc66
@@ -124,8 +124,10 @@
a5fc66
 HOP_BY_HOP = ['connection', 'keep-alive', 'proxy-authenticate', 'proxy-authorization', 'te', 'trailers', 'transfer-encoding', 'upgrade']
a5fc66
 
a5fc66
 # Default CA certificates file bundled with httplib2.
a5fc66
-CA_CERTS = os.path.join(
a5fc66
-        os.path.dirname(os.path.abspath(__file__ )), "cacerts.txt")
a5fc66
+#CA_CERTS = os.path.join(
a5fc66
+#        os.path.dirname(os.path.abspath(__file__ )), "cacerts.txt")
a5fc66
+# Use Fedora system-wide shared certificate store for security, consistency.
a5fc66
+CA_CERTS = "/etc/pki/tls/certs/ca-bundle.crt"
a5fc66
 
a5fc66
 def _get_end2end_headers(response):
a5fc66
     hopbyhop = list(HOP_BY_HOP)