diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2025-06-30 17:13:06 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-07-07 22:12:50 +0100 |
| commit | 940f1fdca2fde70412dd3820d120c5eb1dbbae9b (patch) | |
| tree | 3c64f0df3e635aa756b30ad33bf644af36283ba7 /meta/recipes-devtools/python/python3-license-expression_30.4.3.bb | |
| parent | 829710064767de265ee5bfc60a45df6ef4bb4af7 (diff) | |
| download | poky-940f1fdca2fde70412dd3820d120c5eb1dbbae9b.tar.gz | |
python3-license-expression: upgrade 30.4.1 -> 30.4.3
Changelog:
=============
- Fix missing release wheels
- Fix typo in README.rst for SPDX license list version
- Fix LicenseWithExceptionSymbol missing Expression class variables
- Depcreated licenses are loaded by default.
(From OE-Core rev: 10e7563b49bafb6c496de40435d12a676c9a2632)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-license-expression_30.4.3.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-license-expression_30.4.3.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-license-expression_30.4.3.bb b/meta/recipes-devtools/python/python3-license-expression_30.4.3.bb new file mode 100644 index 0000000000..065284ed62 --- /dev/null +++ b/meta/recipes-devtools/python/python3-license-expression_30.4.3.bb | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | SUMMARY = "Utility library to parse, compare, simplify and normalize license expressions" | ||
| 2 | HOMEPAGE = "https://github.com/nexB/license-expression" | ||
| 3 | |||
| 4 | LICENSE = "Apache-2.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://apache-2.0.LICENSE;md5=86d3f3a95c324c9479bd8986968f4327" | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "49f439fea91c4d1a642f9f2902b58db1d42396c5e331045f41ce50df9b40b1f2" | ||
| 8 | |||
| 9 | inherit pypi ptest-python-pytest python_setuptools_build_meta | ||
| 10 | PYPI_PACKAGE = "license_expression" | ||
| 11 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" | ||
| 12 | |||
| 13 | DEPENDS += "python3-setuptools-scm-native" | ||
| 14 | |||
| 15 | RDEPENDS:${PN} += "\ | ||
| 16 | python3-booleanpy \ | ||
| 17 | python3-core \ | ||
| 18 | python3-json \ | ||
| 19 | python3-stringold \ | ||
| 20 | python3-logging \ | ||
| 21 | " | ||
| 22 | |||
| 23 | BBCLASSEXTEND = "native nativesdk" | ||
| 24 | |||
| 25 | do_install_ptest:append() { | ||
| 26 | # The tests need some files from the source tree | ||
| 27 | install -d ${D}${PTEST_PATH}/src | ||
| 28 | ln -s ${PYTHON_SITEPACKAGES_DIR}/license_expression/ ${D}${PTEST_PATH}/src/ | ||
| 29 | install -m644 ${S}/setup.cfg ${D}${PTEST_PATH}/ | ||
| 30 | } | ||
