mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 08:18:43 +01:00
python3: update 3.9.7 -> 3.10.0
native and target 0001-Lib-sysconfig.py-use-libdir-values-from-configuratio.patch replaced by native-only 0001-Lib-sysconfig.py-use-prefix-value-from-build-configu.patch which is more reboust against upstream changes, and keeps target code unmodified. This however necessitated adding 0001-sysconfig.py-use-platlibdir-also-for-purelib.patch to avoid hardcoding 'lib' on target builds as libdir. Drop chunk from 0001-distutils-sysconfig-append-STAGING_LIBDIR-python-sys.patch as upstream now uses sysconfig directly inside distutils. Add 0001-Lib-pty.py-handle-stdin-I-O-errors-same-way-as-maste.patch and 0001-multiprocessing-disable-a-failing-test.patch to address ptest failures. License-Update: copyright years, case corrections. (From OE-Core rev: 72a75043a946f7db01d3ec04c8889e055f542cca) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
11df8c79a7
commit
fae4ba632b
@@ -1,3 +1,8 @@
|
||||
From 8b8583fb4f2bb3421e31ef06d17c04deec431c7e Mon Sep 17 00:00:00 2001
|
||||
From: Richard Purdie <richard.purdie@linuxfoundation.org>
|
||||
Date: Tue, 13 Jul 2021 23:19:29 +0100
|
||||
Subject: [PATCH] python3: Fix make race
|
||||
|
||||
libainstall installs python-config.py but the .pyc cache files are generated
|
||||
by the libinstall target. This means some builds may not generate the pyc files
|
||||
for python-config.py depending on the order things happen in. This means builds
|
||||
@@ -8,14 +13,18 @@ Add a dependency to avoid the race.
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
||||
|
||||
Index: Python-3.9.6/Makefile.pre.in
|
||||
===================================================================
|
||||
--- Python-3.9.6.orig/Makefile.pre.in
|
||||
+++ Python-3.9.6/Makefile.pre.in
|
||||
@@ -1486,7 +1486,7 @@ LIBSUBDIRS= tkinter tkinter/test tkinter
|
||||
venv venv/scripts venv/scripts/common venv/scripts/posix \
|
||||
curses pydoc_data \
|
||||
zoneinfo
|
||||
---
|
||||
Makefile.pre.in | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/Makefile.pre.in b/Makefile.pre.in
|
||||
index 69d47a2..c471b60 100644
|
||||
--- a/Makefile.pre.in
|
||||
+++ b/Makefile.pre.in
|
||||
@@ -1528,7 +1528,7 @@ TESTSUBDIRS= ctypes/test \
|
||||
unittest/test unittest/test/testmock
|
||||
|
||||
TEST_MODULES=@TEST_MODULES@
|
||||
-libinstall: build_all $(srcdir)/Modules/xxmodule.c
|
||||
+libinstall: build_all $(srcdir)/Modules/xxmodule.c libainstall
|
||||
@for i in $(SCRIPTDIR) $(LIBDEST); \
|
||||
|
||||
Reference in New Issue
Block a user