mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
Upstream is in the process of migrating testing to pytest, backport
test_dump_load.py (the legacy_tests were throwing Errors and Failures).
We don't really need to run upstream's test suite, but we do need to verify
that our runtime is functional.
a98fd6088e
(From OE-Core rev: b0fdf0688109ba6b87840a0837bebee3d9a27089)
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
41 lines
1.1 KiB
BlitzBasic
41 lines
1.1 KiB
BlitzBasic
SUMMARY = "Python support for YAML"
|
|
DEPENDS += "libyaml ${PYTHON_PN}-cython-native"
|
|
HOMEPAGE = "https://pyyaml.org/"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=6d8242660a8371add5fe547adf083079"
|
|
|
|
PYPI_PACKAGE = "PyYAML"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
SRC_URI += "file://0001-Fix-builds-with-Cython-3.patch"
|
|
SRC_URI[sha256sum] = "bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"
|
|
|
|
PACKAGECONFIG ?= "libyaml"
|
|
PACKAGECONFIG[libyaml] = "--with-libyaml,--without-libyaml,libyaml"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
${PYTHON_PN}-datetime \
|
|
${PYTHON_PN}-netclient \
|
|
"
|
|
|
|
inherit ptest
|
|
SRC_URI += "\
|
|
https://raw.githubusercontent.com/yaml/pyyaml/a98fd6088e81d7aca571220c966bbfe2ac43c335/tests/test_dump_load.py;name=test \
|
|
file://run-ptest \
|
|
"
|
|
SRC_URI[test.sha256sum] = "b6a8a2825d89fdc8aee226560f66b8196e872012a0ea7118cbef1a832359434a"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
${PYTHON_PN}-pytest \
|
|
${PYTHON_PN}-unittest-automake-output \
|
|
"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
cp -rf ${WORKDIR}/test_dump_load.py ${D}${PTEST_PATH}/tests/
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|