diff options
author | Bartosz Golaszewski <bartosz.golaszewski@linaro.org> | 2024-10-11 21:16:54 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-10-15 11:47:24 +0100 |
commit | 87134b630f79e9faef50c58943ff7d27ddfbe65e (patch) | |
tree | 65754af9f3a93fa7f532781ee41c4b7c76548d2b /meta | |
parent | 70672522bb027051f9a11a34f126c5619d0c8630 (diff) | |
download | poky-87134b630f79e9faef50c58943ff7d27ddfbe65e.tar.gz |
python3-pip: add missing RDEPENDS
pip3 package is missing the runtime dependency on tomllib. Add
python3-tomllib to the recipe's RDEPENDS. While at it: order the
dependencies alphabetically.
(From OE-Core rev: f0a932dfae5439d7cee2999455edaeb1b263befc)
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/python/python3-pip_24.2.bb | 7 |
1 files changed, 4 insertions, 3 deletions
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 | |||
31 | 31 | ||
32 | RDEPENDS:${PN} = "\ | 32 | RDEPENDS:${PN} = "\ |
33 | python3-compile \ | 33 | python3-compile \ |
34 | python3-io \ | ||
35 | python3-html \ | 34 | python3-html \ |
35 | python3-image \ | ||
36 | python3-io \ | ||
36 | python3-json \ | 37 | python3-json \ |
37 | python3-multiprocessing \ | 38 | python3-multiprocessing \ |
38 | python3-netserver \ | 39 | python3-netserver \ |
40 | python3-pickle \ | ||
39 | python3-setuptools \ | 41 | python3-setuptools \ |
42 | python3-tomllib \ | ||
40 | python3-unixadmin \ | 43 | python3-unixadmin \ |
41 | python3-xmlrpc \ | 44 | python3-xmlrpc \ |
42 | python3-pickle \ | ||
43 | python3-image \ | ||
44 | " | 45 | " |
45 | 46 | ||
46 | BBCLASSEXTEND = "native nativesdk" | 47 | BBCLASSEXTEND = "native nativesdk" |