From owner-svn-ports-all@freebsd.org Thu Oct 11 19:37:16 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 54BF910C5586; Thu, 11 Oct 2018 19:37:16 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 087277EA48; Thu, 11 Oct 2018 19:37:16 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 034CA14D9A; Thu, 11 Oct 2018 19:37:16 +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 w9BJbFPO077635; Thu, 11 Oct 2018 19:37:15 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9BJbF7B077634; Thu, 11 Oct 2018 19:37:15 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201810111937.w9BJbF7B077634@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Thu, 11 Oct 2018 19:37:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481847 - head/devel/ccache X-SVN-Group: ports-head X-SVN-Commit-Author: bdrewery X-SVN-Commit-Paths: head/devel/ccache X-SVN-Commit-Revision: 481847 X-SVN-Commit-Repository: ports 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.27 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: Thu, 11 Oct 2018 19:37:16 -0000 Author: bdrewery Date: Thu Oct 11 19:37:15 2018 New Revision: 481847 URL: https://svnweb.freebsd.org/changeset/ports/481847 Log: Need to define PORTVERSION later due to depending on MEMCACHED option. This works in poudriere bulk, hopefully it does not cause other problems. Modified: head/devel/ccache/Makefile Modified: head/devel/ccache/Makefile ============================================================================== --- head/devel/ccache/Makefile Thu Oct 11 19:17:04 2018 (r481846) +++ head/devel/ccache/Makefile Thu Oct 11 19:37:15 2018 (r481847) @@ -2,11 +2,7 @@ # $FreeBSD$ PORTNAME= ccache -.if defined(OPTIONS_SLAVE) && ${OPTIONS_SLAVE:MMEMCACHED} -PORTVERSION= 3.5.dev.20180926 -.else -PORTVERSION= 3.4.3 -.endif +#PORTVERSION must be set later due to depending on PORT_OPTIONS. PORTREVISION= 0 CATEGORIES= devel MASTER_SITES= https://www.samba.org/ftp/ccache/ \ @@ -71,6 +67,7 @@ STATIC_LDFLAGS= -static .include .if ${PORT_OPTIONS:MMEMCACHED} +PORTVERSION= 3.5.dev.20180926 USE_GITHUB= yes GH_TAGNAME= f7712082106bef085515f86ae47e7dbbd2a48b57 MASTER_SITES= @@ -81,6 +78,7 @@ ALL_TARGET= all docs PLIST_FILES+= man/man1/ccache.1.gz .endif .else +PORTVERSION= 3.4.3 # Only needed pre-3.5 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-configure.ac .endif