summaryrefslogtreecommitdiff
path: root/meta-phosphor/common/recipes-devtools/python/python-gevent/0002-gevent-eat-ssl-self-cert-errors.patch
diff options
context:
space:
mode:
authorBrad Bishop <bradleyb@fuzziesquirrel.com>2018-08-09 04:25:42 +0300
committerBrad Bishop <bradleyb@fuzziesquirrel.com>2018-08-21 20:18:43 +0300
commitf7ea135d0342e3aaa1c5078c64597f8960f70696 (patch)
tree2431c75a0af4ac103751ef7404fde7919e1cdfc4 /meta-phosphor/common/recipes-devtools/python/python-gevent/0002-gevent-eat-ssl-self-cert-errors.patch
parentb220f9939d3a1696ca910d1149a7172d28692004 (diff)
downloadopenbmc-f7ea135d0342e3aaa1c5078c64597f8960f70696.tar.xz
remove use of meta-virtualization
Remove meta-virtualization from any bblayer.conf.samples. It was originally added for the python-pyyaml and python-gevent recipes but better maintained versions of these recipes are provided by meta-python. Before this can be done the python-gevent bbappend in the phosphor layer must be removed. The version scope was wildcarded to any version but the patches don't apply to python-gevent_1.2.2, which becomes the default from meta-python when meta-virt is removed. Drop the bbappend. Change-Id: I6658a163460e3c8e63dc7371ffff803a7b6915b5 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'meta-phosphor/common/recipes-devtools/python/python-gevent/0002-gevent-eat-ssl-self-cert-errors.patch')
-rw-r--r--meta-phosphor/common/recipes-devtools/python/python-gevent/0002-gevent-eat-ssl-self-cert-errors.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/meta-phosphor/common/recipes-devtools/python/python-gevent/0002-gevent-eat-ssl-self-cert-errors.patch b/meta-phosphor/common/recipes-devtools/python/python-gevent/0002-gevent-eat-ssl-self-cert-errors.patch
deleted file mode 100644
index 36990e851..000000000
--- a/meta-phosphor/common/recipes-devtools/python/python-gevent/0002-gevent-eat-ssl-self-cert-errors.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/gevent/ssl.py 2016-11-02 13:17:37.917401795 -0500
-+++ b/gevent/newssl.py 2016-11-02 13:17:23.085401962 -0500
-@@ -334,6 +334,8 @@ class SSLSocket(socket):
- raise
- sys.exc_clear()
- self._wait(self._write_event, timeout_exc=_SSLErrorHandshakeTimeout)
-+ elif ex.reason in ['SSLV3_ALERT_CERTIFICATE_EXPIRED', 'TLSV1_ALERT_UNKNOWN_CA']:
-+ return None
- else:
- raise
-
- def connect(self, addr):
- """Connects to remote ADDR, and then wraps the connection in