[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,8 @@
config BR2_PACKAGE_PYTHON_TYPEPY
bool "python-typepy"
select BR2_PACKAGE_PYTHON_MBSTRDECODER # runtime
help
A Python library for variable type
checker/validator/converter at a run time.
https://github.com/thombashi/typepy

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/typepy/json
md5 9f73bef9ce9e9ccf49ed63a2dadada90 typepy-1.3.0.tar.gz
sha256 96788530614083164993d1443959f6c58e6bb8e2da839812ddf462c203e4b84c typepy-1.3.0.tar.gz
# Locally computed sha256 checksums
sha256 bebbdf0524a147f89a615fff53d79bdc90cbc7631550fb4b725cd3f3bdcd24f6 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-typepy
#
################################################################################
PYTHON_TYPEPY_VERSION = 1.3.0
PYTHON_TYPEPY_SOURCE = typepy-$(PYTHON_TYPEPY_VERSION).tar.gz
PYTHON_TYPEPY_SITE = https://files.pythonhosted.org/packages/07/7b/fb32933f2a17992af75c0f96e5538a25fecebd439a82dcc31926ba55d336
PYTHON_TYPEPY_SETUP_TYPE = setuptools
PYTHON_TYPEPY_LICENSE = MIT
PYTHON_TYPEPY_LICENSE_FILES = LICENSE
$(eval $(python-package))