diff options
author | Xu Huan <xuhuan.fnst@fujitsu.com> | 2022-07-22 11:31:50 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-07-24 06:28:56 -0700 |
commit | 99b8eb24d9bcfdf9cb9738547f5a9e92d898db53 (patch) | |
tree | ba9bfdb06a0d24b91f46e78ec7f4138b897a5949 | |
parent | 016947fbbd8a62def554c4648ce7aed1f18e0986 (diff) | |
download | meta-openembedded-99b8eb24d9bcfdf9cb9738547f5a9e92d898db53.tar.gz |
python3-portalocker: upgrade 2.4.0 -> 2.5.1
Add dependence python3-fcntl python3-logging
Changelog:
===========
Added clear warning when locking in non-blocking mode without specifying
either EXCLUSIVE or SHARED mode. Fixes #77
Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.5.1.bb (renamed from meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.4.0.bb) | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.4.0.bb b/meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.5.1.bb index e3b55a7ea..55037d1eb 100644 --- a/meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.4.0.bb +++ b/meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.5.1.bb | |||
@@ -4,8 +4,13 @@ LICENSE = "PSF-2.0" | |||
4 | 4 | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=f9273424c73af966635d66eb53487e14" | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=f9273424c73af966635d66eb53487e14" |
6 | 6 | ||
7 | SRC_URI[sha256sum] = "a648ad761b8ea27370cb5915350122cd807b820d2193ed5c9cc28f163df637f4" | 7 | SRC_URI[sha256sum] = "ae8e9cc2660da04bf41fa1a0eef7e300bb5e4a5869adfb1a6d8551632b559b2b" |
8 | 8 | ||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | BBCLASSEXTEND = "native nativesdk" | 11 | BBCLASSEXTEND = "native nativesdk" |
12 | |||
13 | RDEPENDS:${PN} += " \ | ||
14 | ${PYTHON_PN}-fcntl \ | ||
15 | ${PYTHON_PN}-logging \ | ||
16 | " | ||