mirror of
https://git.freebsd.org/ports.git
synced 2025-05-23 04:03:14 -04:00
MarkupSafe use to be an optional requirement to enable "speedups" (performance optimizations). It is now referenced in setup.py install_requires [1] and imported in util.py [2] making it effectively compulsory, which the author also confirms. [3] - Add MarkupSafe to RUN_DEPENDS - Deprecate SPEEDUPS option accordingly [1] https://github.com/mitsuhiko/jinja2/blob/2.7.2/setup.py#L83 [2] https://github.com/mitsuhiko/jinja2/blob/2.7.2/jinja2/utils.py#L520 [3] https://twitter.com/mitsuhiko/status/450562002977824769 Reported by: olivierd Approved by: maintainer (via email)
87 lines
2.1 KiB
Makefile
87 lines
2.1 KiB
Makefile
# Created by: Nicola Vitale <nivit@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Jinja2
|
|
PORTVERSION= 2.7.2
|
|
PORTREVISION= 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
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MarkupSafe>=0.18:${PORTSDIR}/textproc/py-MarkupSafe
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MarkupSafe>=0.18:${PORTSDIR}/textproc/py-MarkupSafe
|
|
|
|
USE_PYTHON= yes
|
|
.if empty(PKGNAMESUFFIX)
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_AUTOPLIST= yes
|
|
.endif
|
|
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}
|
|
|
|
OPTIONS_DEFINE?= BABEL EXAMPLES
|
|
OPTIONS_DEFAULT?= BABEL
|
|
BABEL_DESC= Enable Babel extension
|
|
|
|
BABEL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Babel>=1.3:${PORTSDIR}/devel/py-babel
|
|
|
|
PY2TO3_CMD= ${LOCALBASE}/bin/2to3-${PYTHON_VER}
|
|
PY2TO3_ARGS= --fix=all --no-diffs --nobackups --verbose --write
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PKGNAMESUFFIX} == "-doc"
|
|
BUILD_DEPENDS+= ${PKGNAMEPREFIX}sphinx>=1.1.3:${PORTSDIR}/textproc/py-sphinx
|
|
DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
|
|
PORTDOCS= *
|
|
PORT_OPTIONS:= ${PORT_OPTIONS:NEXAMPLES}
|
|
.endif
|
|
|
|
# no problem with Python > 3.2
|
|
.if ${PYTHON_REL} >= 320
|
|
pre-build:
|
|
${PY2TO3_CMD} ${PY2TO3_ARGS} ${WRKSRC}/jinja2
|
|
.endif
|
|
|
|
.if ${PKGNAMESUFFIX} == "-doc"
|
|
do-build:
|
|
. if ${PYTHON_REL} >= 300
|
|
@${PY2TO3_CMD} ${PY2TO3_ARGS} ${WRKSRC}/docs
|
|
. endif
|
|
(cd ${WRKSRC}/docs && ${MAKE} html)
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC}/docs/_build/html && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
PORTEXAMPLES= *
|
|
post-build:
|
|
. if ${PYTHON_REL} >= 300
|
|
${PY2TO3_CMD} ${PY2TO3_ARGS} ${WRKSRC}/examples
|
|
. endif
|
|
${PYTHON_CMD} -m compileall ${WRKSRC}/examples ; \
|
|
${PYTHON_CMD} -O -m compileall ${WRKSRC}/examples
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
|
|
.endif
|
|
|
|
check regression-test test: build
|
|
.if empty(PKGNAMESUFFIX)
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test
|
|
.else
|
|
@${DO_NADA}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|