From 78fc6e515e108622d651d0252376080dc0ed231d Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Mon, 28 Oct 2013 13:06:41 -0400 Subject: [PATCH 1/2] Update patch to find ca_certs in the correct place. --- python-urllib3-default-ssl-cert-validate.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-urllib3-default-ssl-cert-validate.patch b/python-urllib3-default-ssl-cert-validate.patch index d767d5f..3278560 100644 --- a/python-urllib3-default-ssl-cert-validate.patch +++ b/python-urllib3-default-ssl-cert-validate.patch @@ -21,7 +21,7 @@ index 621e1a8..7f4c322 100644 - key_file=None, cert_file=None, cert_reqs=None, - ca_certs=None, ssl_version=None, + key_file=None, cert_file=None, cert_reqs=ssl.CERT_REQUIRED, -+ ca_certs='/etc/ssl/certs/ca-certificates.crt', ssl_version=None, ++ ca_certs='/etc/ssl/certs/ca-bundle.crt', ssl_version=None, assert_hostname=None, assert_fingerprint=None): HTTPConnectionPool.__init__(self, host, port, From 901b725a7c7563c778bd9fb945486804a3bf4676 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Mon, 28 Oct 2013 13:11:27 -0400 Subject: [PATCH 2/2] Bump release for ca_cert patch. --- python-urllib3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-urllib3.spec b/python-urllib3.spec index e1594ea..9f6edc7 100644 --- a/python-urllib3.spec +++ b/python-urllib3.spec @@ -8,7 +8,7 @@ Name: python-%{srcname} Version: 1.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Python HTTP library with thread-safe connection pooling and file post License: MIT @@ -129,6 +129,9 @@ popd %endif # with_python3 %changelog +* Mon Oct 28 2013 Ralph Bean - 1.7-4 +- Update patch to find ca_certs in the correct place (#1024052) + * Wed Aug 28 2013 Ralph Bean - 1.7-3 - Bump release again, just to push an unpaired update.