From owner-freebsd-gnome@FreeBSD.ORG Tue May 13 17:38:45 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4287537B401 for ; Tue, 13 May 2003 17:38:45 -0700 (PDT) Received: from mail3.tpgi.com.au (mail.tpgi.com.au [203.12.160.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8509E43FA3 for ; Tue, 13 May 2003 17:38:43 -0700 (PDT) (envelope-from cjm@ava.com.au) Received: from server (1Cust210.tnt7.adl1.da.uu.net [63.12.9.210]) (authenticated (0 bits)) by mail3.tpgi.com.au (8.11.6/8.11.6) with ESMTP id h4E0cWM01652; Wed, 14 May 2003 10:38:32 +1000 Message-ID: <006b01c319b1$6f266980$0100a8c0@server> From: "Chris Munchenberg" To: "Martin Klaffenboeck" , "Mezz bsdforums.org" References: <20030508203245.GE72477@martin.kleinerdrache.org> Date: Wed, 14 May 2003 10:10:30 +0930 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2720.3000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: gnome@freebsd.org Subject: Re: keep ports up to date. X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 May 2003 00:38:45 -0000 Thanks for your help. Its taken me a week to get back to you because = there was so much updating being done. It took me a while to get the = have of portdb & portupdate. But I now have wxPython working!! I just have 1 further question, and I'm asking you because its in your = script. How important is marcusmerge? What part does it play in the = ports system. Thanks, Chris. ----- Original Message -----=20 From: Martin Klaffenboeck=20 To: Mezz bsdforums.org=20 Cc: martin.klaffenboeck@gmx.at ; gnome@freebsd.org ; cjm@ava.com.au=20 Sent: Friday, May 09, 2003 6:02 AM Subject: Re: keep ports up to date. Am 2003.05.08 21:21 schrieb(en) Mezz bsdforums.org: >>> You should >>> install >>> sysutils/portupgrade, and get used to using it to keep your=20 >>> installed >>> ports up-to-date. >>=20 >> I'm using this script by hand daily: >>=20 >> --------- ports_uptodate.sh ---------- >> #!/bin/sh >> if [ "$1" !=3D "-s" ]; then >> cd /usr/ports >> cp INDEX.ports INDEX >> make update >> cp INDEX INDEX.ports >> marcusmerge -u >> portsdb -uU >> fi >> pkgdb -F >> portversion -l "<" | awk '{ print($1); }' > /root/work/update >> vi /root/work/update >> portupgrade `cat /root/work/update` >> pkgdb -F >> ------------------------------------- >=20 > You can cut the portversion to portupgrade like this: >=20 > ------------------------------------- > ... > ... > pkgdb -F > portupgrade -ra > pkgdb -F > ------------------------------------- I know, but I want to make sure that I have the possibility to choose=20 what I want to update, and there are some ports I really want to update=20 by hand. (tmda for example) So I have the vi /root/work/update line for removeing some ports I want to update by hand. (Normally I do=20 that before I close the vi) Martin