mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Rename this class to be python-prefixed to match the other new Python build system classes. (From OE-Core rev: 25d6bf8079797906bde7c0cf63a0466c981ba5bb) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
767 B
BlitzBasic
21 lines
767 B
BlitzBasic
DESCRIPTION = "Read metadata from Python packages"
|
|
HOMEPAGE = "https://pypi.org/project/importlib-metadata/"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=e88ae122f3925d8bde8319060f2ddb8e"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
PYPI_PACKAGE = "importlib_metadata"
|
|
UPSTREAM_CHECK_REGEX = "/importlib-metadata/(?P<pver>(\d+[\.\-_]*)+)/"
|
|
|
|
SRC_URI[sha256sum] = "ea4c597ebf37142f827b8f39299579e31685c31d3a438b59f469406afd0f2539"
|
|
|
|
S = "${WORKDIR}/importlib_metadata-${PV}"
|
|
|
|
DEPENDS += "${PYTHON_PN}-setuptools-scm-native ${PYTHON_PN}-toml-native"
|
|
RDEPENDS:${PN} += "${PYTHON_PN}-zipp ${PYTHON_PN}-pathlib2"
|
|
RDEPENDS:${PN}:append:class-target = " python3-misc"
|
|
RDEPENDS:${PN}:append:class-nativesdk = " python3-misc"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|