package/python-tqdm: new package

A Fast, Extensible Progress Bar for Python and CLI.

Signed-off-by: Louis Aussedat <aussedat.louis@gmail.com>
[Thomas:
 - drop depends on BR2_PACKAGE_PYTHON3
 - fix license information]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Louis Aussedat 2019-11-03 17:01:58 +01:00 committed by Thomas Petazzoni
parent 69a352a5b3
commit 28e72ce2ad
5 changed files with 27 additions and 0 deletions

View File

@ -1391,6 +1391,7 @@ F: package/ti-sgx-um/
N: Louis Aussedat <aussedat.louis@gmail.com>
F: board/friendlyarm/nanopi-neo-plus2/
F: configs/friendlyarm_nanopi_neo_plus2_defconfig
F: package/python-tqdm/
N: Louis-Paul Cordier <lpdev@cordier.org>
F: package/intel-gmmlib/

View File

@ -1109,6 +1109,7 @@ menu "External python modules"
source "package/python-tomako/Config.in"
source "package/python-toml/Config.in"
source "package/python-tornado/Config.in"
source "package/python-tqdm/Config.in"
source "package/python-traitlets/Config.in"
source "package/python-treq/Config.in"
source "package/python-twisted/Config.in"

View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_TQDM
bool "python-tqdm"
help
A Fast, Extensible Progress Bar for Python and CLI.
https://tqdm.github.io

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/project/tqdm
md5 84f1744e2cc097d9e824a2e201cca4a6 tqdm-4.37.0.tar.gz
sha256 fca09992116d6dc3ad9789cf601a254081eb40d5c14c1863ab6cd10e15c2cb26 tqdm-4.37.0.tar.gz
# Locally computed sha256 checksums
sha256 1bbf12d09d437844527b3cdaba01d379dac651b5cbb5ebb0d764274684d2680b LICENCE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-tqdm
#
################################################################################
PYTHON_TQDM_VERSION = 4.37.0
PYTHON_TQDM_SOURCE = tqdm-$(PYTHON_TQDM_VERSION).tar.gz
PYTHON_TQDM_SITE = https://files.pythonhosted.org/packages/cc/7b/5878d4e1b01a2eb802f78ea277f2385072681cabefc8fb4fbdee28dd1869
PYTHON_TQDM_SETUP_TYPE = setuptools
PYTHON_TQDM_LICENSE = MPL-2.0, MIT
PYTHON_TQDM_LICENSE_FILES = LICENCE
$(eval $(python-package))