From owner-svn-ports-all@FreeBSD.ORG Thu Nov 8 21:35:17 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D28586A5; Thu, 8 Nov 2012 21:35:17 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 9CC838FC12; Thu, 8 Nov 2012 21:35:17 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qA8LZHnh028392; Thu, 8 Nov 2012 21:35:17 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qA8LZHCo028390; Thu, 8 Nov 2012 21:35:17 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201211082135.qA8LZHCo028390@svn.freebsd.org> From: Emanuel Haupt Date: Thu, 8 Nov 2012 21:35:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r307200 - in head/ports-mgmt/tinderbox-devel: . files 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.14 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, 08 Nov 2012 21:35:17 -0000 Author: ehaupt Date: Thu Nov 8 21:35:17 2012 New Revision: 307200 URL: http://svnweb.freebsd.org/changeset/ports/307200 Log: Import an upstream patch to fix build with ccache and nullfs. While here trim Makefile header. PR: 173440 Approved by: itetcu (maintainer) Feature safe: yes Added: head/ports-mgmt/tinderbox-devel/files/patch-lib__tinderlib.sh (contents, props changed) Modified: head/ports-mgmt/tinderbox-devel/Makefile Modified: head/ports-mgmt/tinderbox-devel/Makefile ============================================================================== --- head/ports-mgmt/tinderbox-devel/Makefile Thu Nov 8 21:31:57 2012 (r307199) +++ head/ports-mgmt/tinderbox-devel/Makefile Thu Nov 8 21:35:17 2012 (r307200) @@ -1,12 +1,9 @@ -# Ports collection makefile for: misc/tinderbox -# Whom: Edwin Groothuis -# Date created: 31 december 2005 -# +# Created by: Edwin Groothuis # $FreeBSD$ PORTNAME= tinderbox DISTVERSION= 3.4${SNAP} -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= ports-mgmt MASTER_SITES= http://tinderbox.marcuscom.com/ \ Added: head/ports-mgmt/tinderbox-devel/files/patch-lib__tinderlib.sh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ports-mgmt/tinderbox-devel/files/patch-lib__tinderlib.sh Thu Nov 8 21:35:17 2012 (r307200) @@ -0,0 +1,28 @@ +--- ./lib/tinderlib.sh.orig 2012-11-07 10:17:43.000000000 +0100 ++++ ./lib/tinderlib.sh 2012-11-07 10:18:27.000000000 +0100 +@@ -23,7 +23,7 @@ + # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + # SUCH DAMAGE. + # +-# $MCom: portstools/tinderbox/lib/tinderlib.sh,v 1.55.2.9 2012/04/04 10:38:41 beat Exp $ ++# $MCom: portstools/tinderbox/lib/tinderlib.sh,v 1.55.2.10 2012/05/21 01:19:28 marcus Exp $ + # + + tinderLocJail () { +@@ -225,6 +225,7 @@ + requestMount () { + # set up defaults + _type="" ++ _options="" + _srcloc="" + _dstloc="" + _nullfs=0 +@@ -632,7 +633,7 @@ + + for r in ${reqs} ; do + if [ "${use_pkgng}" = "yes" ]; then +- if [ -z $(pkg info -qgO ${r}) ]; then ++ if [ -z $(pkg info -q ${r}) ]; then + missing="${missing} ${r}" + error=1 + fi