Changes: https://github.com/pallets/markupsafe/releases https://markupsafe.palletsprojects.com/en/stable/changes/
26 lines
778 B
Makefile
26 lines
778 B
Makefile
PORTNAME= markupsafe
|
|
PORTVERSION= 3.0.3
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= PYPI \
|
|
https://github.com/pallets/markupsafe/releases/download/${PORTVERSION}/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Implements XML/HTML/XHTML Markup safe string for Python
|
|
WWW= https://markupsafe.palletsprojects.com/en/stable/ \
|
|
https://github.com/pallets/markupsafe
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=61:devel/py-setuptools@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent pep517
|
|
|
|
post-install:
|
|
${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR} -name '*.so' -exec ${STRIP_CMD} {} +
|
|
|
|
.include <bsd.port.mk>
|