python-more-itertools: new package

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Yegor Yefremov 2017-12-13 10:04:21 +01:00 committed by Thomas Petazzoni
parent a3c6ce5983
commit 6184dedc28
4 changed files with 26 additions and 0 deletions

View File

@ -812,6 +812,7 @@ menu "External python modules"
source "package/python-mbstrdecoder/Config.in"
source "package/python-meld3/Config.in"
source "package/python-mistune/Config.in"
source "package/python-more-itertools/Config.in"
source "package/python-msgpack/Config.in"
source "package/python-mutagen/Config.in"
source "package/python-mwclient/Config.in"

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_MORE_ITERTOOLS
bool "python-more-itertools"
select BR2_PACKAGE_PYTHON_SIX # runtime
help
More routines for operating on iterables, beyond itertools.
https://github.com/erikrose/more-itertools

View File

@ -0,0 +1,4 @@
# md5 from https://pypi.python.org/pypi/more-itertools/json, sha256 locally computed
md5 fef89b28d050e325fbb7eb209e75ab45 more-itertools-4.0.1.tar.gz
sha256 5d21dcefa19782f9ec9aa64e0bfd903f5024512b1e1f17519800b193b2e64d31 more-itertools-4.0.1.tar.gz
sha256 09f1c8c9e941af3e584d59641ea9b87d83c0cb0fd007eb5ef391a7e2643c1a46 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-more-itertools
#
################################################################################
PYTHON_MORE_ITERTOOLS_VERSION = 4.0.1
PYTHON_MORE_ITERTOOLS_SOURCE = more-itertools-$(PYTHON_MORE_ITERTOOLS_VERSION).tar.gz
PYTHON_MORE_ITERTOOLS_SITE = https://pypi.python.org/packages/a2/28/d02c111c230a769a32fd97e9f6d42bfb0136da381f356b945db38367b3d3
PYTHON_MORE_ITERTOOLS_SETUP_TYPE = setuptools
PYTHON_MORE_ITERTOOLS_LICENSE = MIT
PYTHON_MORE_ITERTOOLS_LICENSE_FILES = LICENSE
$(eval $(python-package))