diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-03-26 08:34:39 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-04-16 08:07:02 +0100 |
| commit | 19c5e810fd5beaa347ae12530eb9fdca03243d9b (patch) | |
| tree | b3327c20924bcfef5526530a6193812b8c41c329 /meta/recipes-devtools/python/python3-license-expression_30.3.0.bb | |
| parent | 59b89c7c81612b9dbc684d104501fe600a129329 (diff) | |
| download | poky-19c5e810fd5beaa347ae12530eb9fdca03243d9b.tar.gz | |
python3-license-expression: upgrade 30.2.0 -> 30.3.0
Changelog:
===========
-Use latest skeleton
-Update license list to latest ScanCode and SPDX 3.23
-Drop support for Python 3.7
-Release prep v30.3.0
(From OE-Core rev: c8763d3653ad5dd508d72163ba844f3f5b901136)
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-license-expression_30.3.0.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-license-expression_30.3.0.bb | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-license-expression_30.3.0.bb b/meta/recipes-devtools/python/python3-license-expression_30.3.0.bb new file mode 100644 index 0000000000..f36336b592 --- /dev/null +++ b/meta/recipes-devtools/python/python3-license-expression_30.3.0.bb | |||
| @@ -0,0 +1,38 @@ | |||
| 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] = "1295406f736b4f395ff069aec1cebfad53c0fcb3cf57df0f5ec58fc7b905aea5" | ||
| 8 | |||
| 9 | inherit pypi ptest python_setuptools_build_meta | ||
| 10 | |||
| 11 | DEPENDS += "python3-setuptools-scm-native" | ||
| 12 | |||
| 13 | RDEPENDS:${PN} += "\ | ||
| 14 | python3-booleanpy \ | ||
| 15 | python3-core \ | ||
| 16 | python3-json \ | ||
| 17 | python3-stringold \ | ||
| 18 | python3-logging \ | ||
| 19 | " | ||
| 20 | |||
| 21 | BBCLASSEXTEND = "native nativesdk" | ||
| 22 | |||
| 23 | SRC_URI += " \ | ||
| 24 | file://run-ptest \ | ||
| 25 | " | ||
| 26 | |||
| 27 | RDEPENDS:${PN}-ptest += " \ | ||
| 28 | python3-pytest \ | ||
| 29 | python3-unittest-automake-output \ | ||
| 30 | " | ||
| 31 | |||
| 32 | do_install_ptest() { | ||
| 33 | install -d ${D}${PTEST_PATH}/tests | ||
| 34 | install -d ${D}${PTEST_PATH}/src | ||
| 35 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 36 | cp -rf ${S}/src/* ${D}${PTEST_PATH}/src/ | ||
| 37 | cp -rf ${S}/setup.cfg ${D}${PTEST_PATH}/ | ||
| 38 | } | ||
