From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Nov 7 09:30:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7011990 for ; Wed, 7 Nov 2012 09:30:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 429158FC12 for ; Wed, 7 Nov 2012 09:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id qA79U14K030403 for ; Wed, 7 Nov 2012 09:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id qA79U1rY030402; Wed, 7 Nov 2012 09:30:01 GMT (envelope-from gnats) Resent-Date: Wed, 7 Nov 2012 09:30:01 GMT Resent-Message-Id: <201211070930.qA79U1rY030402@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Emanuel Haupt Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 30B03F8C for ; Wed, 7 Nov 2012 09:22:38 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id F0C808FC08 for ; Wed, 7 Nov 2012 09:22:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id qA79MbKg030315 for ; Wed, 7 Nov 2012 09:22:37 GMT (envelope-from ehaupt@freefall.freebsd.org) Received: (from ehaupt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id qA79Mbm0030314; Wed, 7 Nov 2012 10:22:37 +0100 (CET) (envelope-from ehaupt) Message-Id: <201211070922.qA79Mbm0030314@freefall.freebsd.org> Date: Wed, 7 Nov 2012 10:22:37 +0100 (CET) From: Emanuel Haupt To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/173440: ports-mgmt/tinderbox-devel: import upstream patch to fix ccache with nullfs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Emanuel Haupt List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Nov 2012 09:30:01 -0000 >Number: 173440 >Category: ports >Synopsis: ports-mgmt/tinderbox-devel: import upstream patch to fix ccache with nullfs >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Nov 07 09:30:00 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Emanuel Haupt >Release: FreeBSD 9.1-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD freefall.freebsd.org 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0 r241358: Mon Oct 8 23:17:12 UTC 2012 peter@freefall.freebsd.org:/usr/src/sys/amd64/compile/FREEFALL amd64 >Description: Import a vendor patch to fix build with ccache and nullfs: http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/portstools/tinderbox/lib/tinderlib.sh#rev1.55.2.10 >How-To-Repeat: >Fix: --- patch-nullfs-ccache.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 307126) +++ Makefile (working copy) @@ -6,7 +6,7 @@ PORTNAME= tinderbox DISTVERSION= 3.4${SNAP} -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= ports-mgmt MASTER_SITES= http://tinderbox.marcuscom.com/ \ Index: files/patch-lib__tinderlib.sh =================================================================== --- files/patch-lib__tinderlib.sh (revision 0) +++ files/patch-lib__tinderlib.sh (working copy) @@ -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 Property changes on: files/patch-lib__tinderlib.sh ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property --- patch-nullfs-ccache.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: