Files
poky/meta/recipes-devtools/python/python3-spdx-tools_0.8.2.bb
Ross Burton d047149ecc python3-spdx-tools: use python_setuptools_build_meta build class
This package can be built using pep517 classes now.

(From OE-Core rev: 1deca862432ddca0d10a712f7bf159816d0ae130)

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-07-24 22:51:40 +01:00

31 lines
844 B
BlitzBasic

SUMMARY = "Python tool to parse, validate and convert spdx files"
HOMEPAGE = "https://github.com/spdx/tools-python"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=dc7f21ccff0f672f2a7cd6f412ae627d"
SRC_URI[sha256sum] = "aea4ac9c2c375e7f439b1cef5ff32ef34914c083de0f61e08ed67cd3d9deb2a9"
BBCLASSEXTEND = "native nativesdk"
inherit pypi python_setuptools_build_meta
DEPENDS += "python3-setuptools-scm-native"
# Dependency required for pyspdxtools : python3-click
# Dependencies required for conversion to spdx3 : python3-semantic-version, python3-ply
RDEPENDS:${PN} += "\
python3-core \
python3-beartype \
python3-click \
python3-datetime \
python3-json \
python3-license-expression \
python3-ply \
python3-pyyaml \
python3-rdflib \
python3-semantic-version \
python3-uritools \
python3-xmltodict \
"