From owner-freebsd-ports@FreeBSD.ORG Thu Mar 1 07:18:34 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 77C6E106566B for ; Thu, 1 Mar 2012 07:18:34 +0000 (UTC) (envelope-from beat.gaetzi@gmail.com) Received: from mail-qw0-f54.google.com (mail-qw0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id 139068FC16 for ; Thu, 1 Mar 2012 07:18:33 +0000 (UTC) Received: by qao25 with SMTP id 25so185411qao.13 for ; Wed, 29 Feb 2012 23:18:33 -0800 (PST) Received-SPF: pass (google.com: domain of beat.gaetzi@gmail.com designates 10.229.69.33 as permitted sender) client-ip=10.229.69.33; Authentication-Results: mr.google.com; spf=pass (google.com: domain of beat.gaetzi@gmail.com designates 10.229.69.33 as permitted sender) smtp.mail=beat.gaetzi@gmail.com; dkim=pass header.i=beat.gaetzi@gmail.com Received: from mr.google.com ([10.229.69.33]) by 10.229.69.33 with SMTP id x33mr812822qci.30.1330586313667 (num_hops = 1); Wed, 29 Feb 2012 23:18:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=RdB6LZU2BhlqwZ5w6uA8CyMUBJL/kAOEdiHTbat+Z/s=; b=WiVxHLs2NP1Xl08QyNShDBpENBor+pPwlms8VlECWDBNIMhINUiKxcACatfjKUG+ea NAWR9vP2fzgtHiB1m9/VE6valrk7D94TOVXQvEmyS7HT5VbEqL0rPsmkI1/1w7n40Xyo K0S2t412yeoBP8j6lM/kHGDA9BxST2PeuV0UA= MIME-Version: 1.0 Received: by 10.229.69.33 with SMTP id x33mr681961qci.30.1330586313612; Wed, 29 Feb 2012 23:18:33 -0800 (PST) Sender: beat.gaetzi@gmail.com Received: by 10.229.50.83 with HTTP; Wed, 29 Feb 2012 23:18:33 -0800 (PST) In-Reply-To: <4F4E97D0.7030201@p6m7g8.com> References: <29CEA923-4620-4982-B8EA-45F46C711DAD@chruetertee.ch> <4F4E692B.3050004@p6m7g8.com> <4F4E97D0.7030201@p6m7g8.com> Date: Thu, 1 Mar 2012 08:18:33 +0100 X-Google-Sender-Auth: 6K29XAee8vb8JXOTeyvXuc0iVvU Message-ID: From: =?ISO-8859-1?Q?Beat_G=E4tzi?= To: "Philip M. Gollucci" Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Steve Wills , tinderbox-list@marcuscom.com, FreeBSD Ports Subject: Re: CFT: pkgng support for tinderbox X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Mar 2012 07:18:34 -0000 2012/2/29 Philip M. Gollucci : > On 02/29/12 18:06, Philip M. Gollucci wrote: >> >>> pkgng support for tinderbox (written by bapt@) is ready and is looking = for >>> some review and testers. The patch is against tinderbox HEAD: >>> >>> http://tmp.chruetertee.ch/tinderbox-pkgng.patch >> All, >> >> Building devel/otrs or any random port for that matter -- >> (also attached) >> http://p6m7g8.com/~pgollucci/phase5.png >> >> The TEST_DEPENDS are not cleaned up correctly in the use_pkgng case for >> phase5 of lib/buildscript. =A0It seems like its only the MAN* files in >> Makefile of these that are being orphaned. >> >> I will attempt to debug this tonight(ish) but I'll probably distracted. Thanks for testing. I will take a look at it. > And the fix. =A0Wait for it...... a typo > > line 326 of lib/buildscript (after the patch from beat) > 326 - =A0 =A0 =A0 =A0 pkg info -qa | sort > /tmp/pkgs_pre_test > > That should clearly be s/pre/post/ > > =A0325 =A0 if [ "$use_pkgng" =3D "yes" ]; then > =A0326 - =A0 =A0 =A0 =A0 pkg info -qa | sort > /tmp/pkgs_pre_test > =A0327 =A0 else > =A0328 - =A0 =A0 =A0 =A0 pkg_info | awk '{print $1}' | sort > /tmp/pkgs_p= ost_test > =A0329 =A0 fi This one is already fixed: http://tmp.chruetertee.ch/tinderbox-pkgng-v2.patch Beat