mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-08-15 02:01:37 +00:00
52804d8793
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>
26 lines
927 B
BlitzBasic
26 lines
927 B
BlitzBasic
SUMMARY = "Interface definitions for Zope products"
|
|
LICENSE = "ZPL-2.1"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=78ccb3640dc841e1baecb3e27a6966b2"
|
|
|
|
PYPI_PACKAGE = "zope_interface"
|
|
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
DEPENDS += "python3-wheel-native"
|
|
SRC_URI[sha256sum] = "7a3ba1c5877f0f3e3906b02ddf793abed2becc2948116414ce0e1dd820b68d6d"
|
|
PACKAGES =. "${PN}-test "
|
|
|
|
RPROVIDES:${PN} += "zope-interfaces"
|
|
|
|
RDEPENDS:${PN}:append:class-target = " python3-datetime"
|
|
RDEPENDS:${PN}-test += "python3-unittest python3-doctest"
|
|
|
|
FILES:${PN}-dbg += "${PYTHON_SITEPACKAGES_DIR}/*.egg/*/*/.debug"
|
|
FILES:${PN}-dev += "${PYTHON_SITEPACKAGES_DIR}/zope/interface/*.c"
|
|
FILES:${PN}-doc += "${PYTHON_SITEPACKAGES_DIR}/zope/interface/*.txt"
|
|
FILES:${PN}-test += " \
|
|
${PYTHON_SITEPACKAGES_DIR}/zope/interface/tests \
|
|
${PYTHON_SITEPACKAGES_DIR}/zope/interface/common/tests \
|
|
"
|