diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2023-08-05 08:55:45 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-08-05 08:55:45 +0700 |
commit | 19295f2cf1ea30dbaae01b4b3f32917b22d82c88 (patch) | |
tree | 8aa80b5f8d0db2131b77e0b927cb31690c769a65 /python/python2-httplib2/use_system_cacerts.patch | |
parent | 24203b9289b4a514bea83bd3f139ce03f7f826f3 (diff) |
python/python2-httplib2: Added (python http library).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python2-httplib2/use_system_cacerts.patch')
-rw-r--r-- | python/python2-httplib2/use_system_cacerts.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/python/python2-httplib2/use_system_cacerts.patch b/python/python2-httplib2/use_system_cacerts.patch new file mode 100644 index 0000000000..80523d7178 --- /dev/null +++ b/python/python2-httplib2/use_system_cacerts.patch @@ -0,0 +1,37 @@ +--- a/python2/httplib2/certs.py ++++ b/python2/httplib2/certs.py +@@ -19,9 +19,7 @@ except ImportError: + pass + + +-BUILTIN_CA_CERTS = os.path.join( +- os.path.dirname(os.path.abspath(__file__)), "cacerts.txt" +-) ++BUILTIN_CA_CERTS = "/etc/ssl/certs/ca-certificates.crt" + + + def where(): +--- a/python3/httplib2/certs.py ++++ b/python3/httplib2/certs.py +@@ -19,9 +19,7 @@ except ImportError: + pass + + +-BUILTIN_CA_CERTS = os.path.join( +- os.path.dirname(os.path.abspath(__file__)), "cacerts.txt" +-) ++BUILTIN_CA_CERTS = "/etc/ssl/certs/ca-certificates.crt" + + + def where(): +--- a/tests/test_cacerts_from_env.py ++++ b/tests/test_cacerts_from_env.py +@@ -9,7 +9,7 @@ import tempfile + import httplib2 + + +-CA_CERTS_BUILTIN = os.path.join(os.path.dirname(httplib2.__file__), "cacerts.txt") ++CA_CERTS_BUILTIN = "/etc/ssl/certs/ca-certificates.crt" + CERTIFI_CERTS_FILE = "unittest_certifi_file" + CUSTOM_CA_CERTS = "unittest_custom_ca_certs" + |