From owner-freebsd-ports@FreeBSD.ORG Tue Aug 19 15:26:57 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7381216A4BF for ; Tue, 19 Aug 2003 15:26:57 -0700 (PDT) Received: from strangelove.glynjones.com (63-212-172-50.glynjones.com [63.212.172.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED0F043FDD for ; Tue, 19 Aug 2003 15:26:56 -0700 (PDT) (envelope-from dave-lists@glynjones.com) Received: from [63.208.110.136] (helo=NTWEB) by strangelove.glynjones.com with smtp (Exim 4.20) id 19pEwK-000Dnk-9K; Tue, 19 Aug 2003 15:26:56 -0700 Message-ID: <016601c366a1$06f393a0$886ed03f@glynjones.com> From: "Dave Byrne" To: "Michael Edenfield" References: <009e01c3669b$b9725df0$886ed03f@glynjones.com> <20030819221442.GA8196@wombat.localnet> Date: Tue, 19 Aug 2003 15:27:08 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 cc: freebsd-ports@freebsd.org Subject: Re: HOLD_PKGS not working? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Aug 2003 22:26:57 -0000 I got some ideas from pkg_glob(1) and tried: HOLD_PKGS = [ '*linux*', 'bsdpan-*', 'jdk*', ] -and- HOLD_PKGS = [ 'java/linux-sun-jdk*' 'emulators/linux_base*', 'bsdpan-*', 'jdk*', ] -and- HOLD_PKGS = [ 'java/linux-sun-jdk', 'emulators/linux_base', 'bsdpan-*', 'jdk*', ] However none of the above are masking linux_base and linux-sun-jdk from portversion. any other ideas? Thanks Dave ----- Original Message ----- From: "Michael Edenfield" To: "Dave Byrne" Cc: Sent: Tuesday, August 19, 2003 3:14 PM Subject: Re: HOLD_PKGS not working? >* Dave Byrne [030819 18:06]: >> I am trying to disable portupgrade from trying to upgrade my linux ports >> (linux-base and linux-sun-jdk) by adding it to pkgtools.conf but it seems to >> not be working. > >> HOLD_PKGS = [ >> 'bsdpan-*', >> 'jdk*', >> 'linux-sun-jdk', >> 'linux_base' >> ] > >I beleive you need either a package name *or* a port origin. That >means you should be using either 'linux_base*' or >'emulators/linux_base' here. > >--Mike