b09e468ffb
* build Python 3.9.6 * use Python 3.9 docker image * fix pyjnius recipe * remove unused dependencies from cryptography recipe * fix PYTHON3_DLL_REL_PATH value * add idna requirement * Remove m abi flag from python lib (https://docs.python.org/3/whatsnew/3.8.html#build-and-c-api-changes) * aiohttp==3.6.0 * Add base Dockerfiles for builds
93 lines
3.2 KiB
Diff
93 lines
3.2 KiB
Diff
--- a/Modules/expat/xmlparse.c 2021-06-28 09:26:18.000000000 +0100
|
|
+++ b/Modules/expat/xmlparse.c 2021-08-20 10:19:38.946990574 +0100
|
|
@@ -89,6 +89,8 @@
|
|
# define LOAD_LIBRARY_SEARCH_SYSTEM32 0x00000800
|
|
#endif
|
|
|
|
+#define XML_POOR_ENTROPY 1
|
|
+
|
|
#if ! defined(HAVE_GETRANDOM) && ! defined(HAVE_SYSCALL_GETRANDOM) \
|
|
&& ! defined(HAVE_ARC4RANDOM_BUF) && ! defined(HAVE_ARC4RANDOM) \
|
|
&& ! defined(XML_DEV_URANDOM) && ! defined(_WIN32)
|
|
diff --git a/Modules/getpath.c b/Modules/getpath.c
|
|
--- a/Modules/getpath.c 2021-06-28 09:26:18.000000000 +0100
|
|
+++ b/Modules/getpath.c 2021-08-20 10:29:27.000481395 +0100
|
|
@@ -103,10 +103,39 @@
|
|
extern "C" {
|
|
#endif
|
|
|
|
+/*
|
|
+ These variables were set this way in older versions of Python, but
|
|
+ changed from 3.5.1 to 3.5.2.
|
|
+ https://github.com/python/cpython/commit/f5854148138280c69fdc9d350636dc2140d57753
|
|
+ Here we just the old way again. A better solution would be to work
|
|
+ out where they should be defined, and make the CrystaX build scripts do so.
|
|
+*/
|
|
|
|
-#if (!defined(PREFIX) || !defined(EXEC_PREFIX) \
|
|
- || !defined(VERSION) || !defined(VPATH))
|
|
-#error "PREFIX, EXEC_PREFIX, VERSION and VPATH macros must be defined"
|
|
+/*
|
|
+ * #if (!defined(PREFIX) || !defined(EXEC_PREFIX) \
|
|
+ * || !defined(VERSION) || !defined(VPATH))
|
|
+ * #error "PREFIX, EXEC_PREFIX, VERSION and VPATH macros must be defined"
|
|
+ * #endif
|
|
+ */
|
|
+#ifndef VERSION
|
|
+#define VERSION "2.1"
|
|
+#endif
|
|
+
|
|
+#ifndef VPATH
|
|
+#define VPATH "."
|
|
+#endif
|
|
+
|
|
+#ifndef PREFIX
|
|
+# define PREFIX "/usr/local"
|
|
+#endif
|
|
+
|
|
+#ifndef EXEC_PREFIX
|
|
+#define EXEC_PREFIX PREFIX
|
|
+#endif
|
|
+
|
|
+#ifndef PYTHONPATH
|
|
+#define PYTHONPATH PREFIX "/lib/python" VERSION ":" \
|
|
+ EXEC_PREFIX "/lib/python" VERSION "/lib-dynload"
|
|
#endif
|
|
|
|
#ifndef LANDMARK
|
|
diff --git a/Modules/timemodule.c b/Modules/timemodule.c
|
|
--- a/Modules/timemodule.c
|
|
+++ b/Modules/timemodule.c
|
|
@@ -358,18 +358,20 @@ time_gmtime(PyObject *self, PyObject *args)
|
|
#endif
|
|
}
|
|
|
|
-#ifndef HAVE_TIMEGM
|
|
-static time_t
|
|
-timegm(struct tm *p)
|
|
-{
|
|
- /* XXX: the following implementation will not work for tm_year < 1970.
|
|
- but it is likely that platforms that don't have timegm do not support
|
|
- negative timestamps anyways. */
|
|
- return p->tm_sec + p->tm_min*60 + p->tm_hour*3600 + p->tm_yday*86400 +
|
|
- (p->tm_year-70)*31536000 + ((p->tm_year-69)/4)*86400 -
|
|
- ((p->tm_year-1)/100)*86400 + ((p->tm_year+299)/400)*86400;
|
|
-}
|
|
-#endif
|
|
+/* In the Android build, HAVE_TIMEGM apparently should be defined but isn't. A better fix would be to work out why and fix that. */
|
|
+
|
|
+/* #ifndef HAVE_TIMEGM */
|
|
+/* static time_t */
|
|
+/* timegm(struct tm *p) */
|
|
+/* { */
|
|
+/* /\* XXX: the following implementation will not work for tm_year < 1970. */
|
|
+/* but it is likely that platforms that don't have timegm do not support */
|
|
+/* negative timestamps anyways. *\/ */
|
|
+/* return p->tm_sec + p->tm_min*60 + p->tm_hour*3600 + p->tm_yday*86400 + */
|
|
+/* (p->tm_year-70)*31536000 + ((p->tm_year-69)/4)*86400 - */
|
|
+/* ((p->tm_year-1)/100)*86400 + ((p->tm_year+299)/400)*86400; */
|
|
+/* } */
|
|
+/* #endif */
|
|
|
|
PyDoc_STRVAR(gmtime_doc,
|
|
"gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min,\n\
|