python-pyratemp: new package

add python simple template module

Signed-off-by: Steve Calfee <stevecalfee@gmail.com>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Steve Calfee 2015-09-15 09:07:09 -07:00 committed by Thomas Petazzoni
parent 9a8d49a79e
commit 50aef967ca
4 changed files with 27 additions and 0 deletions

View file

@ -642,6 +642,7 @@ menu "external python modules"
source "package/python-pyparsing/Config.in"
source "package/python-pypcap/Config.in"
source "package/python-pyqt/Config.in"
source "package/python-pyratemp/Config.in"
source "package/python-pyro/Config.in"
source "package/python-pyroute2/Config.in"
source "package/python-pysendfile/Config.in"

View file

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_PYRATEMP
bool "python-pyratemp"
help
python-pyratemp is a Python library for doing html
templates. written entirely in Python, that is designed to
be very easy to use and very like writing Python.
https://pypi.python.org/pypi/pyratemp/

View file

@ -0,0 +1,4 @@
#md5 from https://pypi.python.org/pypi?:action=show_md5&digest=e4bbe5d4a98016efef882b2b2f47defb
md5 e4bbe5d4a98016efef882b2b2f47defb pyratemp-0.3.2.tgz
# Locally calculated:
sha256 c45ed656ada482a02fe780495f37a695e7671accb04f918f7e7f18abf877bc71 pyratemp-0.3.2.tgz

View file

@ -0,0 +1,14 @@
################################################################################
#
# python-pyratemp
#
################################################################################
PYTHON_PYRATEMP_VERSION = 0.3.2
PYTHON_PYRATEMP_SOURCE = pyratemp-$(PYTHON_PYRATEMP_VERSION).tgz
PYTHON_PYRATEMP_SITE = https://pypi.python.org/packages/source/p/pyratemp
PYTHON_PYRATEMP_LICENSE = MIT
PYTHON_PYRATEMP_LICENSE_FILES = LICENSE
PYTHON_PYRATEMP_SETUP_TYPE = distutils
$(eval $(python-package))