From c404b33322488974e748f4fa85f1a99f2068f79d Mon Sep 17 00:00:00 2001 From: Yasuhiro Kimura Date: Tue, 5 Sep 2023 17:22:30 +0900 Subject: textproc/py-sphinx: Switch to use flit-core as build system In Sphinx-5.3.0/pyproject.toml build system is specified as following. [build-system] requires = ["flit_core>=3.7"] build-backend = "flit_core.buildapi" I confirmed build succeeds with devel/py-flit-core as BUILD_DEPENDS. And it also reduces the number of packages that are required as build dependencies. PR: 273577 Approved by: sunpoet (python, maintainer) --- textproc/py-sphinx/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/textproc/py-sphinx/Makefile b/textproc/py-sphinx/Makefile index aa4fe1ed86df..3c5e5d2ff7be 100644 --- a/textproc/py-sphinx/Makefile +++ b/textproc/py-sphinx/Makefile @@ -18,7 +18,7 @@ WWW= https://www.sphinx-doc.org/ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flit>=3.7:devel/py-flit@${PY_FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flit-core>=3.7:devel/py-flit-core@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinxcontrib-applehelp>=0:textproc/py-sphinxcontrib-applehelp@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sphinxcontrib-devhelp>=0:textproc/py-sphinxcontrib-devhelp@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sphinxcontrib-jsmath>=0:textproc/py-sphinxcontrib-jsmath@${PY_FLAVOR} \ -- cgit v1.2.3