mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 13:46:49 +00:00
Revert "Python: update to Python-2.7.9"
This reverts commit 59c60b083e2f942bab10fc8d3c1d179e477b6a0f.
This commit is contained in:
parent
0a7715494e
commit
57feef4a9c
@ -17,7 +17,7 @@
|
|||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
PKG_NAME="Python"
|
PKG_NAME="Python"
|
||||||
PKG_VERSION="2.7.9"
|
PKG_VERSION="2.7.8"
|
||||||
PKG_REV="1"
|
PKG_REV="1"
|
||||||
PKG_ARCH="any"
|
PKG_ARCH="any"
|
||||||
PKG_LICENSE="OSS"
|
PKG_LICENSE="OSS"
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
diff -Naur Python-2.7.9/Lib/socket.py Python-2.7.9.patch/Lib/socket.py
|
diff --git a/Lib/socket.py b/Lib/socket.py
|
||||||
--- Python-2.7.9/Lib/socket.py 2014-12-10 16:59:40.000000000 +0100
|
index aac04f6..02aa293 100644
|
||||||
+++ Python-2.7.9.patch/Lib/socket.py 2015-01-03 14:29:58.115421938 +0100
|
--- a/Lib/socket.py
|
||||||
@@ -67,7 +67,6 @@
|
+++ b/Lib/socket.py
|
||||||
|
@@ -67,7 +67,6 @@ else:
|
||||||
from _ssl import SSLError as sslerror
|
from _ssl import SSLError as sslerror
|
||||||
from _ssl import \
|
from _ssl import \
|
||||||
RAND_add, \
|
RAND_add, \
|
||||||
@ -9,22 +10,24 @@ diff -Naur Python-2.7.9/Lib/socket.py Python-2.7.9.patch/Lib/socket.py
|
|||||||
RAND_status, \
|
RAND_status, \
|
||||||
SSL_ERROR_ZERO_RETURN, \
|
SSL_ERROR_ZERO_RETURN, \
|
||||||
SSL_ERROR_WANT_READ, \
|
SSL_ERROR_WANT_READ, \
|
||||||
diff -Naur Python-2.7.9/Lib/ssl.py Python-2.7.9.patch/Lib/ssl.py
|
diff --git a/Lib/ssl.py b/Lib/ssl.py
|
||||||
--- Python-2.7.9/Lib/ssl.py 2014-12-10 16:59:40.000000000 +0100
|
index 666cea3..64e196a 100644
|
||||||
+++ Python-2.7.9.patch/Lib/ssl.py 2015-01-03 14:30:32.551484567 +0100
|
--- a/Lib/ssl.py
|
||||||
@@ -106,7 +106,7 @@
|
+++ b/Lib/ssl.py
|
||||||
from _ssl import (VERIFY_DEFAULT, VERIFY_CRL_CHECK_LEAF, VERIFY_CRL_CHECK_CHAIN,
|
@@ -62,7 +62,7 @@ import _ssl # if we can't import it, let the error propagate
|
||||||
VERIFY_X509_STRICT)
|
from _ssl import OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_INFO, OPENSSL_VERSION
|
||||||
from _ssl import txt2obj as _txt2obj, nid2obj as _nid2obj
|
from _ssl import SSLError
|
||||||
|
from _ssl import CERT_NONE, CERT_OPTIONAL, CERT_REQUIRED
|
||||||
-from _ssl import RAND_status, RAND_egd, RAND_add
|
-from _ssl import RAND_status, RAND_egd, RAND_add
|
||||||
+from _ssl import RAND_status, RAND_add
|
+from _ssl import RAND_status, RAND_add
|
||||||
|
from _ssl import \
|
||||||
def _import_symbols(prefix):
|
SSL_ERROR_ZERO_RETURN, \
|
||||||
for n in dir(_ssl):
|
SSL_ERROR_WANT_READ, \
|
||||||
diff -Naur Python-2.7.9/Modules/_ssl.c Python-2.7.9.patch/Modules/_ssl.c
|
diff --git a/Modules/_ssl.c b/Modules/_ssl.c
|
||||||
--- Python-2.7.9/Modules/_ssl.c 2014-12-10 16:59:53.000000000 +0100
|
index 752b033..9541df7 100644
|
||||||
+++ Python-2.7.9.patch/Modules/_ssl.c 2015-01-03 14:31:22.944576245 +0100
|
--- a/Modules/_ssl.c
|
||||||
@@ -3301,32 +3301,6 @@
|
+++ b/Modules/_ssl.c
|
||||||
|
@@ -1601,32 +1601,6 @@ Returns 1 if the OpenSSL PRNG has been seeded with enough data and 0 if not.\n\
|
||||||
It is necessary to seed the PRNG with RAND_add() on some platforms before\n\
|
It is necessary to seed the PRNG with RAND_add() on some platforms before\n\
|
||||||
using the ssl() function.");
|
using the ssl() function.");
|
||||||
|
|
||||||
@ -57,11 +60,11 @@ diff -Naur Python-2.7.9/Modules/_ssl.c Python-2.7.9.patch/Modules/_ssl.c
|
|||||||
#endif /* HAVE_OPENSSL_RAND */
|
#endif /* HAVE_OPENSSL_RAND */
|
||||||
|
|
||||||
|
|
||||||
@@ -3720,8 +3694,6 @@
|
@@ -1640,8 +1614,6 @@ static PyMethodDef PySSL_methods[] = {
|
||||||
#ifdef HAVE_OPENSSL_RAND
|
#ifdef HAVE_OPENSSL_RAND
|
||||||
{"RAND_add", PySSL_RAND_add, METH_VARARGS,
|
{"RAND_add", PySSL_RAND_add, METH_VARARGS,
|
||||||
PySSL_RAND_add_doc},
|
PySSL_RAND_add_doc},
|
||||||
- {"RAND_egd", PySSL_RAND_egd, METH_VARARGS,
|
- {"RAND_egd", PySSL_RAND_egd, METH_O,
|
||||||
- PySSL_RAND_egd_doc},
|
- PySSL_RAND_egd_doc},
|
||||||
{"RAND_status", (PyCFunction)PySSL_RAND_status, METH_NOARGS,
|
{"RAND_status", (PyCFunction)PySSL_RAND_status, METH_NOARGS,
|
||||||
PySSL_RAND_status_doc},
|
PySSL_RAND_status_doc},
|
Loading…
x
Reference in New Issue
Block a user