python3-rpds-py: upgrade 0.18.1 -> 0.20.0

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>
This commit is contained in:
Tim Orling
2024-08-12 19:44:22 -07:00
committed by Richard Purdie
parent b21a6211d6
commit 580935a842
2 changed files with 39 additions and 65 deletions

View File

@@ -0,0 +1,30 @@
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"