[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,10 @@
config BR2_PACKAGE_PYTHON_PYPARSING
bool "python-pyparsing"
help
The pyparsing module is an alternative approach to creating
and executing simple grammars, vs. the traditional lex/yacc
approach, or the use of regular expressions. The pyparsing
module provides a library of classes that client code uses
to construct the grammar directly in Python code.
https://github.com/pyparsing/pyparsing/

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/pyparsing/json
md5 fadc2f3bf5872bf6310576a86c3566e0 pyparsing-3.0.9.tar.gz
sha256 2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb pyparsing-3.0.9.tar.gz
# Locally computed sha256 checksums
sha256 10d5120a16805804ffda8b688c220bfb4e8f39741b57320604d455a309e01972 LICENSE

View File

@ -0,0 +1,16 @@
################################################################################
#
# python-pyparsing
#
################################################################################
PYTHON_PYPARSING_VERSION = 3.0.9
PYTHON_PYPARSING_SOURCE = pyparsing-$(PYTHON_PYPARSING_VERSION).tar.gz
PYTHON_PYPARSING_SITE = https://files.pythonhosted.org/packages/71/22/207523d16464c40a0310d2d4d8926daffa00ac1f5b1576170a32db749636
PYTHON_PYPARSING_LICENSE = MIT
PYTHON_PYPARSING_LICENSE_FILES = LICENSE
PYTHON_PYPARSING_SETUP_TYPE = flit
HOST_PYTHON_PYPARSING_SETUP_TYPE = flit-bootstrap
$(eval $(python-package))
$(eval $(host-python-package))