diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-08-08 08:42:25 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-08-10 08:25:28 +0100 |
commit | 8a6ba1ed40fa7a04180343a50b67d899cbfdbc84 (patch) | |
tree | 13671bac20bd540ace1289facdc92acf97593aaf /meta/recipes-devtools/python | |
parent | 9f73d180c9786acbd5de5d4981df122a3a504fae (diff) | |
download | poky-8a6ba1ed40fa7a04180343a50b67d899cbfdbc84.tar.gz |
python3: upgrade 3.10.5 -> 3.10.6
(From OE-Core rev: 7779cc998bea2aab2a66b874cd849b3a0b6e7721)
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')
-rw-r--r-- | meta/recipes-devtools/python/python3/0001-Don-t-search-system-for-headers-libraries.patch | 6 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python3/0001-Lib-sysconfig.py-use-prefix-value-from-build-configu.patch | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python3/0001-distutils-sysconfig-append-STAGING_LIBDIR-python-sys.patch | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python3/0017-setup.py-do-not-report-missing-dependencies-for-disa.patch | 6 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python3/12-distutils-prefix-is-inside-staging-area.patch | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python3_3.10.6.bb (renamed from meta/recipes-devtools/python/python3_3.10.5.bb) | 2 |
6 files changed, 10 insertions, 10 deletions
diff --git a/meta/recipes-devtools/python/python3/0001-Don-t-search-system-for-headers-libraries.patch b/meta/recipes-devtools/python/python3/0001-Don-t-search-system-for-headers-libraries.patch index 62dce4b827..c790c7b886 100644 --- a/meta/recipes-devtools/python/python3/0001-Don-t-search-system-for-headers-libraries.patch +++ b/meta/recipes-devtools/python/python3/0001-Don-t-search-system-for-headers-libraries.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From c83256e40d3057ac6325d649f9ce4c4da2c00874 Mon Sep 17 00:00:00 2001 | 1 | From 7589ab03ad3f7cb4bb092c31273ff22371ac77e4 Mon Sep 17 00:00:00 2001 |
2 | From: Jeremy Puhlman <jpuhlman@mvista.com> | 2 | From: Jeremy Puhlman <jpuhlman@mvista.com> |
3 | Date: Wed, 4 Mar 2020 00:06:42 +0000 | 3 | Date: Wed, 4 Mar 2020 00:06:42 +0000 |
4 | Subject: [PATCH] Don't search system for headers/libraries | 4 | Subject: [PATCH] Don't search system for headers/libraries |
@@ -11,10 +11,10 @@ Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com> | |||
11 | 1 file changed, 2 insertions(+), 2 deletions(-) | 11 | 1 file changed, 2 insertions(+), 2 deletions(-) |
12 | 12 | ||
13 | diff --git a/setup.py b/setup.py | 13 | diff --git a/setup.py b/setup.py |
14 | index f7a3d39..9d2273d 100644 | 14 | index c3a6b5e..c892537 100644 |
15 | --- a/setup.py | 15 | --- a/setup.py |
16 | +++ b/setup.py | 16 | +++ b/setup.py |
17 | @@ -857,8 +857,8 @@ class PyBuildExt(build_ext): | 17 | @@ -856,8 +856,8 @@ class PyBuildExt(build_ext): |
18 | add_dir_to_list(self.compiler.include_dirs, | 18 | add_dir_to_list(self.compiler.include_dirs, |
19 | sysconfig.get_config_var("INCLUDEDIR")) | 19 | sysconfig.get_config_var("INCLUDEDIR")) |
20 | 20 | ||
diff --git a/meta/recipes-devtools/python/python3/0001-Lib-sysconfig.py-use-prefix-value-from-build-configu.patch b/meta/recipes-devtools/python/python3/0001-Lib-sysconfig.py-use-prefix-value-from-build-configu.patch index a9240b3c8a..641017edd5 100644 --- a/meta/recipes-devtools/python/python3/0001-Lib-sysconfig.py-use-prefix-value-from-build-configu.patch +++ b/meta/recipes-devtools/python/python3/0001-Lib-sysconfig.py-use-prefix-value-from-build-configu.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 01d209277e145072e478d8b9acfea3638ee16cdc Mon Sep 17 00:00:00 2001 | 1 | From d82cb96eed1098920ad3cdcb36feb32137618066 Mon Sep 17 00:00:00 2001 |
2 | From: Alexander Kanavin <alex@linutronix.de> | 2 | From: Alexander Kanavin <alex@linutronix.de> |
3 | Date: Fri, 10 Sep 2021 12:28:31 +0200 | 3 | Date: Fri, 10 Sep 2021 12:28:31 +0200 |
4 | Subject: [PATCH] Lib/sysconfig.py: use prefix value from build configuration | 4 | Subject: [PATCH] Lib/sysconfig.py: use prefix value from build configuration |
diff --git a/meta/recipes-devtools/python/python3/0001-distutils-sysconfig-append-STAGING_LIBDIR-python-sys.patch b/meta/recipes-devtools/python/python3/0001-distutils-sysconfig-append-STAGING_LIBDIR-python-sys.patch index 3c62c2acb8..368a725ff7 100644 --- a/meta/recipes-devtools/python/python3/0001-distutils-sysconfig-append-STAGING_LIBDIR-python-sys.patch +++ b/meta/recipes-devtools/python/python3/0001-distutils-sysconfig-append-STAGING_LIBDIR-python-sys.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 78dd1def953e18e7cda0325bb26d27c051bb6890 Mon Sep 17 00:00:00 2001 | 1 | From c24674e0a52367359a1a3d950bab8bc3d282279b 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: Thu, 31 Jan 2019 16:46:30 +0100 | 3 | Date: Thu, 31 Jan 2019 16:46:30 +0100 |
4 | Subject: [PATCH] distutils/sysconfig: append | 4 | Subject: [PATCH] distutils/sysconfig: append |
diff --git a/meta/recipes-devtools/python/python3/0017-setup.py-do-not-report-missing-dependencies-for-disa.patch b/meta/recipes-devtools/python/python3/0017-setup.py-do-not-report-missing-dependencies-for-disa.patch index 0ead57e465..041a03b0cd 100644 --- a/meta/recipes-devtools/python/python3/0017-setup.py-do-not-report-missing-dependencies-for-disa.patch +++ b/meta/recipes-devtools/python/python3/0017-setup.py-do-not-report-missing-dependencies-for-disa.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 246c5ffe75a2d494e415d8a7522df9fe22056d41 Mon Sep 17 00:00:00 2001 | 1 | From 311cf9abc213fcd76795cc3a25814a15fb552065 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: Mon, 7 Oct 2019 13:22:14 +0200 | 3 | Date: Mon, 7 Oct 2019 13:22:14 +0200 |
4 | Subject: [PATCH] setup.py: do not report missing dependencies for disabled | 4 | Subject: [PATCH] setup.py: do not report missing dependencies for disabled |
@@ -18,7 +18,7 @@ Signed-off-by: Alejandro Hernandez Samaniego <alejandro@enedino.org> | |||
18 | 1 file changed, 8 insertions(+) | 18 | 1 file changed, 8 insertions(+) |
19 | 19 | ||
20 | diff --git a/setup.py b/setup.py | 20 | diff --git a/setup.py b/setup.py |
21 | index 2be4738..62f0e18 100644 | 21 | index 934cf2e..ccf83b4 100644 |
22 | --- a/setup.py | 22 | --- a/setup.py |
23 | +++ b/setup.py | 23 | +++ b/setup.py |
24 | @@ -517,6 +517,14 @@ class PyBuildExt(build_ext): | 24 | @@ -517,6 +517,14 @@ class PyBuildExt(build_ext): |
@@ -35,4 +35,4 @@ index 2be4738..62f0e18 100644 | |||
35 | + | 35 | + |
36 | if self.missing: | 36 | if self.missing: |
37 | print() | 37 | print() |
38 | print("Python build finished successfully!") | 38 | print("The necessary bits to build these optional modules were not " |
diff --git a/meta/recipes-devtools/python/python3/12-distutils-prefix-is-inside-staging-area.patch b/meta/recipes-devtools/python/python3/12-distutils-prefix-is-inside-staging-area.patch index de4c6c4e19..a06e9b56c1 100644 --- a/meta/recipes-devtools/python/python3/12-distutils-prefix-is-inside-staging-area.patch +++ b/meta/recipes-devtools/python/python3/12-distutils-prefix-is-inside-staging-area.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 33b5a31df6050110f4481a24f5a0a0bf7fe80096 Mon Sep 17 00:00:00 2001 | 1 | From 1cc4cab8d579bbccb8a4fc13a28158a58c603cb4 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Tue, 14 May 2013 15:00:26 -0700 | 3 | Date: Tue, 14 May 2013 15:00:26 -0700 |
4 | Subject: [PATCH] python3: Add target and native recipes | 4 | Subject: [PATCH] python3: Add target and native recipes |
diff --git a/meta/recipes-devtools/python/python3_3.10.5.bb b/meta/recipes-devtools/python/python3_3.10.6.bb index b237c48735..f19cd50273 100644 --- a/meta/recipes-devtools/python/python3_3.10.5.bb +++ b/meta/recipes-devtools/python/python3_3.10.6.bb | |||
@@ -44,7 +44,7 @@ SRC_URI:append:class-native = " \ | |||
44 | file://12-distutils-prefix-is-inside-staging-area.patch \ | 44 | file://12-distutils-prefix-is-inside-staging-area.patch \ |
45 | file://0001-Don-t-search-system-for-headers-libraries.patch \ | 45 | file://0001-Don-t-search-system-for-headers-libraries.patch \ |
46 | " | 46 | " |
47 | SRC_URI[sha256sum] = "8437efd5b106ef0a75aabfbf23d880625120a73a86a22ade4d2e2e68d7b74486" | 47 | SRC_URI[sha256sum] = "f795ff87d11d4b0c7c33bc8851b0c28648d8a4583aa2100a98c22b4326b6d3f3" |
48 | 48 | ||
49 | # exclude pre-releases for both python 2.x and 3.x | 49 | # exclude pre-releases for both python 2.x and 3.x |
50 | UPSTREAM_CHECK_REGEX = "[Pp]ython-(?P<pver>\d+(\.\d+)+).tar" | 50 | UPSTREAM_CHECK_REGEX = "[Pp]ython-(?P<pver>\d+(\.\d+)+).tar" |