From: Ross Burton Date: Tue, 5 Nov 2024 16:12:27 +0000 (+0000) Subject: python3-pyyaml: rearrange recipe X-Git-Tag: yocto-5.2~1415 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=11739d4419b790c798ba9f2d2ef0086a8c39271d;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git python3-pyyaml: rearrange recipe Sort the recipe into a more traditional order, and remove a duplicated DEPENDS on libyaml. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/python/python3-pyyaml_6.0.2.bb b/meta/recipes-devtools/python/python3-pyyaml_6.0.2.bb index a41d073af95..10e61274b07 100644 --- a/meta/recipes-devtools/python/python3-pyyaml_6.0.2.bb +++ b/meta/recipes-devtools/python/python3-pyyaml_6.0.2.bb @@ -1,38 +1,39 @@ SUMMARY = "Python support for YAML" -DEPENDS += "libyaml python3-cython-native" HOMEPAGE = "https://pyyaml.org/" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=6d8242660a8371add5fe547adf083079" -inherit pypi python_setuptools_build_meta +DEPENDS += "python3-cython-native" SRC_URI[sha256sum] = "d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e" + +SRC_URI += "\ + https://raw.githubusercontent.com/yaml/pyyaml/a98fd6088e81d7aca571220c966bbfe2ac43c335/tests/test_dump_load.py;name=test \ + file://run-ptest \ +" +SRC_URI[test.sha256sum] = "b6a8a2825d89fdc8aee226560f66b8196e872012a0ea7118cbef1a832359434a" + UPSTREAM_CHECK_PYPI_PACKAGE = "PyYAML" +inherit pypi python_setuptools_build_meta ptest + PACKAGECONFIG ?= "libyaml" PACKAGECONFIG[libyaml] = "--with-libyaml,--without-libyaml,libyaml" +do_install_ptest() { + install -d ${D}${PTEST_PATH}/tests + cp -rf ${UNPACKDIR}/test_dump_load.py ${D}${PTEST_PATH}/tests/ +} + RDEPENDS:${PN} += "\ python3-datetime \ python3-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 += " \ python3-pytest \ python3-unittest-automake-output \ " -do_install_ptest() { - install -d ${D}${PTEST_PATH}/tests - cp -rf ${UNPACKDIR}/test_dump_load.py ${D}${PTEST_PATH}/tests/ -} - BBCLASSEXTEND = "native nativesdk"