From cbc0b73b9bf456c8c08e3bb6d593b5953cc9ff3e Mon Sep 17 00:00:00 2001 From: Tim Orling Date: Tue, 12 Oct 2021 02:08:50 +0000 Subject: python3-more-itertools: upgrade 8.9.0 -> 8.10.0 8.10.0 Changes to existing functions - The type stub for iter_except was improved (thanks to MarcinKonowalczyk) Other changes: - Type stubs now ship with the source release (thanks to saaketp) - The Sphinx docs were improved (thanks to MarcinKonowalczyk) 8.9.0 New functions - interleave_evenly (thanks to mbugert) - repeat_each (thanks to FinalSh4re) - chunked_even (thanks to valtron) - map_if (thanks to sassbalint) - zip_broadcast (thanks to kalekundert) Changes to existing functions - The type stub for chunked was improved (thanks to PhilMacKay) - The type stubs for zip_equal and zip_offset were improved (thanks to maffoo) - Building Sphinx docs locally was improved (thanks to MarcinKonowalczyk) (From OE-Core rev: 981014d7122270ceca961e7f88a2b6d1aa322361) Signed-off-by: Tim Orling Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- .../python/python3-more-itertools_8.10.0.bb | 27 ++++++++++++++++++++++ .../python/python3-more-itertools_8.9.0.bb | 27 ---------------------- 2 files changed, 27 insertions(+), 27 deletions(-) create mode 100644 meta/recipes-devtools/python/python3-more-itertools_8.10.0.bb delete mode 100644 meta/recipes-devtools/python/python3-more-itertools_8.9.0.bb diff --git a/meta/recipes-devtools/python/python3-more-itertools_8.10.0.bb b/meta/recipes-devtools/python/python3-more-itertools_8.10.0.bb new file mode 100644 index 0000000000..93d3ad60f8 --- /dev/null +++ b/meta/recipes-devtools/python/python3-more-itertools_8.10.0.bb @@ -0,0 +1,27 @@ +DESCRIPTION = "More routines for operating on iterables, beyond itertools" +HOMEPAGE = "https://github.com/erikrose/more-itertools" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=3396ea30f9d21389d7857719816f83b5" + +SRC_URI[sha256sum] = "1debcabeb1df793814859d64a81ad7cb10504c24349368ccf214c664c474f41f" + +inherit pypi setuptools3 ptest + +SRC_URI += " \ + file://run-ptest \ +" + +RDEPENDS:${PN} += " \ + ${PYTHON_PN}-asyncio \ + " + +RDEPENDS:${PN}-ptest += " \ + ${PYTHON_PN}-pytest \ + " + +do_install_ptest() { + install -d ${D}${PTEST_PATH}/tests + cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ +} + +BBCLASSEXTEND = "native nativesdk" diff --git a/meta/recipes-devtools/python/python3-more-itertools_8.9.0.bb b/meta/recipes-devtools/python/python3-more-itertools_8.9.0.bb deleted file mode 100644 index 041c865ef6..0000000000 --- a/meta/recipes-devtools/python/python3-more-itertools_8.9.0.bb +++ /dev/null @@ -1,27 +0,0 @@ -DESCRIPTION = "More routines for operating on iterables, beyond itertools" -HOMEPAGE = "https://github.com/erikrose/more-itertools" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE;md5=3396ea30f9d21389d7857719816f83b5" - -SRC_URI[sha256sum] = "8c746e0d09871661520da4f1241ba6b908dc903839733c8203b552cffaf173bd" - -inherit pypi setuptools3 ptest - -SRC_URI += " \ - file://run-ptest \ -" - -RDEPENDS:${PN} += " \ - ${PYTHON_PN}-asyncio \ - " - -RDEPENDS:${PN}-ptest += " \ - ${PYTHON_PN}-pytest \ - " - -do_install_ptest() { - install -d ${D}${PTEST_PATH}/tests - cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ -} - -BBCLASSEXTEND = "native nativesdk" -- cgit v1.2.3-54-g00ecf