svn commit: r527420 - head/devel/py-pygit2

Matthias Fechner mfechner at FreeBSD.org
Sat Feb 29 14:18:32 UTC 2020


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 at 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


More information about the svn-ports-all mailing list