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,9 @@
config BR2_PACKAGE_PYTHON_JINJA2
bool "python-jinja2"
select BR2_PACKAGE_PYTHON_MARKUPSAFE # runtime
help
Jinja2 is a template engine written in pure Python. It
provides a Django inspired non-XML syntax but supports
inline expressions and an optional sandboxed environment.
http://jinja.pocoo.org/

View File

@@ -0,0 +1,3 @@
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=edb51693fe22c53cee5403775c71a99e, sha256 locally computed.
md5 edb51693fe22c53cee5403775c71a99e Jinja2-2.8.tar.gz
sha256 bc1ff2ff88dbfacefde4ddde471d1417d3b304e8df103a7a9437d47269201bf4 Jinja2-2.8.tar.gz

View File

@@ -0,0 +1,17 @@
################################################################################
#
# python-jinja2
#
################################################################################
PYTHON_JINJA2_VERSION = 2.8
PYTHON_JINJA2_SOURCE = Jinja2-$(PYTHON_JINJA2_VERSION).tar.gz
PYTHON_JINJA2_SITE = http://pypi.python.org/packages/source/J/Jinja2
PYTHON_JINJA2_SETUP_TYPE = setuptools
PYTHON_JINJA2_LICENSE = BSD-3c
PYTHON_JINJA2_LICENSE_FILES = LICENSE
# In host build, setup.py tries to download markupsafe if it is not installed
HOST_PYTHON_JINJA2_DEPENDENCIES = host-python-markupsafe
$(eval $(python-package))
$(eval $(host-python-package))