From owner-svn-ports-all@freebsd.org Fri May 19 19:26:34 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 43AE0D745D4; Fri, 19 May 2017 19:26:34 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1375D1A7B; Fri, 19 May 2017 19:26:34 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v4JJQXvf082666; Fri, 19 May 2017 19:26:33 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4JJQXUD082665; Fri, 19 May 2017 19:26:33 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201705191926.v4JJQXUD082665@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Fri, 19 May 2017 19:26:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r441265 - head/devel/kyua X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 May 2017 19:26:34 -0000 Author: bdrewery Date: Fri May 19 19:26:32 2017 New Revision: 441265 URL: https://svnweb.freebsd.org/changeset/ports/441265 Log: 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 Modified: head/devel/kyua/Makefile Modified: head/devel/kyua/Makefile ============================================================================== --- head/devel/kyua/Makefile Fri May 19 19:02:19 2017 (r441264) +++ head/devel/kyua/Makefile Fri May 19 19:26:32 2017 (r441265) @@ -3,7 +3,7 @@ PORTNAME= kyua PORTVERSION= 0.13 PORTEPOCH= 3 -PORTREVISION= 2 +PORTREVISION= 3 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]*