From owner-svn-ports-head@FreeBSD.ORG Fri Dec 20 23:05:36 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 37943945; Fri, 20 Dec 2013 23:05:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 239041275; Fri, 20 Dec 2013 23:05:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBKN5agN092599; Fri, 20 Dec 2013 23:05:36 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBKN5Z4T092598; Fri, 20 Dec 2013 23:05:35 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201312202305.rBKN5Z4T092598@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 20 Dec 2013 23:05:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337100 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Dec 2013 23:05:36 -0000 Author: bapt Date: Fri Dec 20 23:05:35 2013 New Revision: 337100 URL: http://svnweb.freebsd.org/changeset/ports/337100 Log: Stop registering recursively dependencies into package with pkgng pkg has a naive solver but good enough to properly order the dependencies and not get into a missed dependency pkg register is also able to figure out by itself lib_depends magically added during the compilation. Modified: head/Mk/bsd.pkgng.mk Modified: head/Mk/bsd.pkgng.mk ============================================================================== --- head/Mk/bsd.pkgng.mk Fri Dec 20 22:55:35 2013 (r337099) +++ head/Mk/bsd.pkgng.mk Fri Dec 20 23:05:35 2013 (r337100) @@ -33,7 +33,6 @@ PLIST_REINPLACE:= ${PLIST_REINPLACE:Nsto ACTUAL-PACKAGE-DEPENDS?= \ if [ "${_LIB_RUN_DEPENDS}" != " " ]; then \ ${PKG_QUERY} "%n: {origin: %o, version: \"%v\"}" " " ${_LIB_RUN_DEPENDS:C,[^:]*:([^:]*):?.*,\1,:C,${PORTSDIR}/,,} 2>/dev/null || : ; \ - ${PKG_QUERY} "%dn: {origin: %do, version: \"%dv\"}" " " ${_LIB_RUN_DEPENDS:C,[^:]*:([^:]*):?.*,\1,:C,${PORTSDIR}/,,} 2>/dev/null || : ; \ fi create-manifest: