initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+10
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/
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/pyparsing/json
md5 f0953e47a0112f7a65aec2305ffdf7b4 pyparsing-2.4.7.tar.gz
sha256 c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1 pyparsing-2.4.7.tar.gz
# Locally computed sha256 checksums
sha256 10d5120a16805804ffda8b688c220bfb4e8f39741b57320604d455a309e01972 LICENSE
@@ -0,0 +1,14 @@
################################################################################
#
# python-pyparsing
#
################################################################################
PYTHON_PYPARSING_VERSION = 2.4.7
PYTHON_PYPARSING_SOURCE = pyparsing-$(PYTHON_PYPARSING_VERSION).tar.gz
PYTHON_PYPARSING_SITE = https://files.pythonhosted.org/packages/c1/47/dfc9c342c9842bbe0036c7f763d2d6686bcf5eb1808ba3e170afdb282210
PYTHON_PYPARSING_LICENSE = MIT
PYTHON_PYPARSING_LICENSE_FILES = LICENSE
PYTHON_PYPARSING_SETUP_TYPE = setuptools
$(eval $(python-package))