From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Nov 17 16:17:06 2005 Return-Path: X-Original-To: freebsd-ports-bugs@freebsd.org Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 990FF16A41F for ; Thu, 17 Nov 2005 16:17:06 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4292D43D55 for ; Thu, 17 Nov 2005 16:17:05 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: by xproxy.gmail.com with SMTP id t12so490347wxc for ; Thu, 17 Nov 2005 08:17:04 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:user-agent:references:in-reply-to:mime-version:content-type:message-id; b=pxWHBJDBp0XLSi/1IISMBNaIGoQj7DJlR5+2z1zH4vZ/Rp0nkjPDn6yLJl8LXCC/JR12hXyAyPrT1fZjkJ/cmbuEBOapgILAhH7BT0ls45UUMG1OvI6JiSPy3qL0mH3tqcSoXzI05ieSL4z9mm/G09j4YcKyhVtwBMARD77Qvcc= Received: by 10.70.43.4 with SMTP id q4mr5062284wxq; Thu, 17 Nov 2005 08:17:04 -0800 (PST) Received: from ?192.168.1.10? ( [71.102.14.129]) by mx.gmail.com with ESMTP id i13sm1389715wxd.2005.11.17.08.17.03; Thu, 17 Nov 2005 08:17:04 -0800 (PST) From: "Michael C. Shultz" To: freebsd-ports-bugs@freebsd.org, Pav Lucistnik Date: Thu, 17 Nov 2005 08:07:45 -0800 User-Agent: KMail/1.8.3 References: <200511171540.jAHFeJSL017500@freefall.freebsd.org> In-Reply-To: <200511171540.jAHFeJSL017500@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_SrKfDsvSjXb/rP1" Message-Id: <200511170807.46482.ringworm01@gmail.com> Cc: Subject: Re: ports/89164: [PATCH] /var/db/pkg/{portname}/+CONTENTS files sometimes contain wrong data 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: Thu, 17 Nov 2005 16:17:06 -0000 --Boundary-00=_SrKfDsvSjXb/rP1 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline On Thursday 17 November 2005 07:40, Pav Lucistnik wrote: > The following reply was made to PR ports/89164; it has been noted by GNATS. > > From: Pav Lucistnik > To: bug-followup@FreeBSD.org > Cc: > Subject: Re: ports/89164: [PATCH] /var/db/pkg/{portname}/+CONTENTS files > sometimes contain wrong data > Date: Thu, 17 Nov 2005 16:35:02 +0100 > > Could you send the standalone bsd.port.mk patch to this PR? > > -- > Pav Lucistnik > > > Alignment: Neutral Greedy Sorry, should have said where it was, gets put into /usr/local/share/portmanager but I'll attach the patch to this message anyways. I've fixed a bug where the package list is picking up build dependencies since posting this yesterday. You sould be able to test ok with what is there but if you like I have a version available that also handles the patch better and fixes the bug. -Mike --Boundary-00=_SrKfDsvSjXb/rP1 Content-Type: text/x-diff; charset="iso-8859-6"; name="patch-bsd.port.mk-0.3.6" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-bsd.port.mk-0.3.6" --- /usr/ports/Mk/bsd.port.mk Tue Nov 8 01:02:51 2005 +++ bsd.port.mk Wed Nov 16 02:16:57 2005 @@ -2049,7 +2049,9 @@ DISABLE_CONFLICTS= YES .endif .if !defined(PKG_ARGS) -PKG_ARGS= -v -c -${COMMENT:Q} -d ${DESCR} -f ${TMPPLIST} -p ${PREFIX} -P "`cd ${.CURDIR} && ${MAKE} package-depends | ${GREP} -v -E ${PKG_IGNORE_DEPENDS} | ${SORT} -u`" ${EXTRA_PKG_ARGS} $${_LATE_PKG_ARGS} +PORTMANAGER= ${LOCALBASE}/bin/portmanager /${PKGORIGIN} package-depends +PKG_ARGS= -v -c -${COMMENT:Q} -d ${DESCR} -f ${TMPPLIST} -p ${PREFIX} -P "`cd ${.CURDIR} && ${PORTMANAGER} | ${GREP} -v -E ${PKG_IGNORE_DEPENDS} | ${SORT} -u`" ${EXTRA_PKG_ARGS} $${_LATE_PKG_ARGS} +###PKG_ARGS= -v -c -${COMMENT:Q} -d ${DESCR} -f ${TMPPLIST} -p ${PREFIX} -P "`cd ${.CURDIR} && ${MAKE} package-depends | ${GREP} -v -E ${PKG_IGNORE_DEPENDS} | ${SORT} -u`" ${EXTRA_PKG_ARGS} $${_LATE_PKG_ARGS} .if !defined(NO_MTREE) PKG_ARGS+= -m ${MTREE_FILE} .endif --Boundary-00=_SrKfDsvSjXb/rP1--