diff options
| author | Samantha Jalabert <samantha.jalabert@syslinbit.com> | 2023-09-22 14:46:27 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-09-27 11:47:42 +0100 |
| commit | 1be0c80ab7003c0ff76738d70e5870c886ea3182 (patch) | |
| tree | 99f5228dc05808705984c012b86e5e71e0a4a040 | |
| parent | 8b3c0a2256dee0a090a57c683fca3922f482727b (diff) | |
| download | poky-1be0c80ab7003c0ff76738d70e5870c886ea3182.tar.gz | |
python3-spdx-tools: add recipe
python3-spdx-tools provides tools for SPDX validation and conversion.
(From OE-Core rev: 4482435d82a5e44c500715d5db0cd05f9876e5f4)
Signed-off-by: Marta Rybczynska <mrybczynska@syslinbit.com>
Signed-off-by: Samantha Jalabert <samantha.jalabert@syslinbit.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-devtools/python/python3-spdx-tools_0.8.1.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-spdx-tools_0.8.1.bb b/meta/recipes-devtools/python/python3-spdx-tools_0.8.1.bb new file mode 100644 index 0000000000..f58a138430 --- /dev/null +++ b/meta/recipes-devtools/python/python3-spdx-tools_0.8.1.bb | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | SUMMARY = "Python tool to parse, validate and convert spdx files" | ||
| 2 | HOMEPAGE = "https://github.com/spdx/tools-python" | ||
| 3 | |||
| 4 | LICENSE = "Apache-2.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=dc7f21ccff0f672f2a7cd6f412ae627d" | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "c83652cd65b5726058dcbdaab85839dbe484c43ea6f61046137516aa1b8428ae" | ||
| 8 | |||
| 9 | BBCLASSEXTEND = "native nativesdk" | ||
| 10 | |||
| 11 | inherit setuptools3 pypi | ||
| 12 | |||
| 13 | # Dependency required for pyspdxtools : python3-click | ||
| 14 | # Dependencies required for conversion to spdx3 : python3-semantic-version, python3-ply | ||
| 15 | RDEPENDS:${PN} += "\ | ||
| 16 | python3-core \ | ||
| 17 | python3-beartype \ | ||
| 18 | python3-click \ | ||
| 19 | python3-datetime \ | ||
| 20 | python3-json \ | ||
| 21 | python3-license-expression \ | ||
| 22 | python3-ply \ | ||
| 23 | python3-pyyaml \ | ||
| 24 | python3-rdflib \ | ||
| 25 | python3-semantic-version \ | ||
| 26 | python3-uritools \ | ||
| 27 | python3-xmltodict \ | ||
| 28 | " | ||
