[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_ANSICOLORS
bool "python-ansicolors"
help
ANSI colors for Python.
http://github.com/jonathaneunice/colors/

View File

@ -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

View File

@ -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))