diff options
author | Joshua Watt <jpewhacker@gmail.com> | 2019-06-27 08:53:17 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-11-18 14:42:13 +0000 |
commit | a2d2dba0bde2c1119eabb28fda23bcc7ea746ede (patch) | |
tree | 99036f5e244861ef1d3d74e690691c0a74118f54 /meta/recipes-devtools | |
parent | 0cec92605874183ab94c60e44b2b56956bde122c (diff) | |
download | poky-a2d2dba0bde2c1119eabb28fda23bcc7ea746ede.tar.gz |
python3: Fix .pyc file reproduciblility
Applies a patch to python that makes the pre-compiled .pyc files
generated during the build reproducible.
(From OE-Core rev: c2c6f30554f96e551b71b3d66fb599a5d28a10bb)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/python/python3/0001-Use-FLAG_REF-always-for-interned-strings.patch | 35 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python3_3.7.4.bb | 1 |
2 files changed, 36 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3/0001-Use-FLAG_REF-always-for-interned-strings.patch b/meta/recipes-devtools/python/python3/0001-Use-FLAG_REF-always-for-interned-strings.patch new file mode 100644 index 0000000000..8fcb344222 --- /dev/null +++ b/meta/recipes-devtools/python/python3/0001-Use-FLAG_REF-always-for-interned-strings.patch | |||
@@ -0,0 +1,35 @@ | |||
1 | From 6c8ea7c1dacd42f3ba00440231ec0e6b1a38300d Mon Sep 17 00:00:00 2001 | ||
2 | From: Inada Naoki <songofacandy@gmail.com> | ||
3 | Date: Sat, 14 Jul 2018 00:46:11 +0900 | ||
4 | Subject: [PATCH] Use FLAG_REF always for interned strings | ||
5 | |||
6 | Upstream-status: Submitted [https://github.com/python/cpython/pull/8226] | ||
7 | Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> | ||
8 | --- | ||
9 | Python/marshal.c | 9 +++++++-- | ||
10 | 1 file changed, 7 insertions(+), 2 deletions(-) | ||
11 | |||
12 | diff --git a/Python/marshal.c b/Python/marshal.c | ||
13 | index 6d06266c6a..51db2e3b2e 100644 | ||
14 | --- a/Python/marshal.c | ||
15 | +++ b/Python/marshal.c | ||
16 | @@ -275,9 +275,14 @@ w_ref(PyObject *v, char *flag, WFILE *p) | ||
17 | if (p->version < 3 || p->hashtable == NULL) | ||
18 | return 0; /* not writing object references */ | ||
19 | |||
20 | - /* if it has only one reference, it definitely isn't shared */ | ||
21 | - if (Py_REFCNT(v) == 1) | ||
22 | + /* If it has only one reference, it definitely isn't shared. | ||
23 | + * But we use TYPE_REF always for interned string, to PYC file stable | ||
24 | + * as possible. | ||
25 | + */ | ||
26 | + if (Py_REFCNT(v) == 1 && | ||
27 | + !(PyUnicode_CheckExact(v) && PyUnicode_CHECK_INTERNED(v))) { | ||
28 | return 0; | ||
29 | + } | ||
30 | |||
31 | entry = _Py_HASHTABLE_GET_ENTRY(p->hashtable, v); | ||
32 | if (entry != NULL) { | ||
33 | -- | ||
34 | 2.21.0 | ||
35 | |||
diff --git a/meta/recipes-devtools/python/python3_3.7.4.bb b/meta/recipes-devtools/python/python3_3.7.4.bb index e9ec6048de..bd86d515d8 100644 --- a/meta/recipes-devtools/python/python3_3.7.4.bb +++ b/meta/recipes-devtools/python/python3_3.7.4.bb | |||
@@ -26,6 +26,7 @@ SRC_URI = "http://www.python.org/ftp/python/${PV}/Python-${PV}.tar.xz \ | |||
26 | file://0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch \ | 26 | file://0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch \ |
27 | file://crosspythonpath.patch \ | 27 | file://crosspythonpath.patch \ |
28 | file://reformat_sysconfig.py \ | 28 | file://reformat_sysconfig.py \ |
29 | file://0001-Use-FLAG_REF-always-for-interned-strings.patch \ | ||
29 | " | 30 | " |
30 | 31 | ||
31 | SRC_URI_append_class-native = " \ | 32 | SRC_URI_append_class-native = " \ |