diff options
author | Yasuhiro Kimura <yasu@FreeBSD.org> | 2023-09-05 08:22:30 +0000 |
---|---|---|
committer | Yasuhiro Kimura <yasu@FreeBSD.org> | 2023-09-06 06:17:14 +0000 |
commit | c404b33322488974e748f4fa85f1a99f2068f79d (patch) | |
tree | aa8c7f1cd3a07e03e886cdc55a3a625207fb3cb4 | |
parent | d6a3f2d0eb517cb282385264dc2be54e774de3f6 (diff) | |
download | ports-c404b33322488974e748f4fa85f1a99f2068f79d.tar.gz ports-c404b33322488974e748f4fa85f1a99f2068f79d.zip |
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)
-rw-r--r-- | textproc/py-sphinx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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} \ |