summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-more-itertools_10.5.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-09-25 14:49:02 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-09-30 17:00:51 +0100
commit4f7aa68817880b93ab762cae8570a32feee54ed7 (patch)
tree3dc42fa237802f134483886899c62bae8855cf53 /meta/recipes-devtools/python/python3-more-itertools_10.5.0.bb
parent4f29d72dcfe9eb39aacac6cb9fe0133fd6d3463f (diff)
downloadpoky-4f7aa68817880b93ab762cae8570a32feee54ed7.tar.gz
python3-more-itertools: upgrade 10.4.0 -> 10.5.0
Changelog: =========== - Optimize all_equal recipe - Reduce groupby.next calls in all_equal - Fix types.UnionType (From OE-Core rev: 99ce47ff3606a44a1114d73ff4d4f77e711e0a3f) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-more-itertools_10.5.0.bb')
-rw-r--r--meta/recipes-devtools/python/python3-more-itertools_10.5.0.bb29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-more-itertools_10.5.0.bb b/meta/recipes-devtools/python/python3-more-itertools_10.5.0.bb
new file mode 100644
index 0000000000..a98b412b5d
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-more-itertools_10.5.0.bb
@@ -0,0 +1,29 @@
1SUMMARY = "More routines for operating on iterables, beyond itertools"
2HOMEPAGE = "https://github.com/erikrose/more-itertools"
3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=3396ea30f9d21389d7857719816f83b5"
5
6SRC_URI[sha256sum] = "5482bfef7849c25dc3c6dd53a6173ae4795da2a41a80faea6700d9f5846c5da6"
7
8inherit pypi python_flit_core ptest
9
10SRC_URI += " \
11 file://run-ptest \
12"
13
14RDEPENDS:${PN} += " \
15 python3-asyncio \
16 "
17
18RDEPENDS:${PN}-ptest += " \
19 python3-statistics \
20 python3-pytest \
21 python3-unittest-automake-output \
22 "
23
24do_install_ptest() {
25 install -d ${D}${PTEST_PATH}/tests
26 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
27}
28
29BBCLASSEXTEND = "native nativesdk"