while here, switch HOMEPAGE to https Announce: https://discuss.tryton.org/t/release-of-relatorio-0-9-0/1615 Relatorio is a templating library which provides a way to easily output several kinds of files but mainly OpenDocument. This is a minor release that adds new features: - Support out parameter of render - Write opendocument stream directly to the ZipFile ok kmos@
39 lines
728 B
Makefile
39 lines
728 B
Makefile
# $OpenBSD: Makefile,v 1.13 2019/07/30 09:52:11 semarie Exp $
|
|
|
|
COMMENT= templating library able to output odt and pdf files
|
|
|
|
MODPY_EGG_VERSION= 0.9.0
|
|
DISTNAME= relatorio-${MODPY_EGG_VERSION}
|
|
PKGNAME= py-${DISTNAME}
|
|
|
|
CATEGORIES= print textproc
|
|
|
|
HOMEPAGE= https://relatorio.tryton.org/
|
|
|
|
MAINTAINER = Sebastien Marie <semarie@online.fr>
|
|
|
|
# GPLv3
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
MODPY_PI= Yes
|
|
|
|
MODULES= lang/python
|
|
|
|
MODPY_SETUPTOOLS= Yes
|
|
|
|
FLAVOR?=
|
|
FLAVORS= python3
|
|
|
|
RUN_DEPENDS= www/py-genshi${MODPY_FLAVOR} \
|
|
textproc/py-lxml${MODPY_FLAVOR} \
|
|
devel/py-magic${MODPY_FLAVOR}
|
|
|
|
.if !${FLAVOR:Mpython3}
|
|
RUN_DEPENDS+= graphics/pycha \
|
|
textproc/py-yaml
|
|
.endif
|
|
|
|
TEST_DEPENDS= devel/py-nose${MODPY_FLAVOR}
|
|
|
|
.include <bsd.port.mk>
|