From 4670672fa3bc24459a1a4468ab073a102f4d4a1c Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Mon, 28 Oct 2013 12:53:51 -0400 Subject: [PATCH] Update patch to find ca_certs in the correct place. --- python-urllib3-default-ssl-cert-validate.patch | 2 +- python-urllib3.spec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/python-urllib3-default-ssl-cert-validate.patch b/python-urllib3-default-ssl-cert-validate.patch index 40e0a2a..fc491be 100644 --- a/python-urllib3-default-ssl-cert-validate.patch +++ b/python-urllib3-default-ssl-cert-validate.patch @@ -18,7 +18,7 @@ index 691d4e2..551b6fd 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, strict, timeout, maxsize, diff --git a/python-urllib3.spec b/python-urllib3.spec index b61bd6e..bdbe8eb 100644 --- a/python-urllib3.spec +++ b/python-urllib3.spec @@ -8,7 +8,7 @@ Name: python-%{srcname} Version: 1.7.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python HTTP library with thread-safe connection pooling and file post License: MIT @@ -131,6 +131,9 @@ popd %endif # with_python3 %changelog +* Mon Oct 28 2013 Ralph Bean - 1.7.1-2 +- Update patch to find ca_certs in the correct location. + * Wed Sep 25 2013 Ralph Bean - 1.7.1-1 - Latest upstream with support for a new timeout class and py3.4.