diff options
author | Yasuhiro Kimura <yasu@utahime.org> | 2021-05-16 15:21:35 +0000 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2021-05-16 15:24:46 +0000 |
commit | 065696a8ae4082c09318ba4862727e1afb447131 (patch) | |
tree | 815eb177228b44c3e0cb0c9148d9542635cb63f5 /lang/python38 | |
parent | 09397e741e930c1354b9feb73b80027268ab4a0f (diff) |
Diffstat (limited to 'lang/python38')
-rw-r--r-- | lang/python38/Makefile.version | 2 | ||||
-rw-r--r-- | lang/python38/distinfo | 6 | ||||
-rw-r--r-- | lang/python38/files/patch-freebsd-12 | 107 | ||||
-rw-r--r-- | lang/python38/pkg-plist | 5 |
4 files changed, 114 insertions, 6 deletions
diff --git a/lang/python38/Makefile.version b/lang/python38/Makefile.version index 5587d0177cf9..12ed93354d24 100644 --- a/lang/python38/Makefile.version +++ b/lang/python38/Makefile.version @@ -2,4 +2,4 @@ # Do not forget to update python documentation (lang/python-doc-*) # Run "make -C lang/python-doc-html makesum" -PYTHON_PORTVERSION= 3.8.9 +PYTHON_PORTVERSION= 3.8.10 diff --git a/lang/python38/distinfo b/lang/python38/distinfo index 528aa0cecb5e..afc231401866 100644 --- a/lang/python38/distinfo +++ b/lang/python38/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1618019194 -SHA256 (python/Python-3.8.9.tar.xz) = 5e391f3ec45da2954419cab0beaefd8be38895ea5ce33577c3ec14940c4b9572 -SIZE (python/Python-3.8.9.tar.xz) = 18271948 +TIMESTAMP = 1620584856 +SHA256 (python/Python-3.8.10.tar.xz) = 6af24a66093dd840bcccf371d4044a3027e655cf24591ce26e48022bc79219d9 +SIZE (python/Python-3.8.10.tar.xz) = 18433456 diff --git a/lang/python38/files/patch-freebsd-12 b/lang/python38/files/patch-freebsd-12 new file mode 100644 index 000000000000..eb10e947872e --- /dev/null +++ b/lang/python38/files/patch-freebsd-12 @@ -0,0 +1,107 @@ +From 9fa60bf7361d3244c19ed273fd4f1df7dd9698b0 Mon Sep 17 00:00:00 2001 +From: Yasuhiro Kimura <yasu@utahime.org> +Date: Tue, 11 May 2021 04:17:33 +0900 +Subject: [PATCH] Revert "[3.8] bpo-43799: OpenSSL 3.0.0: declare + OPENSSL_API_COMPAT 1.1.1 (GH-25329) (GH-25383)" + +This reverts commit b71aaa0df0f3a9640b034b4774651cd8c54d2fb9. +--- + Modules/_hashopenssl.c | 9 +-------- + Modules/_ssl.c | 33 +++++++++++++++++++-------------- + 2 files changed, 20 insertions(+), 22 deletions(-) + +diff --git Modules/_hashopenssl.c Modules/_hashopenssl.c +index 93bf25fee3..edadbcb393 100644 +--- Modules/_hashopenssl.c ++++ Modules/_hashopenssl.c +@@ -11,13 +11,6 @@ + * + */ + +-/* Don't warn about deprecated functions, */ +-#ifndef OPENSSL_API_COMPAT +- // 0x10101000L == 1.1.1, 30000 == 3.0.0 +- #define OPENSSL_API_COMPAT 0x10101000L +-#endif +-#define OPENSSL_NO_DEPRECATED 1 +- + #define PY_SSIZE_T_CLEAN + + #include "Python.h" +@@ -31,7 +24,7 @@ + #include <openssl/hmac.h> + /* We use the object interface to discover what hashes OpenSSL supports. */ + #include <openssl/objects.h> +-#include <openssl/err.h> ++#include "openssl/err.h" + + #ifndef OPENSSL_THREADS + # error "OPENSSL_THREADS is not defined, Python requires thread-safe OpenSSL" +diff --git Modules/_ssl.c Modules/_ssl.c +index d6a2fb814a..5cbc2b65be 100644 +--- Modules/_ssl.c ++++ Modules/_ssl.c +@@ -14,13 +14,6 @@ + http://bugs.python.org/issue8108#msg102867 ? + */ + +-/* Don't warn about deprecated functions, */ +-#ifndef OPENSSL_API_COMPAT +- // 0x10101000L == 1.1.1, 30000 == 3.0.0 +- #define OPENSSL_API_COMPAT 0x10101000L +-#endif +-#define OPENSSL_NO_DEPRECATED 1 +- + #define PY_SSIZE_T_CLEAN + + #include "Python.h" +@@ -52,6 +45,14 @@ static PySocketModule_APIObject PySocketModule; + #include <sys/poll.h> + #endif + ++/* Don't warn about deprecated functions */ ++#ifdef __GNUC__ ++#pragma GCC diagnostic ignored "-Wdeprecated-declarations" ++#endif ++#ifdef __clang__ ++#pragma clang diagnostic ignored "-Wdeprecated-declarations" ++#endif ++ + /* Include OpenSSL header files */ + #include "openssl/rsa.h" + #include "openssl/crypto.h" +@@ -149,20 +150,24 @@ static void _PySSLFixErrno(void) { + # define PY_OPENSSL_1_1_API 1 + #endif + +-/* OpenSSL API 1.1.0+ does not include version methods. Define the methods +- * unless OpenSSL is compiled without the methods. It's the easiest way to +- * make 1.0.2, 1.1.0, 1.1.1, and 3.0.0 happy without deprecation warnings. +- */ ++/* OpenSSL API compat */ ++#ifdef OPENSSL_API_COMPAT ++#if OPENSSL_API_COMPAT >= 0x10100000L ++ ++/* OpenSSL API 1.1.0+ does not include version methods */ + #ifndef OPENSSL_NO_TLS1_METHOD +-extern const SSL_METHOD *TLSv1_method(void); ++#define OPENSSL_NO_TLS1_METHOD 1 + #endif + #ifndef OPENSSL_NO_TLS1_1_METHOD +-extern const SSL_METHOD *TLSv1_1_method(void); ++#define OPENSSL_NO_TLS1_1_METHOD 1 + #endif + #ifndef OPENSSL_NO_TLS1_2_METHOD +-extern const SSL_METHOD *TLSv1_2_method(void); ++#define OPENSSL_NO_TLS1_2_METHOD 1 + #endif + ++#endif /* >= 1.1.0 compcat */ ++#endif /* OPENSSL_API_COMPAT */ ++ + /* LibreSSL 2.7.0 provides necessary OpenSSL 1.1.0 APIs */ + #if defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER >= 0x2070000fL + # define PY_OPENSSL_1_1_API 1 +-- +2.31.1 + diff --git a/lang/python38/pkg-plist b/lang/python38/pkg-plist index 64c024f3a697..dd3642dbbdcf 100644 --- a/lang/python38/pkg-plist +++ b/lang/python38/pkg-plist @@ -2166,8 +2166,8 @@ lib/python%%XYDOT%%/ensurepip/__pycache__/__main__.cpython-%%XY%%.pyc lib/python%%XYDOT%%/ensurepip/__pycache__/_uninstall.cpython-%%XY%%.opt-1.pyc lib/python%%XYDOT%%/ensurepip/__pycache__/_uninstall.cpython-%%XY%%.opt-2.pyc lib/python%%XYDOT%%/ensurepip/__pycache__/_uninstall.cpython-%%XY%%.pyc -lib/python%%XYDOT%%/ensurepip/_bundled/pip-20.2.3-py2.py3-none-any.whl -lib/python%%XYDOT%%/ensurepip/_bundled/setuptools-49.2.1-py3-none-any.whl +lib/python%%XYDOT%%/ensurepip/_bundled/pip-21.1.1-py3-none-any.whl +lib/python%%XYDOT%%/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl lib/python%%XYDOT%%/ensurepip/_uninstall.py lib/python%%XYDOT%%/enum.py lib/python%%XYDOT%%/filecmp.py @@ -5302,6 +5302,7 @@ lib/python%%XYDOT%%/test/mp_fork_bomb.py lib/python%%XYDOT%%/test/mp_preload.py lib/python%%XYDOT%%/test/multibytecodec_support.py lib/python%%XYDOT%%/test/nokia.pem +lib/python%%XYDOT%%/test/nosan.pem lib/python%%XYDOT%%/test/nullbytecert.pem lib/python%%XYDOT%%/test/nullcert.pem lib/python%%XYDOT%%/test/outstanding_bugs.py |