diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-10-27 22:16:11 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-10-29 16:28:36 +0100 |
| commit | b06633b6ae91132f444a15a7f11dd778f01d5b6f (patch) | |
| tree | 6e0c7f2733abbe6d9df9619492a98f544b2a63a7 /meta/recipes-devtools/python/python3/0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch | |
| parent | 852f802a319e2d25cbf4e9bdf838c06f487c8a05 (diff) | |
| download | poky-b06633b6ae91132f444a15a7f11dd778f01d5b6f.tar.gz | |
python3: update 3.10.6 -> 3.11.0
The semaphore fix has landed and is available from 3.11 onwards:
https://github.com/python/cpython/commit/1ee0f94d16f150356a4b9b0a39d44ba1d2d5b9fc
Drop 0001-Mitigate-the-race-condition-in-testSockName.patch
as it is merged upstream.
(From OE-Core rev: f10cdc155e47af5627ee999c57e1d083f9382a91)
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>
Diffstat (limited to 'meta/recipes-devtools/python/python3/0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch')
| -rw-r--r-- | meta/recipes-devtools/python/python3/0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-devtools/python/python3/0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch b/meta/recipes-devtools/python/python3/0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch index 62ef6efc28..16a4185704 100644 --- a/meta/recipes-devtools/python/python3/0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch +++ b/meta/recipes-devtools/python/python3/0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | From 80f872e4573f542d33f91514538755557d566f79 Mon Sep 17 00:00:00 2001 | 1 | From 93ae2ed3fc8be0245e35063c4f63626792f4cd0c Mon Sep 17 00:00:00 2001 |
| 2 | From: Alexander Kanavin <alex.kanavin@gmail.com> | 2 | From: Alexander Kanavin <alex.kanavin@gmail.com> |
| 3 | Date: Fri, 25 Jan 2019 19:04:13 +0100 | 3 | Date: Fri, 25 Jan 2019 19:04:13 +0100 |
| 4 | Subject: [PATCH] Do not add /usr/lib/termcap to linker flags to avoid host | 4 | Subject: [PATCH] Do not add /usr/lib/termcap to linker flags to avoid host |
| @@ -12,14 +12,14 @@ Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> | |||
| 12 | 1 file changed, 1 deletion(-) | 12 | 1 file changed, 1 deletion(-) |
| 13 | 13 | ||
| 14 | diff --git a/setup.py b/setup.py | 14 | diff --git a/setup.py b/setup.py |
| 15 | index 43e807f..11b5cf5 100644 | 15 | index 15d0d45..37ed244 100644 |
| 16 | --- a/setup.py | 16 | --- a/setup.py |
| 17 | +++ b/setup.py | 17 | +++ b/setup.py |
| 18 | @@ -1149,7 +1149,6 @@ class PyBuildExt(build_ext): | 18 | @@ -1109,7 +1109,6 @@ class PyBuildExt(build_ext): |
| 19 | 'termcap'): | 19 | 'termcap'): |
| 20 | readline_libs.append('termcap') | 20 | readline_libs.append('termcap') |
| 21 | self.add(Extension('readline', ['readline.c'], | 21 | self.add(Extension('readline', ['readline.c'], |
| 22 | - library_dirs=['/usr/lib/termcap'], | 22 | - library_dirs=['/usr/lib/termcap'], |
| 23 | extra_link_args=readline_extra_link_args, | ||
| 24 | libraries=readline_libs)) | 23 | libraries=readline_libs)) |
| 25 | else: | 24 | else: |
| 25 | self.missing.append('readline') | ||
