Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 May 2017 19:27:30 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r441266 - branches/2017Q2/devel/kyua
Message-ID:  <201705191927.v4JJRU7P082808@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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]*
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705191927.v4JJRU7P082808>