diff options
author | alperak <alperyasinak1@gmail.com> | 2024-08-07 14:14:32 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-08-09 14:25:22 -0700 |
commit | 3dcd65a037db940800bf442b5f000750f9defa6b (patch) | |
tree | e9879d02b60aadf49b928ac654c31d1c4f27529f /meta-python | |
parent | 6436b317cab8573b6bc5910937e185ae9bdbbffd (diff) | |
download | meta-openembedded-3dcd65a037db940800bf442b5f000750f9defa6b.tar.gz |
python3-dbus-fast: switch to PEP-517 build backend
The project has a proper pyproject.toml which declares the poetry.core.masonry.api PEP-517 backend.
Fix:
WARNING: python3-dbus-fast-2.22.1-r0 do_check_backend: QA Issue: inherits setuptools3 but has pyproject.toml with poetry.core.masonry.api, use the correct class [pep517-backend]
Signed-off-by: alperak <alperyasinak1@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-dbus-fast_2.22.1.bb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python3-dbus-fast_2.22.1.bb b/meta-python/recipes-devtools/python/python3-dbus-fast_2.22.1.bb index 882b7f6cbe..c705b1700a 100644 --- a/meta-python/recipes-devtools/python/python3-dbus-fast_2.22.1.bb +++ b/meta-python/recipes-devtools/python/python3-dbus-fast_2.22.1.bb | |||
@@ -7,7 +7,13 @@ SRC_URI[sha256sum] = "aa75dfb5bc7ba42f53391ae503ca5a21bd133e74ebb09965013ba23bdf | |||
7 | 7 | ||
8 | PYPI_PACKAGE = "dbus_fast" | 8 | PYPI_PACKAGE = "dbus_fast" |
9 | 9 | ||
10 | inherit pypi setuptools3 | 10 | inherit pypi python_poetry_core |
11 | |||
12 | DEPENDS += " \ | ||
13 | python3-setuptools-native \ | ||
14 | python3-wheel-native \ | ||
15 | python3-cython-native \ | ||
16 | " | ||
11 | 17 | ||
12 | RDEPENDS:${PN} += " \ | 18 | RDEPENDS:${PN} += " \ |
13 | python3-core (>=3.7) \ | 19 | python3-core (>=3.7) \ |