mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
https://github.com/crate-py/rpds/compare/v0.20.0...v0.18.1 v0.20.0 * Implements __hash__ for collections by @FlickerSoul in #81 v0.19.1 * Make Python versions in GitHub Actions consistent by @rominf in #80 v0.19.0 * deps: bump libc from 0.2.147 to 0.2.155 by @wxpppp in #74 * Make Python 3.13 Compatible by @FlickerSoul in #79 (From OE-Core rev: ec08c14aa4b752abd1a41cbee328dcb19056ee7f) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
767 B
BlitzBasic
31 lines
767 B
BlitzBasic
SUMMARY = "Python bindings to the Rust rpds crate for persistent data structures."
|
|
HOMEPAGE = "https://pypi.org/project/rpds-py/"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=7767fa537c4596c54141f32882c4a984"
|
|
|
|
SRC_URI += "file://run-ptest"
|
|
|
|
SRC_URI[sha256sum] = "d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121"
|
|
|
|
require ${BPN}-crates.inc
|
|
|
|
inherit pypi cargo-update-recipe-crates python_maturin ptest
|
|
|
|
PYPI_PACKAGE = "rpds_py"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-iniconfig \
|
|
python3-packaging \
|
|
python3-pluggy \
|
|
python3-pytest \
|
|
python3-unittest-automake-output \
|
|
"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|