diff mbox series

[RESEND] python3-pip: add missing RDEPENDS

Message ID 20241011070204.7276-1-brgl@bgdev.pl
State New
Headers show
Series [RESEND] python3-pip: add missing RDEPENDS | expand

Commit Message

Bartosz Golaszewski Oct. 11, 2024, 7:02 a.m. UTC
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>

pip3 package is missing the runtime dependency on tomllib. Add
python3-modules to the recipe's RDEPENDS.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
---
Resending with correct tag.

 meta/recipes-devtools/python/python3-pip_24.2.bb | 1 +
 1 file changed, 1 insertion(+)

Comments

Alexander Kanavin Oct. 11, 2024, 8:20 a.m. UTC | #1
On Fri, 11 Oct 2024 at 09:02, Bartosz Golaszewski via
lists.openembedded.org <brgl=bgdev.pl@lists.openembedded.org> wrote:
>
> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
>
> pip3 package is missing the runtime dependency on tomllib. Add
> python3-modules to the recipe's RDEPENDS.

If only tomllib is needed, why do we need to pull in the full set of
modules? Please add only the specific missing dependencies.

Alex
Bartosz Golaszewski Oct. 11, 2024, 8:31 a.m. UTC | #2
On Fri, Oct 11, 2024 at 10:20 AM Alexander Kanavin
<alex.kanavin@gmail.com> wrote:
>
> On Fri, 11 Oct 2024 at 09:02, Bartosz Golaszewski via
> lists.openembedded.org <brgl=bgdev.pl@lists.openembedded.org> wrote:
> >
> > From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> >
> > pip3 package is missing the runtime dependency on tomllib. Add
> > python3-modules to the recipe's RDEPENDS.
>
> If only tomllib is needed, why do we need to pull in the full set of
> modules? Please add only the specific missing dependencies.
>

Eek, I looked at the manifest a bit too fast, I missed the separate
tomllib package. I will resend it.

Bart
diff mbox series

Patch

diff --git a/meta/recipes-devtools/python/python3-pip_24.2.bb b/meta/recipes-devtools/python/python3-pip_24.2.bb
index 5e1a467990..3019996f07 100644
--- a/meta/recipes-devtools/python/python3-pip_24.2.bb
+++ b/meta/recipes-devtools/python/python3-pip_24.2.bb
@@ -34,6 +34,7 @@  RDEPENDS:${PN} = "\
   python3-io \
   python3-html \
   python3-json \
+  python3-modules \
   python3-multiprocessing \
   python3-netserver \
   python3-setuptools \