Date: Sat, 29 Feb 2020 14:18:31 +0000 (UTC) From: Matthias Fechner <mfechner@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r527420 - head/devel/py-pygit2 Message-ID: <202002291418.01TEIVkQ083622@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mfechner Date: Sat Feb 29 14:18:31 2020 New Revision: 527420 URL: https://svnweb.freebsd.org/changeset/ports/527420 Log: Cosmetic change for the dependency definition. There is no change in the definition, so no port bump. This should prevent later problems if the BUILD_DEPENDS or RUN_DEPENDS is modified by USE definitions. PR: 244314 Submitted by: jcfyecrayz@liamekaens.com Modified: head/devel/py-pygit2/Makefile Modified: head/devel/py-pygit2/Makefile ============================================================================== --- head/devel/py-pygit2/Makefile Sat Feb 29 14:01:11 2020 (r527419) +++ head/devel/py-pygit2/Makefile Sat Feb 29 14:18:31 2020 (r527420) @@ -15,9 +15,10 @@ COMMENT= Python bindings for libgit2 LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>1.0:devel/py-cffi@${PY_FLAVOR} +MY_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>1.0:devel/py-cffi@${PY_FLAVOR} +BUILD_DEPENDS= ${MY_DEPENDS} LIB_DEPENDS= libgit2.so:devel/libgit2 -RUN_DEPENDS= ${BUILD_DEPENDS} \ +RUN_DEPENDS= ${MY_DEPENDS} \ ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} USES= python
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202002291418.01TEIVkQ083622>