From owner-svn-ports-head@FreeBSD.ORG Thu Jun 27 20:16:01 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id B93AE8D7; Thu, 27 Jun 2013 20:16:01 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id ABA061CC2; Thu, 27 Jun 2013 20:16:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5RKG1jS065040; Thu, 27 Jun 2013 20:16:01 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5RKG1Wa065039; Thu, 27 Jun 2013 20:16:01 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201306272016.r5RKG1Wa065039@svn.freebsd.org> From: Bryan Drewery Date: Thu, 27 Jun 2013 20:16:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r321901 - head 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.14 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: Thu, 27 Jun 2013 20:16:01 -0000 Author: bdrewery Date: Thu Jun 27 20:16:01 2013 New Revision: 321901 URL: http://svnweb.freebsd.org/changeset/ports/321901 Log: Add note on portmaster+pkgng changes Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Thu Jun 27 18:39:23 2013 (r321900) +++ head/UPDATING Thu Jun 27 20:16:01 2013 (r321901) @@ -6,6 +6,30 @@ You should get into the habit of checkin you update your ports collection, before attempting any port upgrades. 20130627: + AFFECTS: users of ports-mgmt/portmaster + AUTHOR: bdrewery@FreeBSD.org + + Since June 22nd, portmaster no longer relies on 'WITH_PKGNG' to be defined, + or ports to be checked out to enable pkgng support. + + It now considers whether or not pkg is installed and registered with itself. + + I.e., if this returns data, pkgng is considered in use: + + # pkg info pkg + + It's possible that you may have tested pkgng in the past, ran pkg2ng, and + never fully committed to it by setting WITH_PKGNG. If this is the case, + uninstall pkg with pkg_info/pkg_delete and also remove the stale database, + rm /var/db/pkg/local.sqlite. + + This could manifest itself as portmaster -L showing the wrong versions, or + portmaster no longer detecting installed packages correctly. + + Note that PORTS still require WITH_PKGNG=yes in make.conf if you are not + running CURRENT. + +20130627: AFFECTS: users of net/samba36 AUTHOR: timur@FreeBSD.org