From owner-freebsd-questions@FreeBSD.ORG Sat Aug 18 20:26:57 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D86116A417 for ; Sat, 18 Aug 2007 20:26:57 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from rosebud.otenet.gr (rosebud.otenet.gr [195.170.0.94]) by mx1.freebsd.org (Postfix) with ESMTP id E911213C45D for ; Sat, 18 Aug 2007 20:26:56 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from atlantis.dyndns.org (athedsl-313937.home.otenet.gr [85.72.81.239]) by rosebud.otenet.gr (8.13.8/8.13.8/Debian-3) with ESMTP id l7IKQrYJ007675; Sat, 18 Aug 2007 23:26:54 +0300 Message-ID: <46C7560D.7070502@otenet.gr> Date: Sat, 18 Aug 2007 23:26:53 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.5 (X11/20070719) MIME-Version: 1.0 To: Pollywog References: <200708181936.45025.lists-fbsd@shadypond.com> <46C74CC9.5000401@otenet.gr> <200708182016.00017.lists-fbsd@shadypond.com> In-Reply-To: <200708182016.00017.lists-fbsd@shadypond.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: problem with supfile X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Aug 2007 20:26:57 -0000 Pollywog wrote: > On Saturday 18 August 2007 19:47:21 Manolis Kiagias wrote: > >> Pollywog wrote: >> >>> Someone please tell me why my supfile is not working. I think the >>> problem is the tag but I am unsure why: >>> >>> *default host=cvsup2.FreeBSD.org >>> *default base=/var/db >>> *default prefix=/usr >>> *default release=cvs tag=RELENG_6_2 >>> *default delete use-rel-suffix >>> >>> # If you seem to be limited by CPU rather than network or disk bandwidth, >>> try # commenting out the following line. (Normally, today's CPUs are >>> fast enough # that you want to run compression.) >>> *default compress >>> >>> # This collection retrieves the www/ tree of the FreeBSD repository >>> #www >>> ports-all >>> _______________________________________________ >>> freebsd-questions@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >>> To unsubscribe, send any mail to >>> "freebsd-questions-unsubscribe@freebsd.org" >>> >> Since this is obviously a ports-supfile, are you sure you want to cvsup >> the RELENG_6_2 ports; >> These refer to the ports tree at the exact point when 6.2 was released. >> You already have them, you installed that ports tree from your CDROM >> during installation. >> Instead, you probably need a line like: >> >> *default release=cvs tag=. >> >> to get the latest available ports. >> > > Thanks, that has to be it, because on my laptop, I have it as above and it > works. The problem is that when I updated src-ports with a similar supfile, > I ended up with FreeBSD 7 on the laptop. > > > Yes, and this is the right behavious since tag=. will get you HEADS from the repository and if you use it for the BASE SYSTEM, that is src-all, you will get FreeBSD 7.0 If you use it for the ports, you will simply get the latest available applications, which (should) work fine on the RELEASE version. If you wish to get the latest stable (base) system: *default release=cvs tag=RELENG_6 src-all If you wish to get the security branch of 6.2 RELEASE, us: *default release=cvs tag=RELENG_6_2 src-all I suggest you read the example files in /usr/share/examples/cvsup. You will get it instantly.