git: 31bd18843c8e - main - security/py-ssh-audit: fix build
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 09 May 2023 20:00:48 UTC
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=31bd18843c8e04f115eed8bd166f9364847ae94a commit 31bd18843c8e04f115eed8bd166f9364847ae94a Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2023-05-09 19:54:34 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2023-05-09 19:54:34 +0000 security/py-ssh-audit: fix build py-setuptools was missing. --- security/py-ssh-audit/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/security/py-ssh-audit/Makefile b/security/py-ssh-audit/Makefile index 266af903b1e2..4f76584bb502 100644 --- a/security/py-ssh-audit/Makefile +++ b/security/py-ssh-audit/Makefile @@ -10,7 +10,8 @@ WWW= https://github.com/jtesta/ssh-audit LICENSE= MIT -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} +BUILD_DEPENDS= ${PY_SETUPTOOLS} \ + ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} USES= python:3.7+ USE_GITHUB= yes