mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-08-15 14:11:24 +00:00
cef3a83c91
setuptools3.bbclass and python_setuptools_build_meta.bbclass no longer
add python3-wheel-native to DEPENDS by default, following oe-core
commit e546c697b7 ("classes/setuptools3: remove wheel dependency"),
since setuptools >= 70.1.0 no longer needs the external wheel package
to build a wheel.
This recipe's pyproject.toml/setup.py still declares wheel as a build
requirement, so pyproject-build's --no-isolation dependency check now
fails:
ERROR Unmet dependencies (checked against .../recipe-sysroot-native/usr/bin/nativepython3):
wheel
wanted: any
found: not installed
Add python3-wheel-native to DEPENDS directly to satisfy it.
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
42 lines
1.0 KiB
BlitzBasic
42 lines
1.0 KiB
BlitzBasic
SUMMARY = "Bluetooth Stack for Apps, Emulation, Test and Experimentation"
|
|
HOMEPAGE = "https://github.com/google/bumble"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=7a775f1b11285b6abedd76748d176125"
|
|
|
|
SRC_URI[sha256sum] = "0883e2dc744f0b8228f5095f54bdf8df7f74e47d92bc5fd97ebfc2ee48630f54"
|
|
|
|
inherit pypi python_setuptools_build_meta ptest-python-pytest
|
|
|
|
DEPENDS += "python3-wheel-native"
|
|
|
|
DEPENDS += "python3-setuptools-scm-native"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
libusb1 \
|
|
python3-appdirs \
|
|
python3-click \
|
|
python3-cryptography \
|
|
python3-grpcio \
|
|
python3-humanize \
|
|
python3-platformdirs \
|
|
python3-prettytable \
|
|
python3-prompt-toolkit \
|
|
python3-protobuf \
|
|
python3-pyee \
|
|
python3-pyserial \
|
|
python3-pyserial-asyncio \
|
|
python3-pyusb \
|
|
python3-websockets \
|
|
python3-libusb1 \
|
|
"
|
|
RDEPENDS:${PN}-ptest += "\
|
|
python3-pytest-asyncio \
|
|
python3-aiohttp \
|
|
"
|
|
# WARNING: We were unable to map the following python package/module
|
|
# runtime dependencies to the bitbake packages which include them:
|
|
# libusb-package
|
|
# pyee
|
|
|
|
PYPI_PACKAGE = "bumble"
|