[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,7 @@
config BR2_PACKAGE_PYTHON_SIMPLELOGGING
bool "python-simplelogging"
select BR2_PACKAGE_PYTHON_COLORLOG # runtime
help
Logging made simple, no excuse for any debug print call.
https://github.com/vpoulailleau/simplelogging

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/simplelogging/json
md5 97b5f2a5cd9cff1b60c727cd03b3ffe1 simplelogging-0.11.0.tar.gz
sha256 23a128b47d3e88213adc51fdd102aae15a398cf459d782eb19534945d23f0bc5 simplelogging-0.11.0.tar.gz
# Locally computed sha256 checksums
sha256 bd2a0fe3b3bab7092ffa7f58d46bb05d98f12f107b3a6be947c098f7c2ad1d1a LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-simplelogging
#
################################################################################
PYTHON_SIMPLELOGGING_VERSION = 0.11.0
PYTHON_SIMPLELOGGING_SOURCE = simplelogging-$(PYTHON_SIMPLELOGGING_VERSION).tar.gz
PYTHON_SIMPLELOGGING_SITE = https://files.pythonhosted.org/packages/73/d6/4c06aa7f2c3b9fc09429a1196fd357357cc555de5e16c09b2d12e9db1ebb
PYTHON_SIMPLELOGGING_SETUP_TYPE = setuptools
PYTHON_SIMPLELOGGING_LICENSE = BSD-3-Clause
PYTHON_SIMPLELOGGING_LICENSE_FILES = LICENSE
$(eval $(python-package))