mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-28 08:17:29 +00:00
d5883b05fe
Changelog: ========== - asyncio: detect cross-instance reentrant deadlocks before the poll loop - fix(soft_rw): evict non-regular write marker without reading it - _util: drop the dead st_mtime=0 short-circuit in raise_on_not_writable_file Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
32 lines
858 B
BlitzBasic
32 lines
858 B
BlitzBasic
# SPDX-License-Identifier: MIT
|
|
# Copyright (C) 2023 iris-GmbH infrared & intelligent sensors
|
|
SUMMARY = "A single module, which implements a platform independent file lock in Python, which provides a simple way of inter-process communication"
|
|
HOMEPAGE = "https://py-filelock.readthedocs.io/"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=2c6acbdf7bb74caa37512c3a5ca6857b"
|
|
|
|
SRC_URI += "file://run-ptest"
|
|
|
|
SRC_URI[sha256sum] = "5b481979797ae69e72f0b389d89a80bdd585c260c5b3f1fb9c0a5ba9bb3f195d"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
inherit pypi python_hatchling ptest-python-pytest
|
|
|
|
DEPENDS += "\
|
|
python3-hatch-vcs-native \
|
|
"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-core \
|
|
python3-logging \
|
|
python3-asyncio \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-pytest-asyncio \
|
|
python3-pytest-mock \
|
|
python3-virtualenv \
|
|
python3-discovery \
|
|
"
|