From: Bartosz Golaszewski <brgl@bgdev.pl>
To: Khem Raj <raj.khem@gmail.com>,
Bruce Ashfield <bruce.ashfield@gmail.com>,
openembedded-devel@lists.openembedded.org
Cc: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Subject: [meta-python][RESEND PATCH 46/54] python3-coverage: fix coding style and RDEPENDS
Date: Mon, 19 Jun 2023 15:22:06 +0200 [thread overview]
Message-ID: <20230619132214.213417-47-brgl@bgdev.pl> (raw)
In-Reply-To: <20230619132214.213417-1-brgl@bgdev.pl>
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
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>
---
.../python/python3-coverage_7.2.7.bb | 19 +++++++++----------
1 file 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 f625996ba..a69c05d25 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 \
"
--
2.39.2
next prev parent reply other threads:[~2023-06-19 13:23 UTC|newest]
Thread overview: 60+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-19 13:21 [meta-python][RESEND PATCH 00/54] python3: improve run-time dependencies situation Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 01/54] python3-pywbem: drop unneeded class from RDEPENDS Bartosz Golaszewski
2023-06-20 1:15 ` Khem Raj
2023-06-20 18:03 ` Khem Raj
2023-06-20 18:14 ` Khem Raj
2023-06-21 9:50 ` Bartosz Golaszewski
2023-06-21 14:43 ` Khem Raj
2023-06-19 13:21 ` [meta-python][RESEND PATCH 02/54] python3-pywbem: don't use PYTHON_PN Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 03/54] python3-pywbem: order RDEPENDS alphabetically Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 04/54] python3-pywbem: add missing run-time dependencies Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 05/54] python3-padatious: " Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 06/54] python3-pako: " Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 07/54] python3-paramiko: stop using PYTHON_PN Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 08/54] python3-paramiko: add missing run-time dependencies Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 09/54] python3-path: fix coding style Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 10/54] python3-path: add missing run-time dependencies Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 11/54] python3-ecdsa: don't install tests Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 12/54] python3-et-xmlfile: fix coding style Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 13/54] python3-et-xmlfile: add missing run-time dependencies Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 14/54] python3-flask-user: fix coding style Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 15/54] python3-flask-user: add missing run-time dependencies Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 16/54] python3-isort: fix coding style Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 17/54] python3-isort: add missing run-time dependencies Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 18/54] python3-isodate: stop using PYTHON_PN Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 19/54] python3-isodate: add missing run-time dependencies Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 20/54] python-idna-ssl: " Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 21/54] python3-hpack: " Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 22/54] python3-h11: " Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 23/54] python3-gsocketpool: drop unneeded DEPENDS Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 24/54] python3-gsocketpool: stop using PYTHON_PN Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 25/54] python3-gsocketpool: add missing run-time dependencies Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 26/54] python3-flask-mail: stop using PYTHON_PN Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 27/54] python3-flask-mail: add missing run-time dependencies Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 28/54] python3-flask-sijax: stop using PYTHON_PN Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 29/54] python3-flask-sijax: add missing run-time dependencies Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 30/54] python3-flask-script: remove recipe Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 31/54] python3-aioserial: fix coding style Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 32/54] python3-aioserial: add missing run-time dependencies Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 33/54] python3-aspectlib: " Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 34/54] python3-asyncio-throttle: " Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 35/54] python3-attrdict3: " Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 36/54] python3-betamax: " Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 37/54] python3-binwalk: " Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 38/54] python3-can: fix coding style Bartosz Golaszewski
2023-06-19 13:21 ` [meta-python][RESEND PATCH 39/54] python3-can: add missing run-time dependencies Bartosz Golaszewski
2023-06-19 13:22 ` [meta-python][RESEND PATCH 40/54] python3-click-spinner: " Bartosz Golaszewski
2023-06-19 13:22 ` [meta-python][RESEND PATCH 41/54] python3-colorlog: " Bartosz Golaszewski
2023-06-19 13:22 ` [meta-python][RESEND PATCH 42/54] python3-colorzero: " Bartosz Golaszewski
2023-06-19 13:22 ` [meta-python][RESEND PATCH 43/54] python3-configobj: fix coding style Bartosz Golaszewski
2023-06-19 13:22 ` [meta-python][RESEND PATCH 44/54] python3-configobj: add missing run-time dependencies Bartosz Golaszewski
2023-06-19 13:22 ` [meta-python][RESEND PATCH 45/54] python3-configshell-fb: " Bartosz Golaszewski
2023-06-19 13:22 ` Bartosz Golaszewski [this message]
2023-06-19 13:22 ` [meta-python][RESEND PATCH 47/54] python3-custom-inherit: " Bartosz Golaszewski
2023-06-19 13:22 ` [meta-python][RESEND PATCH 48/54] python3-dateparser: fix coding style Bartosz Golaszewski
2023-06-19 13:22 ` [meta-python][RESEND PATCH 49/54] python3-dateparser: add missing run-time dependencies Bartosz Golaszewski
2023-06-19 13:22 ` [meta-python][RESEND PATCH 50/54] python3-tzlocal: fix coding style Bartosz Golaszewski
2023-06-19 13:22 ` [meta-python][RESEND PATCH 51/54] python3-tzlocal: add missing run-time dependencies Bartosz Golaszewski
2023-06-19 13:22 ` [meta-python][RESEND PATCH 52/54] python3-dbus-next: " Bartosz Golaszewski
2023-06-19 13:22 ` [meta-python][RESEND PATCH 53/54] python3-defusedxml: " Bartosz Golaszewski
2023-06-19 13:22 ` [meta-python][RESEND PATCH 54/54] python3-setuptools-scm-git-archive: " Bartosz Golaszewski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230619132214.213417-47-brgl@bgdev.pl \
--to=brgl@bgdev.pl \
--cc=bartosz.golaszewski@linaro.org \
--cc=bruce.ashfield@gmail.com \
--cc=openembedded-devel@lists.openembedded.org \
--cc=raj.khem@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.