From 0f74b11f3786fcc0872dcbb87b4ab613ad9ccb6e Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Fri, 23 Jun 2023 16:39:13 +0200 Subject: python3-coverage: fix coding style and RDEPENDS Don't use PYTHON_PN, order RDEPENDS alphabetically. Replace toml with tomllib to fix a run-time dependency issue. Signed-off-by: Bartosz Golaszewski Signed-off-by: Khem Raj --- .../recipes-devtools/python/python3-coverage_7.2.7.bb | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'meta-python/recipes-devtools') diff --git a/meta-python/recipes-devtools/python/python3-coverage_7.2.7.bb b/meta-python/recipes-devtools/python/python3-coverage_7.2.7.bb index f625996ba2..a69c05d25b 100644 --- a/meta-python/recipes-devtools/python/python3-coverage_7.2.7.bb +++ b/meta-python/recipes-devtools/python/python3-coverage_7.2.7.bb @@ -8,14 +8,13 @@ SRC_URI[sha256sum] = "924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f inherit pypi setuptools3 RDEPENDS:${PN} += " \ - ${PYTHON_PN}-sqlite3 \ - ${PYTHON_PN}-core \ - ${PYTHON_PN}-pprint \ - ${PYTHON_PN}-json \ - ${PYTHON_PN}-xml \ - ${PYTHON_PN}-crypt \ - ${PYTHON_PN}-shell \ - ${PYTHON_PN}-io \ - ${PYTHON_PN}-toml \ - ${PYTHON_PN}-multiprocessing \ + python3-crypt \ + python3-io \ + python3-json \ + python3-multiprocessing \ + python3-pprint \ + python3-shell \ + python3-sqlite3 \ + python3-tomllib \ + python3-xml \ " -- cgit v1.2.3-54-g00ecf