diff mbox series

[v2] python3-pip: add missing RDEPENDS

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

Commit Message

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

pip3 package is missing the runtime dependency on tomllib. Add
python3-tomllib to the recipe's RDEPENDS. While at it: order the
dependencies alphabetically.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
---
v1 -> v2:
- pull in python3-tomllib, not python3-modules
- order RDEPENDS alphabetically

 meta/recipes-devtools/python/python3-pip_24.2.bb | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
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..bc164415fe 100644
--- a/meta/recipes-devtools/python/python3-pip_24.2.bb
+++ b/meta/recipes-devtools/python/python3-pip_24.2.bb
@@ -31,16 +31,17 @@  SRC_URI[sha256sum] = "5b5e490b5e9cb275c879595064adce9ebd31b854e3e803740b72f9ccf3
 
 RDEPENDS:${PN} = "\
   python3-compile \
-  python3-io \
   python3-html \
+  python3-image \
+  python3-io \
   python3-json \
   python3-multiprocessing \
   python3-netserver \
+  python3-pickle \
   python3-setuptools \
+  python3-tomllib \
   python3-unixadmin \
   python3-xmlrpc \
-  python3-pickle \
-  python3-image \
 "
 
 BBCLASSEXTEND = "native nativesdk"