From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 23 14:20:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6DB191065672 for ; Mon, 23 Jul 2012 14:20:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 421A58FC18 for ; Mon, 23 Jul 2012 14:20:12 +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 q6NEKC2a021924 for ; Mon, 23 Jul 2012 14:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q6NEKCo1021923; Mon, 23 Jul 2012 14:20:12 GMT (envelope-from gnats) Resent-Date: Mon, 23 Jul 2012 14:20:12 GMT Resent-Message-Id: <201207231420.q6NEKCo1021923@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, Vincent Hoffman-Kazlauskas Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 08FAF106566B for ; Mon, 23 Jul 2012 14:15:35 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id E88918FC12 for ; Mon, 23 Jul 2012 14:15:34 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q6NEFXIG070185 for ; Mon, 23 Jul 2012 14:15:33 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q6NEFXTG070176; Mon, 23 Jul 2012 14:15:33 GMT (envelope-from nobody) Message-Id: <201207231415.q6NEFXTG070176@red.freebsd.org> Date: Mon, 23 Jul 2012 14:15:33 GMT From: Vincent Hoffman-Kazlauskas To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170087: [Patch] [poudriere] fix quoting for poudriere X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jul 2012 14:20:12 -0000 >Number: 170087 >Category: ports >Synopsis: [Patch] [poudriere] fix quoting for poudriere >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jul 23 14:20:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Vincent Hoffman-Kazlauskas >Release: 9.0-RELEASE-p3 >Organization: >Environment: FreeBSD fbsd9vm 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Tue Jun 12 02:52:29 UTC 2012 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I was finding that net-p2p/rtorrent wouldnt build in a jail using poudriere, the error in the output being ====>> Cleaning the build queue [: /usr/local/poudriere_data/packages/83amd64-default/All/libsigc++-2.2.10: unexpected operator ====>> Cleaning up wrkdir the attached patch quotes this so + (and presumable other special characters) will not break the build. >How-To-Repeat: use a standard poudriere setup to build libtorrent (or rtorrent which requires libtorrent) C devel/libsigc++20 will build fine but isnt listed correctly as existing in the package list >Fix: apply the attached patch (quote the list so + characters aren't treated as operators) Patch attached with submission follows: --- common.sh.orig 2012-07-23 14:28:12.000000000 +0100 +++ common.sh 2012-07-23 14:28:59.000000000 +0100 @@ -635,7 +635,7 @@ export LOCALBASE=${MYBASE:-/usr/local} while read p; do pn=$(awk -v o=${p} ' { if ($1 == o) {print $2} }' ${cache}) - [ ! -f ${PKGDIR}/All/${pn}.${EXT} ] && queue="${queue} $p" + [ ! -f "${PKGDIR}/All/${pn}.${EXT}" ] && queue="${queue} $p" done < ${tmplist2} rm -f ${tmplist2} ${deplist} ${tmplist} >Release-Note: >Audit-Trail: >Unformatted: