This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 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.
http://pyparsing.wikispaces.com/

View File

@@ -0,0 +1,5 @@
# md5 from https://pypi.python.org/pypi/pyparsing/json, sha256 locally computed
md5 46d02cbe0461fe0571d51649e6006ef5 pyparsing-2.4.2.tar.gz
sha256 6f98a7b9397e206d78cc01df10131398f1c8b8510a2f4d97d9abd82e1aacdd80 pyparsing-2.4.2.tar.gz
# Locally computed sha256 checksums
sha256 10d5120a16805804ffda8b688c220bfb4e8f39741b57320604d455a309e01972 LICENSE

View File

@@ -0,0 +1,14 @@
################################################################################
#
# python-pyparsing
#
################################################################################
PYTHON_PYPARSING_VERSION = 2.4.2
PYTHON_PYPARSING_SOURCE = pyparsing-$(PYTHON_PYPARSING_VERSION).tar.gz
PYTHON_PYPARSING_SITE = https://files.pythonhosted.org/packages/7e/24/eaa8d7003aee23eda270099eeec754d7bf4399f75c6a011ef948304f66a2
PYTHON_PYPARSING_LICENSE = MIT
PYTHON_PYPARSING_LICENSE_FILES = LICENSE
PYTHON_PYPARSING_SETUP_TYPE = setuptools
$(eval $(python-package))