git: e60ce4c976c2 - main - www/py-flask: Clean up BUILD_DEPENDS
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 01 Dec 2023 06:47:37 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=e60ce4c976c2a20e77631d1b8b4ea08413f5ac93
commit e60ce4c976c2a20e77631d1b8b4ea08413f5ac93
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2023-12-01 06:46:44 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2023-12-01 06:47:19 +0000
www/py-flask: Clean up BUILD_DEPENDS
from pyproject.toml:
[build-system]
requires = ["flit_core<4"]
build-backend = "flit_core.buildapi"
from CHANGES.rst:
- Use flit_core instead of setuptools as build backend.
Reference: https://github.com/pallets/flask/blob/3.0.0/pyproject.toml#L46-L48
https://github.com/pallets/flask/blob/3.0.0/CHANGES.rst#version-233
Approved by: portmgr (blanket)
With hat: python
---
www/py-flask/Makefile | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/www/py-flask/Makefile b/www/py-flask/Makefile
index bcf7a06f5a1c..0c1ab41c9577 100644
--- a/www/py-flask/Makefile
+++ b/www/py-flask/Makefile
@@ -11,9 +11,7 @@ WWW= http://flask.pocoo.org/
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE.rst
-BUILD_DEPENDS= ${PY_SETUPTOOLS} \
- ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}flit-core>=0:devel/py-flit-core@${PY_FLAVOR}
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flit-core>=0<4:devel/py-flit-core@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}werkzeug>=3.0.0:www/py-werkzeug@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}Jinja2>=3.1.2:devel/py-Jinja2@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}itsdangerous>=2.1.2:security/py-itsdangerous@${PY_FLAVOR} \