summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-license-expression_30.1.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2023-02-08 16:12:42 +0800
committerKhem Raj <raj.khem@gmail.com>2023-02-08 08:51:44 -0800
commit9b14ac9f4457865770ffe4e06eae2b9a69e00064 (patch)
tree6656caa9d9398fa64b8958072f693ca9d52937f9 /meta-python/recipes-devtools/python/python3-license-expression_30.1.0.bb
parentaafff40e023bff7cebef2cbb4440b7a6b6055b1f (diff)
downloadmeta-openembedded-9b14ac9f4457865770ffe4e06eae2b9a69e00064.tar.gz
python3-license-expression: upgrade 30.0.0 -> 30.1.0
Changelog: ========== Use latest skeleton (and updated configure script) Update license list to latest ScanCode and SPDX 3.19 Use correct syntax for python_require Drop using Travis and Appveyor Drop support for Python 3.7 and add Python 3.11 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-license-expression_30.1.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-license-expression_30.1.0.bb36
1 files changed, 36 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-license-expression_30.1.0.bb b/meta-python/recipes-devtools/python/python3-license-expression_30.1.0.bb
new file mode 100644
index 0000000000..5dfd02be4a
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-license-expression_30.1.0.bb
@@ -0,0 +1,36 @@
1SUMMARY = "Utility library to parse, compare, simplify and normalize license expressions"
2HOMEPAGE = "https://github.com/nexB/license-expression"
3
4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://apache-2.0.LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
6
7SRC_URI[sha256sum] = "943b1d2cde251bd30a166b509f78990fdd060be9750f3f1a324571e804857a53"
8
9inherit pypi ptest python_setuptools_build_meta
10
11DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
12
13RDEPENDS:${PN} += "\
14 ${PYTHON_PN}-booleanpy \
15 ${PYTHON_PN}-core \
16 ${PYTHON_PN}-json \
17 ${PYTHON_PN}-stringold \
18 ${PYTHON_PN}-logging \
19"
20
21BBCLASSEXTEND = "native nativesdk"
22
23SRC_URI += " \
24 file://run-ptest \
25"
26
27RDEPENDS:${PN}-ptest += " \
28 ${PYTHON_PN}-pytest \
29"
30
31do_install_ptest() {
32 install -d ${D}${PTEST_PATH}/tests
33 install -d ${D}${PTEST_PATH}/src
34 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
35 cp -rf ${S}/src/* ${D}${PTEST_PATH}/src/
36}