diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2018-12-02 12:34:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-02 12:34:28 +0200 |
commit | 0ad1d41ed6d3afe0efc7ea6e7671066734dd48be (patch) | |
tree | ea3f215d749978fee0ecc49e5bc7c7d00863ae2a | |
parent | 37aeee740c15273f92bde81290e63f8af9f8af3f (diff) | |
parent | 8e25b4b8591e867649def70e31268e5a1c79d50c (diff) |
Merge pull request #7551 from neheb/pyco
python-crypgoraphy: Update to 2.4.2
3 files changed, 4 insertions, 7 deletions
diff --git a/lang/python/python-cryptography/Makefile b/lang/python/python-cryptography/Makefile index bedbeaad5..9c9e5405a 100644 --- a/lang/python/python-cryptography/Makefile +++ b/lang/python/python-cryptography/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=python-cryptography -PKG_VERSION:=2.4.1 +PKG_VERSION:=2.4.2 PKG_RELEASE:=1 PKG_SOURCE:=cryptography-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:= https://files.pythonhosted.org/packages/source/c/cryptography -PKG_HASH:=e85b410885addaeb31a867eabcefc9ef4a7e904ad45eac9e60a763a54b244626 +PKG_HASH:=05a6052c6a9f17ff78ba78f8e6eb1d777d25db3b763343a1ae89a7a8670386dd PKG_LICENSE:=Apache-2.0 BSD-3-Clause PKG_LICENSE_FILES:=LICENSE.APACHE LICENSE.BSD diff --git a/lang/python/python-cryptography/patches/001-disable-setup-requirements.patch b/lang/python/python-cryptography/patches/001-disable-setup-requirements.patch index 65781af52..ea257adb2 100644 --- a/lang/python/python-cryptography/patches/001-disable-setup-requirements.patch +++ b/lang/python/python-cryptography/patches/001-disable-setup-requirements.patch @@ -1,6 +1,6 @@ --- a/setup.py +++ b/setup.py -@@ -235,6 +235,7 @@ class DummyPyTest(test): +@@ -243,6 +243,7 @@ class DummyPyTest(test): with open(os.path.join(base_dir, "README.rst")) as f: long_description = f.read() diff --git a/lang/python/python-cryptography/patches/002-remove-undefined-dtls-methods.patch b/lang/python/python-cryptography/patches/002-remove-undefined-dtls-methods.patch index c203146cc..dfceff5c8 100644 --- a/lang/python/python-cryptography/patches/002-remove-undefined-dtls-methods.patch +++ b/lang/python/python-cryptography/patches/002-remove-undefined-dtls-methods.patch @@ -12,7 +12,7 @@ diff --git a/src/_cffi_src/openssl/ssl.py b/src/_cffi_src/openssl/ssl.py index c921dbee..f0b8939c 100644 --- a/src/_cffi_src/openssl/ssl.py +++ b/src/_cffi_src/openssl/ssl.py -@@ -714,7 +714,7 @@ static const long TLS_ST_BEFORE = 0; +@@ -709,7 +709,7 @@ static const long TLS_ST_BEFORE = 0; static const long TLS_ST_OK = 0; #endif @@ -21,6 +21,3 @@ index c921dbee..f0b8939c 100644 static const long Cryptography_HAS_GENERIC_DTLS_METHOD = 0; const SSL_METHOD *(*DTLS_method)(void) = NULL; const SSL_METHOD *(*DTLS_server_method)(void) = NULL; --- -2.19.1 - |