diff options
author | Bartosz Golaszewski <bartosz.golaszewski@linaro.org> | 2023-05-31 10:22:17 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-06-06 23:07:58 -0700 |
commit | 40b4cf5a83098a5f1be873be5c29f26380bc7993 (patch) | |
tree | 66c8a13d10638e5a46682bade088f05b9cea969d | |
parent | b9ad32fc97a7929961a91b12fb424af87ef5d48e (diff) | |
download | meta-openembedded-40b4cf5a83098a5f1be873be5c29f26380bc7993.tar.gz |
python3-cson: fix run-time dependencies
Add the missing run-time dependency on python3-json. As a result we no
longer need to pull python3 native and can drop other *DEPENDS.
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-python/recipes-extended/python-cson/python3-cson_git.bb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta-python/recipes-extended/python-cson/python3-cson_git.bb b/meta-python/recipes-extended/python-cson/python3-cson_git.bb index f9b4b64a50..aba1d8fff3 100644 --- a/meta-python/recipes-extended/python-cson/python3-cson_git.bb +++ b/meta-python/recipes-extended/python-cson/python3-cson_git.bb | |||
@@ -14,8 +14,7 @@ SRC_URI = "git://github.com/gt3389b/python-cson.git;branch=master;protocol=https | |||
14 | 14 | ||
15 | S = "${WORKDIR}/git" | 15 | S = "${WORKDIR}/git" |
16 | 16 | ||
17 | RDEPENDS:${PN}:class-native = "" | 17 | RDEPENDS:${PN} = "python3-json" |
18 | DEPENDS:append:class-native = " python-native " | ||
19 | 18 | ||
20 | inherit setuptools3 | 19 | inherit setuptools3 |
21 | 20 | ||