Files
meta-openembedded/meta-python/recipes-devtools/python3-exhale/python3-exhale_0.3.7.bb
T
Khem Raj a7ec280468 python3-exhale: add python3-wheel-native to DEPENDS
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>
2026-08-13 13:01:54 -07:00

23 lines
809 B
BlitzBasic

SUMMARY = "Automatic C++ library api documentation generation: breathe doxygen in and exhale it out. "
DESCRIPTION = "\
Automatic C++ library API documentation generator using Doxygen, Sphinx, and Breathe. \
Exhale revives Doxygen's class, file, and page hierarchies in reStructuredText documents \
to make these hierarchies available in Sphinx documented projects."
HOMEPAGE = "https://github.com/svenevs/exhale"
LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=fa7943919a123ae99ee86a0daf9e1871"
SRC_URI[sha256sum] = "752a96d0a59456511d933311d4a81f642cd668296eacd2561905727d5ed6b0d8"
inherit pypi python_setuptools_build_meta
DEPENDS += "python3-wheel-native"
PYPI_PACKAGE = "exhale"
RDEPENDS:${PN} = "\
python3-beautifulsoup4 \
"
BBCLASSEXTEND =+ "native nativesdk"