From: Bartosz Golaszewski <brgl@bgdev.pl>
To: Khem Raj <raj.khem@gmail.com>,
Bruce Ashfield <bruce.ashfield@gmail.com>,
openembedded-core@lists.openembedded.org
Cc: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Subject: [OE-core][PATCH 00/20] python3: fix run-time dependencies
Date: Wed, 17 May 2023 10:06:19 +0200 [thread overview]
Message-ID: <20230517080639.9336-1-brgl@bgdev.pl> (raw)
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
I noticed that every now and then I import some python package into an
image only to find out the recipe didn't pull in all required run-time
dependencies. I would fix it whenever I noticed it but figured that I
could right a script that would go over all python packages, build a
minimal image and see that all its modules can be imported.
The patches in this series are the result of that. Most simply add
missing RDEPENDS, some are additional tweaks to recipes and the last
three add new standard library packages to the manifest. These are the
ones for which simply adding python3-misc would still be insufficient in
terms of run-time dependencies.
I plan to do the same for meta-python but this will take more time and I
need to think of some automated way of updating the recipes first.
Bartosz Golaszewski (20):
python3-async: add missing run-time dependencies
python3-attrs: unify RDEPENDS
python3-attrs: don't use PYTHON_PN
python3-attrs: add missing run-time dependencies
python3-certifi: add missing run-time dependencies
python3-libfdt: new package
python3-dtschema: add missing run-time dependencies
python3-hypothesis: fix run-time dependencies
python3-tomli: add missing run-time dependencies
python3-pathspec: add missing run-time dependencies
python3-installer: add missing run-time dependencies
python3-sphinx-rtd-theme: add missing run-time dependencies
python3-setuptools-rust: fix RDEPENDS and allow target build
python3-pyproject-hooks: add missing run-time dependencies
python3-pycryptodome: don't use PYTHON_PN
python3-pycryptodome: add missing run-time dependencies
python3-pygobject: add missing run-time dependencies
python3-manifest: cgitb: new package
python3-manifest: zipapp: new package
python3-manifest: turtle: new package
meta/recipes-devtools/python/python-async.inc | 5 ++-
.../python/python-pycryptodome.inc | 8 ++--
.../python/python3-attrs_23.1.0.bb | 15 +++----
.../python/python3-certifi_2022.12.7.bb | 2 +
.../python/python3-dtschema_2023.4.bb | 7 +++-
.../python/python3-hypothesis_6.71.0.bb | 2 +-
.../python/python3-installer_0.7.0.bb | 6 +++
.../python/python3-libfdt_1.7.0.post1.bb | 20 +++++++++
.../python/python3-pathspec_0.11.1.bb | 2 +
.../python/python3-pygobject_3.44.1.bb | 5 ++-
.../python/python3-pyproject-hooks_1.0.0.bb | 5 ++-
.../python/python3-setuptools-rust_1.5.2.bb | 17 ++++----
.../python/python3-sphinx-rtd-theme_1.2.0.bb | 5 ++-
.../python/python3-tomli_2.0.1.bb | 5 +++
.../python/python3/python3-manifest.json | 42 +++++++++++++++++++
15 files changed, 121 insertions(+), 25 deletions(-)
create mode 100644 meta/recipes-devtools/python/python3-libfdt_1.7.0.post1.bb
--
2.39.2
next reply other threads:[~2023-05-17 8:06 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-17 8:06 Bartosz Golaszewski [this message]
2023-05-17 8:06 ` [OE-core][PATCH 01/20] python3-async: add missing run-time dependencies Bartosz Golaszewski
2023-05-17 16:15 ` Trevor Gamblin
2023-05-17 18:17 ` Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 02/20] python3-attrs: unify RDEPENDS Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 03/20] python3-attrs: don't use PYTHON_PN Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 04/20] python3-attrs: add missing run-time dependencies Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 05/20] python3-certifi: " Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 06/20] python3-libfdt: new package Bartosz Golaszewski
2023-05-17 16:16 ` Trevor Gamblin
2023-05-18 15:17 ` Alexandre Belloni
2023-05-17 16:32 ` Bruce Ashfield
2023-05-18 16:56 ` Ross Burton
2023-05-19 11:37 ` Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 07/20] python3-dtschema: add missing run-time dependencies Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 08/20] python3-hypothesis: fix " Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 09/20] python3-tomli: add missing " Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 10/20] python3-pathspec: " Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 11/20] python3-installer: " Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 12/20] python3-sphinx-rtd-theme: " Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 13/20] python3-setuptools-rust: fix RDEPENDS and allow target build Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 14/20] python3-pyproject-hooks: add missing run-time dependencies Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 15/20] python3-pycryptodome: don't use PYTHON_PN Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 16/20] python3-pycryptodome: add missing run-time dependencies Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 17/20] python3-pygobject: " Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 18/20] python3-manifest: cgitb: new package Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 19/20] python3-manifest: zipapp: " Bartosz Golaszewski
2023-05-17 8:06 ` [OE-core][PATCH 20/20] python3-manifest: turtle: " Bartosz Golaszewski
2023-05-17 8:38 ` [OE-core][PATCH 00/20] python3: fix run-time dependencies Alexander Kanavin
2023-05-19 0:06 ` Tim Orling
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230517080639.9336-1-brgl@bgdev.pl \
--to=brgl@bgdev.pl \
--cc=bartosz.golaszewski@linaro.org \
--cc=bruce.ashfield@gmail.com \
--cc=openembedded-core@lists.openembedded.org \
--cc=raj.khem@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.