]> Git Repo - buildroot-mgba.git/commitdiff
package/python-tqdm: new package
authorLouis Aussedat <[email protected]>
Sun, 3 Nov 2019 16:01:58 +0000 (17:01 +0100)
committerThomas Petazzoni <[email protected]>
Mon, 4 Nov 2019 21:20:37 +0000 (22:20 +0100)
A Fast, Extensible Progress Bar for Python and CLI.

Signed-off-by: Louis Aussedat <[email protected]>
[Thomas:
 - drop depends on BR2_PACKAGE_PYTHON3
 - fix license information]
Signed-off-by: Thomas Petazzoni <[email protected]>
DEVELOPERS
package/Config.in
package/python-tqdm/Config.in [new file with mode: 0644]
package/python-tqdm/python-tqdm.hash [new file with mode: 0644]
package/python-tqdm/python-tqdm.mk [new file with mode: 0644]

index 3bea7c4cf77006e7be8959bab7c16f0e0407e73e..24c57b25f7f365355b1cbfbd06b4ffbb0a1313e8 100644 (file)
@@ -1391,6 +1391,7 @@ F:        package/ti-sgx-um/
 N:     Louis Aussedat <[email protected]>
 F:     board/friendlyarm/nanopi-neo-plus2/
 F:     configs/friendlyarm_nanopi_neo_plus2_defconfig
+F:     package/python-tqdm/
 
 N:     Louis-Paul Cordier <[email protected]>
 F:     package/intel-gmmlib/
index 2819cab4ae73326d1fae68e832e3bc36916f0f83..1ad1d49a8a9638023ca3a596831a0308fcfa47ef 100644 (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"
diff --git a/package/python-tqdm/Config.in b/package/python-tqdm/Config.in
new file mode 100644 (file)
index 0000000..89b571f
--- /dev/null
@@ -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
diff --git a/package/python-tqdm/python-tqdm.hash b/package/python-tqdm/python-tqdm.hash
new file mode 100644 (file)
index 0000000..63dea98
--- /dev/null
@@ -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
diff --git a/package/python-tqdm/python-tqdm.mk b/package/python-tqdm/python-tqdm.mk
new file mode 100644 (file)
index 0000000..3aa562e
--- /dev/null
@@ -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))
This page took 0.040269 seconds and 4 git commands to generate.