diff options
Diffstat (limited to 'debian/patches/01_do-not-use-python-certifi.patch')
-rw-r--r-- | debian/patches/01_do-not-use-python-certifi.patch | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/debian/patches/01_do-not-use-python-certifi.patch b/debian/patches/01_do-not-use-python-certifi.patch index 9887716..fecaf25 100644 --- a/debian/patches/01_do-not-use-python-certifi.patch +++ b/debian/patches/01_do-not-use-python-certifi.patch @@ -2,20 +2,20 @@ Description: To verify SSL certificates for HTTPS requests, use the bundle provided by ca-certificates instead of python-certifi. Author: Daniele Tricoli <eriol@mornie.org> Forwarded: not-needed -Last-Update: 2012-02-05 +Last-Update: 2012-03-16 --- a/requests/models.py +++ b/requests/models.py -@@ -481,9 +481,9 @@ - if not cert_loc: +@@ -497,9 +497,9 @@ + if not cert_loc and self.config.get('trust_env'): cert_loc = os.environ.get('CURL_CA_BUNDLE') - + - # Use the awesome certifi list. + # On Debian use the bundle provided by ca-certificates. if not cert_loc: - cert_loc = __import__('certifi').where() + cert_loc = '/etc/ssl/certs/ca-certificates.crt' - + conn.cert_reqs = 'CERT_REQUIRED' conn.ca_certs = cert_loc --- a/setup.py @@ -23,9 +23,9 @@ Last-Update: 2012-02-05 @@ -21,7 +21,7 @@ os.system('python test_requests.py') sys.exit() - + -required = ['certifi>=0.0.7',] +required = [] - - if is_py3: - required.append('chardet2') + packages = [ + 'requests', + 'requests.packages', |