initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+6
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
+5
View File
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/project/tqdm
md5 285af1f905f4c375f03a86a667047950 tqdm-4.40.1.tar.gz
sha256 e405d16c98fcf30725d0c9d493ed07302a18846b5452de5253030ccd18996f87 tqdm-4.40.1.tar.gz
# Locally computed sha256 checksums
sha256 1bbf12d09d437844527b3cdaba01d379dac651b5cbb5ebb0d764274684d2680b LICENCE
+16
View File
@@ -0,0 +1,16 @@
################################################################################
#
# python-tqdm
#
################################################################################
PYTHON_TQDM_VERSION = 4.40.1
PYTHON_TQDM_SOURCE = tqdm-$(PYTHON_TQDM_VERSION).tar.gz
PYTHON_TQDM_SITE = https://files.pythonhosted.org/packages/4c/45/830c5c4bfaba60ef7d356a53c7751a86c81d148a16fda0daf3ac5ca8e288
PYTHON_TQDM_SETUP_TYPE = setuptools
PYTHON_TQDM_LICENSE = MPL-2.0, MIT
PYTHON_TQDM_LICENSE_FILES = LICENCE
PYTHON_TQDM_CPE_ID_VENDOR = tqdm_project
PYTHON_TQDM_CPE_ID_PRODUCT = tqdm
$(eval $(python-package))