2021-05-11 14:58:03 +00:00
|
|
|
From 2c58d7301dd5a47570f782fe2fce7fbb1918f60c Mon Sep 17 00:00:00 2001
|
|
|
|
From: Karolina Surma <ksurma@redhat.com>
|
|
|
|
Date: Mon, 10 May 2021 16:38:50 +0200
|
2020-10-15 02:37:16 +00:00
|
|
|
Subject: [PATCH] Dummy certifi patch
|
|
|
|
|
2021-05-11 14:58:03 +00:00
|
|
|
Co-Authored-By: Tomas Hrnciar <thrnciar@redhat.com>
|
2020-10-15 02:37:16 +00:00
|
|
|
---
|
|
|
|
src/pip/_vendor/certifi/core.py | 5 ++---
|
|
|
|
1 file changed, 2 insertions(+), 3 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/src/pip/_vendor/certifi/core.py b/src/pip/_vendor/certifi/core.py
|
2021-05-11 14:58:03 +00:00
|
|
|
index b8140cf..f1a0b01 100644
|
2020-10-15 02:37:16 +00:00
|
|
|
--- a/src/pip/_vendor/certifi/core.py
|
|
|
|
+++ b/src/pip/_vendor/certifi/core.py
|
2021-05-11 14:58:03 +00:00
|
|
|
@@ -14,6 +14,7 @@ class _PipPatchedCertificate(Exception):
|
|
|
|
|
|
|
|
|
2020-10-15 02:37:16 +00:00
|
|
|
try:
|
|
|
|
+ raise ImportError # force fallback
|
2021-05-11 14:58:03 +00:00
|
|
|
# Return a certificate file on disk for a standalone pip zipapp running in
|
|
|
|
# an isolated build environment to use. Passing --cert to the standalone
|
|
|
|
# pip does not work since requests calls where() unconditionally on import.
|
|
|
|
@@ -67,9 +68,7 @@ except ImportError:
|
2020-10-15 02:37:16 +00:00
|
|
|
# If we don't have importlib.resources, then we will just do the old logic
|
|
|
|
# of assuming we're on the filesystem and munge the path directly.
|
|
|
|
def where():
|
|
|
|
- f = os.path.dirname(__file__)
|
|
|
|
-
|
|
|
|
- return os.path.join(f, "cacert.pem")
|
|
|
|
+ return '/etc/pki/tls/certs/ca-bundle.crt'
|
2021-05-11 14:58:03 +00:00
|
|
|
|
|
|
|
|
2020-10-15 02:37:16 +00:00
|
|
|
def contents():
|
2021-05-11 14:58:03 +00:00
|
|
|
--
|
|
|
|
2.30.2
|
2020-10-15 02:37:16 +00:00
|
|
|
|