diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2020-01-20 18:24:47 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-01-21 12:52:52 +0000 |
| commit | 28c5a5033e4893ec1f1fd5aab8b2fd0d5f815678 (patch) | |
| tree | 516cabd91f2d95e50eb1980efa4cda946fdb8b57 /meta/recipes-devtools/python/python3/0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch | |
| parent | f7a99d04e6fb81ffbb14cfa3caaf47e89bb424b5 (diff) | |
| download | poky-28c5a5033e4893ec1f1fd5aab8b2fd0d5f815678.tar.gz | |
python3: update to 3.8.1
Drop backports, rebase other patches.
0001-main.c-if-OEPYTHON3HOME-is-set-use-instead-of-PYTHON.patch
is removed as the use case (allowing python 2 and 3 to coexist
in SDKs) is no longer relevant with Python 2.x reaching end of line
and upstream has refactored the code making a rebase difficult.
If needed, please re-add the patch to py2, rather than py3.
Python 3.8 no longer adds "m" to "3.8" in paths, so adjust the recipes
and classes accordingly.
The manifest for the 3.8.0 version is updated; particularly pkgutil
module is now packaged in -core (as other things in core need it);
this also necessitates allowing empty -pkgutil package to avoid
breakage across layers.
(From OE-Core rev: e6ab9f16b92aa1abdae82c535c1a452a1341b0e2)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3/0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch')
| -rw-r--r-- | meta/recipes-devtools/python/python3/0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/meta/recipes-devtools/python/python3/0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch b/meta/recipes-devtools/python/python3/0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch index e7af88654d..fe0aa8aabe 100644 --- a/meta/recipes-devtools/python/python3/0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch +++ b/meta/recipes-devtools/python/python3/0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | From 7535c39951b9d15dd64c4669092a8582ba555466 Mon Sep 17 00:00:00 2001 | 1 | From 2581ebe3cd9686089aed223651e1b8bf0b862b48 Mon Sep 17 00:00:00 2001 |
| 2 | From: Matthias Schoepfer <matthias.schoepfer@ithinx.io> | 2 | From: Matthias Schoepfer <matthias.schoepfer@ithinx.io> |
| 3 | Date: Fri, 31 May 2019 15:34:34 +0200 | 3 | Date: Fri, 31 May 2019 15:34:34 +0200 |
| 4 | Subject: [PATCH] bpo-36852: proper detection of mips architecture for soft | 4 | Subject: [PATCH] bpo-36852: proper detection of mips architecture for soft |
| @@ -12,15 +12,16 @@ to do this in a more autoconf/autotools manner. | |||
| 12 | 12 | ||
| 13 | Upstream-Status: Submitted [https://github.com/python/cpython/pull/13196] | 13 | Upstream-Status: Submitted [https://github.com/python/cpython/pull/13196] |
| 14 | Signed-off-by: Matthias Schoepfer <matthias.schoepfer@ithinx.io> | 14 | Signed-off-by: Matthias Schoepfer <matthias.schoepfer@ithinx.io> |
| 15 | |||
| 15 | --- | 16 | --- |
| 16 | configure.ac | 169 ++++++--------------------------------------------- | 17 | configure.ac | 171 +++++---------------------------------------------- |
| 17 | 1 file changed, 17 insertions(+), 152 deletions(-) | 18 | 1 file changed, 17 insertions(+), 154 deletions(-) |
| 18 | 19 | ||
| 19 | diff --git a/configure.ac b/configure.ac | 20 | diff --git a/configure.ac b/configure.ac |
| 20 | index a7de901e08..a73e2de51b 100644 | 21 | index 0f85486..0ca7e24 100644 |
| 21 | --- a/configure.ac | 22 | --- a/configure.ac |
| 22 | +++ b/configure.ac | 23 | +++ b/configure.ac |
| 23 | @@ -727,158 +727,23 @@ fi | 24 | @@ -704,160 +704,23 @@ fi |
| 24 | MULTIARCH=$($CC --print-multiarch 2>/dev/null) | 25 | MULTIARCH=$($CC --print-multiarch 2>/dev/null) |
| 25 | AC_SUBST(MULTIARCH) | 26 | AC_SUBST(MULTIARCH) |
| 26 | 27 | ||
| @@ -163,6 +164,8 @@ index a7de901e08..a73e2de51b 100644 | |||
| 163 | - i386-gnu | 164 | - i386-gnu |
| 164 | -#elif defined(__APPLE__) | 165 | -#elif defined(__APPLE__) |
| 165 | - darwin | 166 | - darwin |
| 167 | -#elif defined(__VXWORKS__) | ||
| 168 | - vxworks | ||
| 166 | -#else | 169 | -#else |
| 167 | -# error unknown platform triplet | 170 | -# error unknown platform triplet |
| 168 | -#endif | 171 | -#endif |
| @@ -196,6 +199,3 @@ index a7de901e08..a73e2de51b 100644 | |||
| 196 | 199 | ||
| 197 | if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then | 200 | if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then |
| 198 | if test x$PLATFORM_TRIPLET != x$MULTIARCH; then | 201 | if test x$PLATFORM_TRIPLET != x$MULTIARCH; then |
| 199 | -- | ||
| 200 | 2.21.0 | ||
| 201 | |||
