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_ANSICOLORS
bool "python-ansicolors"
help
ANSI colors for Python.
http://github.com/jonathaneunice/colors/
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/ansicolors/json
md5 9ca7e2396ffa2e20af023c6b83ab7b14 ansicolors-1.1.8.zip
sha256 99f94f5e3348a0bcd43c82e5fc4414013ccc19d70bd939ad71e0133ce9c372e0 ansicolors-1.1.8.zip
# Locally computed sha256 checksums
sha256 71a13496c621f01b454f9aa54fa608a712f58eb253e6dd2c91027fe78340c773 LICENSE
@@ -0,0 +1,20 @@
################################################################################
#
# python-ansicolors
#
################################################################################
PYTHON_ANSICOLORS_VERSION = 1.1.8
PYTHON_ANSICOLORS_SOURCE = ansicolors-$(PYTHON_ANSICOLORS_VERSION).zip
PYTHON_ANSICOLORS_SITE = https://files.pythonhosted.org/packages/76/31/7faed52088732704523c259e24c26ce6f2f33fbeff2ff59274560c27628e
PYTHON_ANSICOLORS_SETUP_TYPE = setuptools
PYTHON_ANSICOLORS_LICENSE = ISC
PYTHON_ANSICOLORS_LICENSE_FILES = LICENSE
define PYTHON_ANSICOLORS_EXTRACT_CMDS
unzip $(PYTHON_ANSICOLORS_DL_DIR)/$(PYTHON_ANSICOLORS_SOURCE) -d $(@D)
mv $(@D)/ansicolors-$(PYTHON_ANSICOLORS_VERSION)/* $(@D)
$(RM) -r $(@D)/ansicolors-$(PYTHON_ANSICOLORS_VERSION)
endef
$(eval $(python-package))