summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-extended/python3-portalocker/python3-portalocker_3.1.1.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2025-01-07 17:01:40 +0800
committerKhem Raj <raj.khem@gmail.com>2025-01-07 09:33:16 -0800
commit4d3968cc9fc4393f74be7076d2b1e025b8aa0814 (patch)
tree7a8c00e848e9264d26b5a47b62174efb0661f03e /meta-python/recipes-extended/python3-portalocker/python3-portalocker_3.1.1.bb
parentc4f7e7f51ea36983e4b1458f95ef4d5887c19050 (diff)
downloadmeta-openembedded-4d3968cc9fc4393f74be7076d2b1e025b8aa0814.tar.gz
python3-portalocker: upgrade 3.0.0 -> 3.1.1
Changelog: ========== - Improved type hints - removed accidental toml requirements Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-extended/python3-portalocker/python3-portalocker_3.1.1.bb')
-rw-r--r--meta-python/recipes-extended/python3-portalocker/python3-portalocker_3.1.1.bb36
1 files changed, 36 insertions, 0 deletions
diff --git a/meta-python/recipes-extended/python3-portalocker/python3-portalocker_3.1.1.bb b/meta-python/recipes-extended/python3-portalocker/python3-portalocker_3.1.1.bb
new file mode 100644
index 0000000000..7a36ab74e3
--- /dev/null
+++ b/meta-python/recipes-extended/python3-portalocker/python3-portalocker_3.1.1.bb
@@ -0,0 +1,36 @@
1SUMMARY = "Cross-platform locking library"
2DESCRIPTION = "Portalocker is a library to provide an easy API to file locking"
3LICENSE = "BSD-3-Clause"
4
5LIC_FILES_CHKSUM = "file://LICENSE;md5=152634da660a374ca18c0734ed07c63c"
6
7SRC_URI[sha256sum] = "ec20f6dda2ad9ce89fa399a5f31f4f1495f515958f0cb7ca6543cef7bb5a749e"
8
9DEPENDS += "python3-setuptools-scm-native"
10
11inherit pypi python_setuptools_build_meta ptest
12
13SRC_URI += " \
14 file://run-ptest \
15"
16
17RDEPENDS:${PN}-ptest += " \
18 python3-multiprocessing \
19 python3-pytest \
20 python3-redis \
21 python3-unittest-automake-output \
22 redis \
23"
24
25do_install_ptest() {
26 install -d ${D}${PTEST_PATH}/tests
27 cp -rf ${S}/portalocker_tests/* ${D}${PTEST_PATH}/tests/
28 rm -rf ${D}${PTEST_PATH}/tests/test_combined.py
29}
30
31RDEPENDS:${PN} += " \
32 python3-fcntl \
33 python3-logging \
34"
35
36BBCLASSEXTEND = "native nativesdk"