Hello community, here is the log from the commit of package python-requests for openSUSE:Factory checked in at 2013-07-25 20:31:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-requests (Old) and /work/SRC/openSUSE:Factory/.python-requests.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-requests" Changes: -------- --- /work/SRC/openSUSE:Factory/python-requests/python-requests.changes 2013-06-05 13:36:00.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.python-requests.new/python-requests.changes 2013-07-25 20:31:18.000000000 +0200 @@ -1,0 +2,10 @@ +Thu Jul 25 11:40:02 UTC 2013 - [email protected] + +- Add no-default-cacert.patch: completely ignore the internal CA + bundle and point to /etc/ssl/certs/. This works because we + patched python to do the right thing when a directory is used + there instead of a file. +- Manually remove requests/cacert.pem (better than doing that in + the patch, since it's big) too. + +------------------------------------------------------------------- New: ---- no-default-cacert.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-requests.spec ++++++ --- /var/tmp/diff_new_pack.nzaXR2/_old 2013-07-25 20:31:18.000000000 +0200 +++ /var/tmp/diff_new_pack.nzaXR2/_new 2013-07-25 20:31:18.000000000 +0200 @@ -25,6 +25,8 @@ Group: Development/Languages/Python #TODO/FIXME: Maybe split out charade and urllib3 into sub-packages to simplify: Source: http://pypi.python.org/packages/source/r/requests/requests-%{version}.tar.gz +# PATCH-FIX-OPENSUSE no-default-cacert.patch -- completely ignore the internal CA bundle +Patch0: no-default-cacert.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: python BuildRequires: python-devel @@ -64,6 +66,8 @@ %setup -q -n requests-%{version} # For rpmlint warning: remove shebang from python library: sed -i '/^#!/d' ./requests/certs.py +%patch0 -p1 +rm ./requests/cacert.pem %build python setup.py build ++++++ no-default-cacert.patch ++++++ Index: requests-1.2.3/requests/adapters.py =================================================================== --- requests-1.2.3.orig/requests/adapters.py +++ requests-1.2.3/requests/adapters.py @@ -129,9 +129,6 @@ class HTTPAdapter(BaseAdapter): if not cert_loc: cert_loc = DEFAULT_CA_BUNDLE_PATH - if not cert_loc: - raise Exception("Could not find a suitable SSL CA certificate bundle.") - conn.cert_reqs = 'CERT_REQUIRED' conn.ca_certs = cert_loc else: Index: requests-1.2.3/requests/certs.py =================================================================== --- requests-1.2.3.orig/requests/certs.py +++ requests-1.2.3/requests/certs.py @@ -18,7 +18,7 @@ import os.path def where(): """Return the preferred certificate bundle.""" # vendored bundle inside Requests - return os.path.join(os.path.dirname(__file__), 'cacert.pem') + return '/etc/ssl/certs/' if __name__ == '__main__': print(where()) Index: requests-1.2.3/MANIFEST.in =================================================================== --- requests-1.2.3.orig/MANIFEST.in +++ requests-1.2.3/MANIFEST.in @@ -1 +1 @@ -include README.rst LICENSE NOTICE HISTORY.rst test_requests.py requirements.txt requests/cacert.pem +include README.rst LICENSE NOTICE HISTORY.rst test_requests.py requirements.txt Index: requests-1.2.3/requests.egg-info/SOURCES.txt =================================================================== --- requests-1.2.3.orig/requests.egg-info/SOURCES.txt +++ requests-1.2.3/requests.egg-info/SOURCES.txt @@ -10,7 +10,6 @@ requests/__init__.py requests/adapters.py requests/api.py requests/auth.py -requests/cacert.pem requests/certs.py requests/compat.py requests/cookies.py @@ -79,4 +78,4 @@ requests/packages/urllib3/contrib/pyopen requests/packages/urllib3/packages/__init__.py requests/packages/urllib3/packages/ordered_dict.py requests/packages/urllib3/packages/six.py -requests/packages/urllib3/packages/ssl_match_hostname/__init__.py \ No newline at end of file +requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
