diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-09-25 14:49:02 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-09-30 17:00:51 +0100 |
| commit | 4f7aa68817880b93ab762cae8570a32feee54ed7 (patch) | |
| tree | 3dc42fa237802f134483886899c62bae8855cf53 /meta/recipes-devtools/python/python3-more-itertools_10.5.0.bb | |
| parent | 4f29d72dcfe9eb39aacac6cb9fe0133fd6d3463f (diff) | |
| download | poky-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.bb | 29 |
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 @@ | |||
| 1 | SUMMARY = "More routines for operating on iterables, beyond itertools" | ||
| 2 | HOMEPAGE = "https://github.com/erikrose/more-itertools" | ||
| 3 | LICENSE = "MIT" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3396ea30f9d21389d7857719816f83b5" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "5482bfef7849c25dc3c6dd53a6173ae4795da2a41a80faea6700d9f5846c5da6" | ||
| 7 | |||
| 8 | inherit pypi python_flit_core ptest | ||
| 9 | |||
| 10 | SRC_URI += " \ | ||
| 11 | file://run-ptest \ | ||
| 12 | " | ||
| 13 | |||
| 14 | RDEPENDS:${PN} += " \ | ||
| 15 | python3-asyncio \ | ||
| 16 | " | ||
| 17 | |||
| 18 | RDEPENDS:${PN}-ptest += " \ | ||
| 19 | python3-statistics \ | ||
| 20 | python3-pytest \ | ||
| 21 | python3-unittest-automake-output \ | ||
| 22 | " | ||
| 23 | |||
| 24 | do_install_ptest() { | ||
| 25 | install -d ${D}${PTEST_PATH}/tests | ||
| 26 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 27 | } | ||
| 28 | |||
| 29 | BBCLASSEXTEND = "native nativesdk" | ||
