summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-spdx-tools_0.8.2.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-10-09 13:49:08 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-10-11 12:17:02 +0100
commit4a494e344aaa653ac7fd7f38c565b25948ee68f7 (patch)
tree54123ee011d30f4ac86b8ac464a2ac1c31bd9952 /meta/recipes-devtools/python/python3-spdx-tools_0.8.2.bb
parentf9a740bf6a0c4a78a12ae2c9c137c9243488a4a8 (diff)
downloadpoky-4a494e344aaa653ac7fd7f38c565b25948ee68f7.tar.gz
python3-spdx-tools: upgrade 0.8.2 -> 0.8.3
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>
Diffstat (limited to 'meta/recipes-devtools/python/python3-spdx-tools_0.8.2.bb')
-rw-r--r--meta/recipes-devtools/python/python3-spdx-tools_0.8.2.bb30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/recipes-devtools/python/python3-spdx-tools_0.8.2.bb b/meta/recipes-devtools/python/python3-spdx-tools_0.8.2.bb
deleted file mode 100644
index 6573ae9eee..0000000000
--- a/meta/recipes-devtools/python/python3-spdx-tools_0.8.2.bb
+++ /dev/null
@@ -1,30 +0,0 @@
1SUMMARY = "Python tool to parse, validate and convert spdx files"
2HOMEPAGE = "https://github.com/spdx/tools-python"
3
4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=dc7f21ccff0f672f2a7cd6f412ae627d"
6
7SRC_URI[sha256sum] = "aea4ac9c2c375e7f439b1cef5ff32ef34914c083de0f61e08ed67cd3d9deb2a9"
8
9BBCLASSEXTEND = "native nativesdk"
10
11inherit pypi python_setuptools_build_meta
12
13DEPENDS += "python3-setuptools-scm-native"
14
15# Dependency required for pyspdxtools : python3-click
16# Dependencies required for conversion to spdx3 : python3-semantic-version, python3-ply
17RDEPENDS:${PN} += "\
18 python3-core \
19 python3-beartype \
20 python3-click \
21 python3-datetime \
22 python3-json \
23 python3-license-expression \
24 python3-ply \
25 python3-pyyaml \
26 python3-rdflib \
27 python3-semantic-version \
28 python3-uritools \
29 python3-xmltodict \
30 "