From owner-freebsd-hackers@FreeBSD.ORG Thu Feb 3 07:27:30 2005 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F2E9116A4CE for ; Thu, 3 Feb 2005 07:27:29 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5145143D5C for ; Thu, 3 Feb 2005 07:27:27 +0000 (GMT) (envelope-from jcapote@gmail.com) Received: by wproxy.gmail.com with SMTP id 58so181781wri for ; Wed, 02 Feb 2005 23:27:25 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=TYCnew2hhCf+Go4fWQhkws9++PknGpAsIqQoBl7sJJiiHFyokaMyUs75+UF6lOZCuPgPy77BfadhVoc4TBiaeo0ZS14efnfYdvYfChsscMllKWTXKzbeFDz1OPj0FMnW7dHAP8QUqWxrm0cdaRyRdTa2T3oQSoEAodgvkhpAiLI= Received: by 10.54.29.20 with SMTP id c20mr186903wrc; Wed, 02 Feb 2005 23:27:25 -0800 (PST) Received: from localhost.localdomain ([68.223.153.139]) by smtp.gmail.com with ESMTP id 35sm71286wra.2005.02.02.23.27.24; Wed, 02 Feb 2005 23:27:25 -0800 (PST) From: Julio Capote To: Timour Ezeev In-Reply-To: <20050203003340.U42075@jupiter.caelifer.org> References: <20050203003340.U42075@jupiter.caelifer.org> Content-Type: text/plain Date: Thu, 03 Feb 2005 02:29:47 -0500 Message-Id: <1107415787.1627.0.camel@hatter.wonderland.dn> Mime-Version: 1.0 X-Mailer: Evolution 2.0.3 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit cc: freebsd-hackers@freebsd.org Subject: Re: Cool script to update ports in cron.. X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Feb 2005 07:27:30 -0000 Thanks! Merged into release. http://wonderland.hopto.org/~capotej/portsync.pl On Thu, 2005-02-03 at 00:34 -0500, Timour Ezeev wrote: > On Wed, 2 Feb 2005, Julio Capote wrote: > > > I guess the list doesnt like attachments, here's a link: > > http://wonderland.hopto.org/~capotej/portsync.pl > > > > > > -Julio > > I think you have a small problem with cvs release entry, i.e. when you > run your program you get > > *default release=cvs tag==cvs tag=. > > instead of > > *default release=cvs tag=. > > Here is a small patch: > > --- portsync.pl Wed Feb 2 23:28:36 2005 > +++ portsync.pl.new Wed Feb 2 23:32:37 2005 > @@ -20,7 +20,7 @@ > > #Common configuration > my $host = 'cvsup6.us.freebsd.org'; ### Host you want to use for > cvsup > -my $release = '=cvs tag=.'; ### Release branch, i,e > RELENG_5_3, etc > +my $release = '.'; ### Release branch, i,e > RELENG_5_3, etc > my $collection = 'ports-all'; ### Collection you want to > fetch from the server > my $portsdir= '/usr/ports'; ### Location of your ports > tree > my $logfile ='/var/log/portsync.log'; ### File for your logging >