diff options
author | Derek Straka <derek@asterius.io> | 2016-07-15 15:03:30 -0400 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-07-22 21:45:39 +0200 |
commit | ae9a0c58b44dc8800eed734df1195976f11fe2d8 (patch) | |
tree | 47db890b8294fcc223a285fbfe24d3433a84fb95 /meta-python/recipes-devtools/python/python-cryptography/Comment_lingering_SSLv2_symbol.patch | |
parent | d212af495f78f7f0ee72fbe4931e31c57b7ca2c2 (diff) | |
download | meta-openembedded-ae9a0c58b44dc8800eed734df1195976f11fe2d8.tar.gz |
python-cryptography: update to version 1.4 and remove patches now available with the latest release
Signed-off-by: Derek Straka <derek@asterius.io>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python-cryptography/Comment_lingering_SSLv2_symbol.patch')
-rw-r--r-- | meta-python/recipes-devtools/python/python-cryptography/Comment_lingering_SSLv2_symbol.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/meta-python/recipes-devtools/python/python-cryptography/Comment_lingering_SSLv2_symbol.patch b/meta-python/recipes-devtools/python/python-cryptography/Comment_lingering_SSLv2_symbol.patch deleted file mode 100644 index b28e7efff1..0000000000 --- a/meta-python/recipes-devtools/python/python-cryptography/Comment_lingering_SSLv2_symbol.patch +++ /dev/null | |||
@@ -1,24 +0,0 @@ | |||
1 | From f326e4a97cce6b9479560ce0c65ad18d54393f96 Mon Sep 17 00:00:00 2001 | ||
2 | From: Cory Benfield <lukasaoz@gmail.com> | ||
3 | Date: Mon, 14 Dec 2015 15:37:46 +0000 | ||
4 | Subject: [PATCH] Comment lingering SSLv2 symbol. | ||
5 | |||
6 | --- | ||
7 | src/_cffi_src/openssl/ssl.py | 4 ++++ | ||
8 | 1 file changed, 4 insertions(+) | ||
9 | |||
10 | Index: cryptography-1.1/src/_cffi_src/openssl/ssl.py | ||
11 | =================================================================== | ||
12 | --- cryptography-1.1.orig/src/_cffi_src/openssl/ssl.py | ||
13 | +++ cryptography-1.1/src/_cffi_src/openssl/ssl.py | ||
14 | @@ -421,6 +421,10 @@ const long SSL_OP_LEGACY_SERVER_CONNECT | ||
15 | static const long Cryptography_HAS_SECURE_RENEGOTIATION = 1; | ||
16 | #endif | ||
17 | |||
18 | +/* Cryptography now compiles out all SSLv2 bindings. This exists to allow | ||
19 | + * clients that use it to check for SSLv2 support to keep functioning as | ||
20 | + * expected. | ||
21 | + */ | ||
22 | static const long Cryptography_HAS_SSL2 = 0; | ||
23 | |||
24 | #ifdef OPENSSL_NO_SSL3_METHOD | ||