mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Changelog: ============== - fix license expression error handling in tag-value parser - spdx3: software_purpose: add REQUIREMENT type - fix tag-value parser: parse Tool or Organization as annotator - shorten output of FileNotFoundError when called via the CLI - fix tag-value output when related_spdx_element_id is "NONE" or "NOASSERTION" - catch decoding errors while parsing using the cli tool - replace Licensing() with spdx_licensing - spdx3: element_writer: switch from tab characters to two spaces - fix tag-value parser to allow NONE and NOASSERTION for package source info as they are valid strings - update changelog for 0.8.3 release (From OE-Core rev: 04170316a0842f097ecca5b699512b551f20ad32) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
844 B
BlitzBasic
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] = "68b8f9ce2893b5216bd90b2e63f1c821c2884e4ebc4fd295ebbf1fa8b8a94b93"
|
|
|
|
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 \
|
|
"
|