git: 58cb56664fb0 - main - mail/fetchmailconf: avoid polluting BUILD_DEPENDS
Matthias Andree
mandree at FreeBSD.org
Tue Jun 1 16:47:14 UTC 2021
The branch main has been updated by mandree:
URL: https://cgit.FreeBSD.org/ports/commit/?id=58cb56664fb02e860bde94b2bedb080d7778b60a
commit 58cb56664fb02e860bde94b2bedb080d7778b60a
Author: Matthias Andree <mandree at FreeBSD.org>
AuthorDate: 2021-05-29 12:24:56 +0000
Commit: Matthias Andree <mandree at FreeBSD.org>
CommitDate: 2021-06-01 16:46:28 +0000
mail/fetchmailconf: avoid polluting BUILD_DEPENDS
The RUN_DEPENDS+=BUILD_DEPENDS may pull ccache in as run-time requisite,
so let's flip the assignments and make BUILD_DEPENDS use RUN_DEPENDS to
avoid just this pollution.
PR: 256242
Approved by: Corey Halpin (maintainer)
---
mail/fetchmailconf/Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mail/fetchmailconf/Makefile b/mail/fetchmailconf/Makefile
index e049dd2f0ee8..f25ceb941cec 100644
--- a/mail/fetchmailconf/Makefile
+++ b/mail/fetchmailconf/Makefile
@@ -12,10 +12,10 @@ LICENSE_COMB= dual
# minimum required version 6.4.2 - not codified, on the assumption
# that fetchmail port updated at the same time
-BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>=0:x11-toolkits/py-tkinter@${PY_FLAVOR} \
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>=0:x11-toolkits/py-tkinter@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}future>=0:devel/py-future@${PY_FLAVOR} \
fetchmail>=${PORTVERSION}:mail/fetchmail
-RUN_DEPENDS+= ${BUILD_DEPENDS}
+BUILD_DEPENDS+= ${RUN_DEPENDS}
USES= python shebangfix tar:xz
USE_PYTHON= py3kplist
More information about the dev-commits-ports-all
mailing list