diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2019-02-06 17:26:34 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-02-08 10:57:19 +0000 |
| commit | e2c3247c233876ab090c9ce3d5325a6d46ab350f (patch) | |
| tree | cf38957a3510be612cde924f6184a5251b968a43 /meta/recipes-devtools/python/python3/signal.patch | |
| parent | cd6c61a26177296e24b442e2eda1514b5f931c0a (diff) | |
| download | poky-e2c3247c233876ab090c9ce3d5325a6d46ab350f.tar.gz | |
python3: upgrade to 3.7.2
I took the same approach as the recent perl upgrade: write recipe from scratch,
taking the pieces from the old recipe only when they were proven to be necessary.
The pgo, manifest and ptest features are all preserved.
New features:
- native and target recipes are now unified into one recipe
- check_build_completeness.py runs right after do_compile() and verifies that
all optional modules have been built (a notorious source of regressions)
- a new approach to sysconfig.py and distutils/sysconfig.py returning values
appropriate for native or target builds: we copy the configuration file to a
separate folder, add that folder to sys.path (through environment variable
that differs between native and target builds), and point python to the file
through another environment variable.
There were a few other patches where it was difficult to decide if the patch
is still relevant, and how to test that it works correctly; please add those
as-needed by testing the new python.
(From OE-Core rev: 02714c105426b0d687620913c1a7401b386428b6)
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/signal.patch')
| -rw-r--r-- | meta/recipes-devtools/python/python3/signal.patch | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/meta/recipes-devtools/python/python3/signal.patch b/meta/recipes-devtools/python/python3/signal.patch deleted file mode 100644 index 534a097771..0000000000 --- a/meta/recipes-devtools/python/python3/signal.patch +++ /dev/null | |||
| @@ -1,56 +0,0 @@ | |||
| 1 | Upstream-Status: Backport | ||
| 2 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
| 3 | |||
| 4 | From 4315389df3c4e8c1f94a18ab11a4b234762132b1 Mon Sep 17 00:00:00 2001 | ||
| 5 | From: Antoine Pitrou <pitrou@free.fr> | ||
| 6 | Date: Mon, 23 Apr 2018 22:22:49 +0200 | ||
| 7 | Subject: [PATCH] [3.6] bpo-33329: Fix multiprocessing regression on newer | ||
| 8 | glibcs (GH-6575) (GH-6582) | ||
| 9 | |||
| 10 | Starting with glibc 2.27.9000-xxx, sigaddset() can return EINVAL for some | ||
| 11 | reserved signal numbers between 1 and NSIG. The `range(1, NSIG)` idiom | ||
| 12 | is commonly used to select all signals for blocking with `pthread_sigmask`. | ||
| 13 | So we ignore the sigaddset() return value until we expose sigfillset() | ||
| 14 | to provide a better idiom. | ||
| 15 | (cherry picked from commit 25038ecfb665bef641abf8cb61afff7505b0e008) | ||
| 16 | --- | ||
| 17 | .../next/Library/2018-04-23-13-21-39.bpo-33329.lQ-Eod.rst | 1 + | ||
| 18 | Modules/signalmodule.c | 14 ++++++++------ | ||
| 19 | 2 files changed, 9 insertions(+), 6 deletions(-) | ||
| 20 | create mode 100644 Misc/NEWS.d/next/Library/2018-04-23-13-21-39.bpo-33329.lQ-Eod.rst | ||
| 21 | |||
| 22 | diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c | ||
| 23 | index e0d06b434d..138e74e8a9 100644 | ||
| 24 | --- a/Modules/signalmodule.c | ||
| 25 | +++ b/Modules/signalmodule.c | ||
| 26 | @@ -744,7 +744,6 @@ iterable_to_sigset(PyObject *iterable, sigset_t *mask) | ||
| 27 | int result = -1; | ||
| 28 | PyObject *iterator, *item; | ||
| 29 | long signum; | ||
| 30 | - int err; | ||
| 31 | |||
| 32 | sigemptyset(mask); | ||
| 33 | |||
| 34 | @@ -766,11 +765,14 @@ iterable_to_sigset(PyObject *iterable, sigset_t *mask) | ||
| 35 | Py_DECREF(item); | ||
| 36 | if (signum == -1 && PyErr_Occurred()) | ||
| 37 | goto error; | ||
| 38 | - if (0 < signum && signum < NSIG) | ||
| 39 | - err = sigaddset(mask, (int)signum); | ||
| 40 | - else | ||
| 41 | - err = 1; | ||
| 42 | - if (err) { | ||
| 43 | + if (0 < signum && signum < NSIG) { | ||
| 44 | + /* bpo-33329: ignore sigaddset() return value as it can fail | ||
| 45 | + * for some reserved signals, but we want the `range(1, NSIG)` | ||
| 46 | + * idiom to allow selecting all valid signals. | ||
| 47 | + */ | ||
| 48 | + (void) sigaddset(mask, (int)signum); | ||
| 49 | + } | ||
| 50 | + else { | ||
| 51 | PyErr_Format(PyExc_ValueError, | ||
| 52 | "signal number %ld out of range", signum); | ||
| 53 | goto error; | ||
| 54 | -- | ||
| 55 | 2.11.0 | ||
| 56 | |||
