diff options
author | Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> | 2021-12-09 21:33:16 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-12-12 11:27:24 +0000 |
commit | 2faf8fe58480b2e5909a51966e356609abe3f8f8 (patch) | |
tree | e0de7199670f2e678a1721dc0f709f2538d69aae /meta/recipes-devtools/python/python3/0017-setup.py-do-not-report-missing-dependencies-for-disa.patch | |
parent | 9fc8c38658f123ab2ebd8cc764ed4418b959467f (diff) | |
download | poky-2faf8fe58480b2e5909a51966e356609abe3f8f8.tar.gz |
python3: udpate to 3.10.1
Refreshed patches.
(From OE-Core rev: b82ea986a492791716c3da07a7d728edd17654c9)
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3/0017-setup.py-do-not-report-missing-dependencies-for-disa.patch')
-rw-r--r-- | meta/recipes-devtools/python/python3/0017-setup.py-do-not-report-missing-dependencies-for-disa.patch | 10 |
1 files changed, 5 insertions, 5 deletions
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 5823273af3..0ead57e465 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 a2dd127b4163aff6cc35af0d0251321964232ad4 Mon Sep 17 00:00:00 2001 | 1 | From 246c5ffe75a2d494e415d8a7522df9fe22056d41 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 |
@@ -14,14 +14,14 @@ Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | |||
14 | Signed-off-by: Alejandro Hernandez Samaniego <alejandro@enedino.org> | 14 | Signed-off-by: Alejandro Hernandez Samaniego <alejandro@enedino.org> |
15 | 15 | ||
16 | --- | 16 | --- |
17 | setup.py | 4 ++++ | 17 | setup.py | 8 ++++++++ |
18 | 1 file changed, 4 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 7691258..ec3f2a4 100644 | 21 | index 2be4738..62f0e18 100644 |
22 | --- a/setup.py | 22 | --- a/setup.py |
23 | +++ b/setup.py | 23 | +++ b/setup.py |
24 | @@ -408,6 +408,14 @@ class PyBuildExt(build_ext): | 24 | @@ -517,6 +517,14 @@ class PyBuildExt(build_ext): |
25 | print("%-*s %-*s %-*s" % (longest, e, longest, f, | 25 | print("%-*s %-*s %-*s" % (longest, e, longest, f, |
26 | longest, g)) | 26 | longest, g)) |
27 | 27 | ||