This commit is contained in:
ziggi
2020-05-22 06:01:24 +00:00
parent 2327488661
commit a8a418c011
37 changed files with 364 additions and 38 deletions

23
python/py-Jinja2/Makefile Normal file
View File

@@ -0,0 +1,23 @@
# Created by: Nicola Vitale <nivit@FreeBSD.org>
# $FreeBSD: head/devel/py-Jinja2/Makefile 534966 2020-05-11 23:51:58Z dbaio $
PORTNAME= Jinja2
PORTVERSION= 2.10.1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
PKGNAMESUFFIX?=
MAINTAINER= nivit@FreeBSD.org
COMMENT?= Fast and easy to use stand-alone template engine
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MarkupSafe>=0.23:python/py-MarkupSafe@${PY_FLAVOR}
NO_ARCH= yes
USES= python
USE_PYTHON= autoplist distutils
PY2TO3_CMD= ${LOCALBASE}/bin/2to3-${PYTHON_VER}
PY2TO3_ARGS= --fix=all --no-diffs --nobackups --verbose --write
.include <bsd.port.mk>

View File

@@ -0,0 +1,3 @@
TIMESTAMP = 1555711700
SHA256 (Jinja2-2.10.1.tar.gz) = 065c4f02ebe7f7cf559e49ee5a95fb800a9e4528727aec6f24402a5374c65013
SIZE (Jinja2-2.10.1.tar.gz) = 260956

View File

@@ -0,0 +1,6 @@
Jinja is a sandboxed template engine written in pure Python licensed
under the BSD license. It provides a Django-like non-XML syntax and
compiles templates into executable python code. It's basically a
combination of Django templates and python code.
WWW: http://jinja.pocoo.org/