From owner-freebsd-stable@FreeBSD.ORG Tue Feb 11 05:01:30 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 92DB18F3 for ; Tue, 11 Feb 2014 05:01:30 +0000 (UTC) Received: from isis.morrow.me.uk (isis.morrow.me.uk [204.109.63.142]) by mx1.freebsd.org (Postfix) with ESMTP id 6B65714D3 for ; Tue, 11 Feb 2014 05:01:30 +0000 (UTC) Received: from anubis.morrow.me.uk (host86-168-41-64.range86-168.btcentralplus.com [86.168.41.64]) (Authenticated sender: mauzo) by isis.morrow.me.uk (Postfix) with ESMTPSA id 95A2245060; Tue, 11 Feb 2014 05:01:22 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 isis.morrow.me.uk 95A2245060 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=morrow.me.uk; s=dkim201101; t=1392094883; bh=PFbw7ElOtk+xN+PH3/UheFlxmooI8PBvw6NRqLR2bQE=; h=Date:From:To:Subject:In-Reply-To; b=0EZXlhzibfuHfM2/00Bv41tUAVlNHjvlXtU5K1Btr6ctfZP4XVE8eBLrpomeW0+e1 GCPb2+wRtdyhvMZg4GbozdlS99oiCJ5OEBYgopZ0U05Pqsy3aBpMC5Qppp4D30Gd6U Be39T5gMU3E0g/oBeKAzyOR1yh14PpsWAgxciyjM= X-Virus-Status: Clean X-Virus-Scanned: clamav-milter 0.98 at isis.morrow.me.uk Received: by anubis.morrow.me.uk (Postfix, from userid 5001) id 940AA10A9D; Tue, 11 Feb 2014 05:01:19 +0000 (GMT) Date: Tue, 11 Feb 2014 05:01:19 +0000 From: Ben Morrow To: stephen@missouri.edu, freebsd-stable@freebsd.org Subject: Re: Concerning pkgng Message-ID: <20140211050114.GA7990@anubis.morrow.me.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <52F9A3C9.6090804@missouri.edu> X-Newsgroups: gmane.os.freebsd.devel.ports,gmane.os.freebsd.stable User-Agent: Mutt/1.5.22 (2013-10-16) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Feb 2014 05:01:30 -0000 Quoth "Montgomery-Smith, Stephen" : > So I have started using pkgng. It is extremely easy to convert, it runs > very fast, and I really like it. > > However, it would be nice if the old pkg_install, pkg_info, etc programs > were somehow disabled on FreeBSD-8. Maybe they could look inside > /etc/make.conf and see if /var/db/pkg/local.sqlite exists, and then > decide not to operate. > > The reason for this is because I can easily see me accidentally doing > pkg_delete instead of pkg delete. And especially since pkg convert > seems to leave all the old directories in /var/db/pkg, I can see this > creating quite a mess. > > I know I can simply delete the pkg_delete, pkg_info binaries. But I'll > have to remember to do that each time I remake world. Put WITHOUT_PKGTOOLS=1 in your /etc/src.conf. (Remember to make delete-old next time you build world.) Ben