diff options
author | Bartosz Golaszewski <bartosz.golaszewski@linaro.org> | 2023-06-23 16:39:13 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-06-24 09:01:53 -0700 |
commit | 0f74b11f3786fcc0872dcbb87b4ab613ad9ccb6e (patch) | |
tree | 11f162e32e80984124e963b1866e076b695f0be4 /meta-python | |
parent | f839d29ca6cc69468a3832c80fb84d1afd20ac12 (diff) | |
download | meta-openembedded-0f74b11f3786fcc0872dcbb87b4ab613ad9ccb6e.tar.gz |
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 <bartosz.golaszewski@linaro.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-coverage_7.2.7.bb | 19 |
1 files changed, 9 insertions, 10 deletions
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 | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += " \ | 10 | RDEPENDS:${PN} += " \ |
11 | ${PYTHON_PN}-sqlite3 \ | 11 | python3-crypt \ |
12 | ${PYTHON_PN}-core \ | 12 | python3-io \ |
13 | ${PYTHON_PN}-pprint \ | 13 | python3-json \ |
14 | ${PYTHON_PN}-json \ | 14 | python3-multiprocessing \ |
15 | ${PYTHON_PN}-xml \ | 15 | python3-pprint \ |
16 | ${PYTHON_PN}-crypt \ | 16 | python3-shell \ |
17 | ${PYTHON_PN}-shell \ | 17 | python3-sqlite3 \ |
18 | ${PYTHON_PN}-io \ | 18 | python3-tomllib \ |
19 | ${PYTHON_PN}-toml \ | 19 | python3-xml \ |
20 | ${PYTHON_PN}-multiprocessing \ | ||
21 | " | 20 | " |