Date: Tue, 1 Jun 2021 16:47:13 GMT From: Matthias Andree <mandree@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 58cb56664fb0 - main - mail/fetchmailconf: avoid polluting BUILD_DEPENDS Message-ID: <202106011647.151GlDt3052188@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by mandree: URL: https://cgit.FreeBSD.org/ports/commit/?id=58cb56664fb02e860bde94b2bedb080d7778b60a commit 58cb56664fb02e860bde94b2bedb080d7778b60a Author: Matthias Andree <mandree@FreeBSD.org> AuthorDate: 2021-05-29 12:24:56 +0000 Commit: Matthias Andree <mandree@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202106011647.151GlDt3052188>