summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>2023-05-17 10:06:21 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-05-22 10:53:49 +0100
commitcdd2b728d04f0f97de857b4884d54ae6b2521093 (patch)
tree8ca81330253ecdc324726ca5c4e1c42ddf790a13
parentd25d6fcd0ce544c4f99d919ca01bcc2ee4a24069 (diff)
downloadpoky-cdd2b728d04f0f97de857b4884d54ae6b2521093.tar.gz
python3-attrs: unify RDEPENDS
The nativesdk and target RDEPENDS are the same and there's nothing that prohibits this package from build built for the native sysroot either. Use the global RDEPENDS instead of per-class assignments. While at it: order the dependencies alphabetically. (From OE-Core rev: aaaeffe8fca578abcbc19bbb306ff4a8b21bb59e) Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/python/python3-attrs_23.1.0.bb6
1 files changed, 1 insertions, 5 deletions
diff --git a/meta/recipes-devtools/python/python3-attrs_23.1.0.bb b/meta/recipes-devtools/python/python3-attrs_23.1.0.bb
index c8e2e514a4..207636d62e 100644
--- a/meta/recipes-devtools/python/python3-attrs_23.1.0.bb
+++ b/meta/recipes-devtools/python/python3-attrs_23.1.0.bb
@@ -12,13 +12,9 @@ DEPENDS += " \
12 ${PYTHON_PN}-hatch-fancy-pypi-readme-native \ 12 ${PYTHON_PN}-hatch-fancy-pypi-readme-native \
13" 13"
14 14
15RDEPENDS:${PN}:class-target += " \ 15RDEPENDS:${PN}+= " \
16 ${PYTHON_PN}-crypt \
17 ${PYTHON_PN}-ctypes \ 16 ${PYTHON_PN}-ctypes \
18"
19RDEPENDS:${PN}:class-nativesdk += " \
20 ${PYTHON_PN}-crypt \ 17 ${PYTHON_PN}-crypt \
21 ${PYTHON_PN}-ctypes \
22" 18"
23 19
24BBCLASSEXTEND = "native nativesdk" 20BBCLASSEXTEND = "native nativesdk"