From e74592c1cb32942ba54a1bac9e969785f982e873 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Wed, 31 May 2023 10:23:10 +0200 Subject: python3-pyusb: fix run-time dependencies Add the missing dependency on ctypes and drop libusb1 from RDEPENDS as it will be already present in the rootfs thanks to being in project's build-time dependencies. Signed-off-by: Bartosz Golaszewski Signed-off-by: Khem Raj --- meta-python/recipes-devtools/python/python3-pyusb_1.2.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-python/recipes-devtools/python/python3-pyusb_1.2.1.bb b/meta-python/recipes-devtools/python/python3-pyusb_1.2.1.bb index 286e9672b1..abe3529119 100644 --- a/meta-python/recipes-devtools/python/python3-pyusb_1.2.1.bb +++ b/meta-python/recipes-devtools/python/python3-pyusb_1.2.1.bb @@ -13,6 +13,6 @@ SRC_URI[sha256sum] = "a4cc7404a203144754164b8b40994e2849fde1cfff06b08492f12fff9d inherit pypi setuptools3 -RDEPENDS:${PN} += "libusb1" +RDEPENDS:${PN} += "python3-ctypes" BBCLASSEXTEND = "native nativesdk" -- cgit v1.2.3-54-g00ecf