mbox series

[00/17] python3-spdx-tools implementation

Message ID 20230922144628.2495839-1-samantha.jalabert@syslinbit.com
Headers show
Series python3-spdx-tools implementation | expand

Message

Samantha Jalabert Sept. 22, 2023, 2:46 p.m. UTC
From: Samantha Jalabert <samantha.jalabert@syslinbit.com>

This patchset is to implement spdx-tools, a tool for validating 2.2 spdx files and later spdx 3.0.

Marta Rybczynska (3):
  python3-ply: add to nativesdk
  python3-isodate: add homepage
  python3-rdflib: add homepage

Samantha Jalabert (14):
  python3-isodate: Copy recipe from meta-python
  python3-booleanpy: Copy recipe from meta-python
  python3-beartype: add recipe
  python3-click: Copy recipe from meta-python
  ptest-packagelists.inc: add python test click
  python3-license-expression: Copy recipe from meta-python
  ptest-packagelists.inc: add python test license-expression
  python3-rdflib: Copy recipe from meta-python
  python3-uritools: add recipe
  python3-xmltodict: Copy recipe from meta-python
  ptest-packagelists.inc: add python test xmltodict
  python3-spdx-tools: add recipe
  qa: Add selftest for python3-spdx-tools
  maintainers.inc: add python3-spdx-tools and dependencies

 meta/conf/distro/include/maintainers.inc      |  9 ++++
 .../distro/include/ptest-packagelists.inc     |  3 ++
 meta/lib/oeqa/selftest/cases/spdx.py          | 54 +++++++++++++++++++
 .../python/python3-beartype_0.15.0.bb         | 11 ++++
 .../python/python3-booleanpy_4.0.bb           | 13 +++++
 .../python/python3-click/run-ptest            |  3 ++
 .../python/python3-click_8.1.7.bb             | 39 ++++++++++++++
 .../python/python3-isodate_0.6.1.bb           | 16 ++++++
 .../python3-license-expression/run-ptest      |  3 ++
 .../python3-license-expression_30.1.1.bb      | 36 +++++++++++++
 .../python/python3-ply_3.11.bb                |  2 +-
 .../python/python3-rdflib_7.0.0.bb            | 21 ++++++++
 .../python/python3-spdx-tools_0.8.1.bb        | 28 ++++++++++
 .../python/python3-uritools_4.0.2.bb          | 11 ++++
 .../python/python3-xmltodict/run-ptest        |  3 ++
 .../python/python3-xmltodict_0.13.0.bb        | 31 +++++++++++
 16 files changed, 282 insertions(+), 1 deletion(-)
 create mode 100644 meta/lib/oeqa/selftest/cases/spdx.py
 create mode 100644 meta/recipes-devtools/python/python3-beartype_0.15.0.bb
 create mode 100644 meta/recipes-devtools/python/python3-booleanpy_4.0.bb
 create mode 100644 meta/recipes-devtools/python/python3-click/run-ptest
 create mode 100644 meta/recipes-devtools/python/python3-click_8.1.7.bb
 create mode 100644 meta/recipes-devtools/python/python3-isodate_0.6.1.bb
 create mode 100644 meta/recipes-devtools/python/python3-license-expression/run-ptest
 create mode 100644 meta/recipes-devtools/python/python3-license-expression_30.1.1.bb
 create mode 100644 meta/recipes-devtools/python/python3-rdflib_7.0.0.bb
 create mode 100644 meta/recipes-devtools/python/python3-spdx-tools_0.8.1.bb
 create mode 100644 meta/recipes-devtools/python/python3-uritools_4.0.2.bb
 create mode 100644 meta/recipes-devtools/python/python3-xmltodict/run-ptest
 create mode 100644 meta/recipes-devtools/python/python3-xmltodict_0.13.0.bb