git: 8890b32fd200 - main - dns/letsdns: Fix BUILD_/RUN_DEPENDS
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 11 Jan 2023 21:20:58 UTC
The branch main has been updated by flo: URL: https://cgit.FreeBSD.org/ports/commit/?id=8890b32fd2007b9bb44939643e60606872bdb819 commit 8890b32fd2007b9bb44939643e60606872bdb819 Author: Florian Smeets <flo@FreeBSD.org> AuthorDate: 2023-01-11 21:17:53 +0000 Commit: Florian Smeets <flo@FreeBSD.org> CommitDate: 2023-01-11 21:17:53 +0000 dns/letsdns: Fix BUILD_/RUN_DEPENDS Three of the listed BUILD_DEPENDS should actually be RUN_DEPENDS --- dns/letsdns/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dns/letsdns/Makefile b/dns/letsdns/Makefile index 221d7682020b..e06ae3a167ac 100644 --- a/dns/letsdns/Makefile +++ b/dns/letsdns/Makefile @@ -1,5 +1,6 @@ PORTNAME= letsdns DISTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= dns MAINTAINER= flo@FreeBSD.org @@ -8,10 +9,10 @@ WWW= https://letsdns.org/ LICENSE= GPLv3 -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>0:security/py-cryptography@${PY_FLAVOR} \ +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>0:security/py-cryptography@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}dnspython>0:dns/py-dnspython@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} USES= python USE_GITHUB= yes