git: 83a0abe1b227 - main - sysutils/duplicity: add ${PY_SETUPTOOLS} to BUILD_DEPENDS
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 27 Feb 2024 20:15:14 UTC
The branch main has been updated by vishwin: URL: https://cgit.FreeBSD.org/ports/commit/?id=83a0abe1b227b1728b433bd724d5c6d6e945b4a3 commit 83a0abe1b227b1728b433bd724d5c6d6e945b4a3 Author: Charlie Li <vishwin@FreeBSD.org> AuthorDate: 2024-02-27 20:12:58 +0000 Commit: Charlie Li <vishwin@FreeBSD.org> CommitDate: 2024-02-27 20:12:58 +0000 sysutils/duplicity: add ${PY_SETUPTOOLS} to BUILD_DEPENDS setuptools-scm is not a PEP-517 build backend; add the real one. Otherwise this build will fail once the linked PR is committed. With hat: python PR: 272134 --- sysutils/duplicity/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sysutils/duplicity/Makefile b/sysutils/duplicity/Makefile index a5f0d127c1af..9b5ff1444d11 100644 --- a/sysutils/duplicity/Makefile +++ b/sysutils/duplicity/Makefile @@ -11,7 +11,8 @@ WWW= https://duplicity.gitlab.io/ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm@${PY_FLAVOR} \ +BUILD_DEPENDS= ${PY_SETUPTOOLS} \ + ${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} LIB_DEPENDS= librsync.so:net/librsync RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}fasteners>=0:devel/py-fasteners@${PY_FLAVOR} \