mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Changelog: ============ -Add .symlink_to and .hardlink_to. -Add .cwd method and deprecated .getcwd. -Create 'absolute' method and deprecate 'abspath'. -In readlink, prefer the display path to the substitute path. -Restore functionality in .isdir and .isfile. -Added .is_dir and .is_file for parity with pathlib. Deprecates .isdir and .isfile. -Inlined some types. -Fix iterdir - it also accepts match. -Add type annotation for iterdir. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
35 lines
798 B
BlitzBasic
35 lines
798 B
BlitzBasic
SUMMARY = "A module wrapper for os.path"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=141643e11c48898150daa83802dbc65f"
|
|
|
|
SRC_URI[sha256sum] = "dbaaa7efd4602fd6ba8d82890dc7823d69e5de740a6e842d9919b0faaf2b6a8e"
|
|
|
|
SRC_URI += "\
|
|
file://run-ptest \
|
|
"
|
|
|
|
inherit pypi python_setuptools_build_meta ptest
|
|
|
|
DEPENDS += "python3-setuptools-scm-native"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-appdirs \
|
|
python3-crypt \
|
|
python3-io \
|
|
python3-numbers \
|
|
python3-shell \
|
|
"
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-pytest \
|
|
python3-unittest-automake-output \
|
|
"
|
|
|
|
BBCLASSEXTEND = "nativesdk native"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/test
|
|
cp -rf ${S}/test_* ${D}${PTEST_PATH}/test/
|
|
install -d ${D}${PTEST_PATH}/path
|
|
cp -rf ${S}/path/* ${D}${PTEST_PATH}/path/
|
|
}
|