Import buildroot 2016.02.01

This commit is contained in:
2016-02-24 22:35:39 +01:00
parent a6ee09dea4
commit 828befcf3c
7393 changed files with 390887 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,3 @@
# md5 from https://pypi.python.org/pypi/pyparsing/2.0.3, sha256 locally computed
md5 0fe479be09fc2cf005f753d3acc35939 pyparsing-2.0.3.tar.gz
sha256 06e729e1cbf5274703b1f47b6135ed8335999d547f9d8cf048b210fb8ebf844f pyparsing-2.0.3.tar.gz

View File

@@ -0,0 +1,14 @@
################################################################################
#
# python-pyparsing
#
################################################################################
PYTHON_PYPARSING_VERSION = 2.0.3
PYTHON_PYPARSING_SOURCE = pyparsing-$(PYTHON_PYPARSING_VERSION).tar.gz
PYTHON_PYPARSING_SITE = https://pypi.python.org/packages/source/p/pyparsing
PYTHON_PYPARSING_LICENSE = MIT
PYTHON_PYPARSING_LICENSE_FILES = LICENSE
PYTHON_PYPARSING_SETUP_TYPE = distutils
$(eval $(python-package))