svn commit: r441266 - branches/2017Q2/devel/kyua

Bryan Drewery bdrewery at FreeBSD.org
Fri May 19 19:27:32 UTC 2017


Author: bdrewery
Date: Fri May 19 19:27:30 2017
New Revision: 441266
URL: https://svnweb.freebsd.org/changeset/ports/441266

Log:
  MFH: r441265
  
  WITH_CCACHE_BUILD: Don't leak ccache in as a runtime-dependency.
  
  fmake and bmake's := feature does not evaluate a variable immediately
  if it does not yet exist (bmake's manpage notes this).  In this case
  BUILD_DEPENDS is empty but later gets ccache added to it.  So when
  RUN_DEPENDS is finally evaluated it actually gets ccache in it.
  
  This line was not useful anyhow since there were not BUILD_DEPENDS to add
  in; LIB_DEPENDS is its own unique thing that works as a BUILD and RUN
  dependency but not directly related to the other variables.
  
  Sponsored by:	Dell EMC Isilon
  
  Approved by:	portmgr (implicit)

Modified:
  branches/2017Q2/devel/kyua/Makefile
Directory Properties:
  branches/2017Q2/   (props changed)

Modified: branches/2017Q2/devel/kyua/Makefile
==============================================================================
--- branches/2017Q2/devel/kyua/Makefile	Fri May 19 19:26:32 2017	(r441265)
+++ branches/2017Q2/devel/kyua/Makefile	Fri May 19 19:27:30 2017	(r441266)
@@ -3,7 +3,7 @@
 PORTNAME=	kyua
 PORTVERSION=	0.13
 PORTEPOCH=	3
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	devel
 MASTER_SITES=	https://github.com/jmmv/kyua/releases/download/${PORTNAME}-${PORTVERSION}/ \
 		LOCAL/jmmv
@@ -15,7 +15,6 @@ LICENSE=	BSD3CLAUSE
 
 LIB_DEPENDS=	liblutok.so:devel/lutok
 LIB_DEPENDS+=	libsqlite3.so:databases/sqlite3
-RUN_DEPENDS:=	${BUILD_DEPENDS}
 
 CONFLICTS=	kyua-atf-compat-[0-9]* kyua-cli-[0-9]* kyua-testers-[0-9]*
 


More information about the svn-ports-all mailing list