summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-13 23:19:29 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-29 11:17:20 +0100
commitfddca7b07eed63973c1dbecb45d6f59231803a6e (patch)
tree362b9e22a218d66ec717a9d77f7de111f9ec4750 /meta
parentfe107a7de83956b09c134ed265dabfa049e44d9e (diff)
downloadpoky-fddca7b07eed63973c1dbecb45d6f59231803a6e.tar.gz
python3: Add a fix for a make install race
Add a fix for reproducibility issues where pyc files for python-config.py may not always be generated. (From OE-Core rev: 94aedf7d2b43ecdf0da1cf6b848f6e95ee253abf) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit d1c3a87c48b598b6e5624d0affe8bd89320631bf) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-devtools/python/python3/makerace.patch23
-rw-r--r--meta/recipes-devtools/python/python3_3.9.5.bb1
2 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3/makerace.patch b/meta/recipes-devtools/python/python3/makerace.patch
new file mode 100644
index 0000000000..96744cb557
--- /dev/null
+++ b/meta/recipes-devtools/python/python3/makerace.patch
@@ -0,0 +1,23 @@
1libainstall installs python-config.py but the .pyc cache files are generated
2by the libinstall target. This means some builds may not generate the pyc files
3for python-config.py depending on the order things happen in. This means builds
4are not always reproducible.
5
6Add a dependency to avoid the race.
7
8Upstream-Status: Pending
9Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10
11Index: Python-3.9.6/Makefile.pre.in
12===================================================================
13--- Python-3.9.6.orig/Makefile.pre.in
14+++ Python-3.9.6/Makefile.pre.in
15@@ -1486,7 +1486,7 @@ LIBSUBDIRS= tkinter tkinter/test tkinter
16 venv venv/scripts venv/scripts/common venv/scripts/posix \
17 curses pydoc_data \
18 zoneinfo
19-libinstall: build_all $(srcdir)/Modules/xxmodule.c
20+libinstall: build_all $(srcdir)/Modules/xxmodule.c libainstall
21 @for i in $(SCRIPTDIR) $(LIBDEST); \
22 do \
23 if test ! -d $(DESTDIR)$$i; then \
diff --git a/meta/recipes-devtools/python/python3_3.9.5.bb b/meta/recipes-devtools/python/python3_3.9.5.bb
index 82177f4a18..2b05bd530e 100644
--- a/meta/recipes-devtools/python/python3_3.9.5.bb
+++ b/meta/recipes-devtools/python/python3_3.9.5.bb
@@ -31,6 +31,7 @@ SRC_URI = "http://www.python.org/ftp/python/${PV}/Python-${PV}.tar.xz \
31 file://0020-configure.ac-setup.py-do-not-add-a-curses-include-pa.patch \ 31 file://0020-configure.ac-setup.py-do-not-add-a-curses-include-pa.patch \
32 file://0001-Lib-sysconfig.py-use-libdir-values-from-configuratio.patch \ 32 file://0001-Lib-sysconfig.py-use-libdir-values-from-configuratio.patch \
33 file://0001-Skip-failing-tests-due-to-load-variability-on-YP-AB.patch \ 33 file://0001-Skip-failing-tests-due-to-load-variability-on-YP-AB.patch \
34 file://makerace.patch \
34 " 35 "
35 36
36SRC_URI_append_class-native = " \ 37SRC_URI_append_class-native = " \