From owner-freebsd-questions@FreeBSD.ORG Sun Jun 15 06:43:19 2008 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 97B83106564A for ; Sun, 15 Jun 2008 06:43:19 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (gate6.infracaninophile.co.uk [IPv6:2001:8b0:151:1::1]) by mx1.freebsd.org (Postfix) with ESMTP id 12ECA8FC16 for ; Sun, 15 Jun 2008 06:43:18 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.2/8.14.2) with ESMTP id m5F6hCFt007361; Sun, 15 Jun 2008 07:43:13 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.5.5 smtp.infracaninophile.co.uk m5F6hCFt007361 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=infracaninophile.co.uk; s=200708; t=1213512193; bh=X2dRXaaLJ4ZX+q gXX1gZ79A5+jc7Zrz4LdszmmhBysw=; h=Message-ID:Date:From:MIME-Version: To:CC:Subject:References:In-Reply-To:Content-Type:Cc:Content-Type: Date:From:In-Reply-To:Message-ID:Mime-Version:References:To; z=Mes sage-ID:=20<4854B9FA.4050208@infracaninophile.co.uk>|Date:=20Sun,=2 015=20Jun=202008=2007:43:06=20+0100|From:=20Matthew=20Seaman=20|Organization:=20Infracaninophile|User -Agent:=20Thunderbird=202.0.0.14=20(X11/20080607)|MIME-Version:=201 .0|To:=20Jos=20Chrispijn=20|CC:=20freebsd-questions@ freebsd.org|Subject:=20Re:=20PORTS=20-=20no=20longer=20updated|Refe rences:=20<48544361.2040603@webrz.net>|In-Reply-To:=20<48544361.204 0603@webrz.net>|X-Enigmail-Version:=200.95.6|Content-Type:=20multip art/signed=3B=20micalg=3Dpgp-sha256=3B=0D=0A=20protocol=3D"applicat ion/pgp-signature"=3B=0D=0A=20boundary=3D"------------enig0FC619320 703EE69DBC3AE76"; b=0QB5YB6rQeseTAhefHmEkxBHRDX6Ztvuk1+dnD1xshzQLip 8FK56jvikBDcEPWUB+Z1bMNTRYyL9kRbGBtdE7uZebeX/8ZBHfkBeF4XJMDsh+7DCn9 gwEzoUPemgTlWshmXcjYpJX+J0QupU9c0KT5AjjE02PlEUCjxh24QisJY= Message-ID: <4854B9FA.4050208@infracaninophile.co.uk> Date: Sun, 15 Jun 2008 07:43:06 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 2.0.0.14 (X11/20080607) MIME-Version: 1.0 To: Jos Chrispijn References: <48544361.2040603@webrz.net> In-Reply-To: <48544361.2040603@webrz.net> X-Enigmail-Version: 0.95.6 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enig0FC619320703EE69DBC3AE76" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0 (smtp.infracaninophile.co.uk [IPv6:::1]); Sun, 15 Jun 2008 07:43:13 +0100 (BST) X-Virus-Scanned: ClamAV version 0.93, clamav-milter version 0.93 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-3.0 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VERIFIED,NO_RELAYS autolearn=ham version=3.2.4 X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on happy-idiot-talk.infracaninophile.co.uk Cc: freebsd-questions@freebsd.org Subject: Re: PORTS - no longer updated 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: Sun, 15 Jun 2008 06:43:19 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig0FC619320703EE69DBC3AE76 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Jos Chrispijn wrote: > I use a port that no longer is supported thru the regular ports. >=20 > p5-Text-ParseWords-3.1 Parse text into an array of tokens or array of=20 > arrays >=20 > ** Listing the failed packages (-:ignored / *:skipped / !:failed) > - textproc/p5-Text-ParseWords (port directory error) >=20 > Have tried to remove it, but then I get the message that there are stil= l=20 > other installed programs are using it. >=20 > Would the only possibility be that I excluded it from being update by=20 > adding it to pkgtools.conf or is there another way to correct this? Text::ParseWords is provided by the basic perl port -- see, no installed package: % pkg_info -Ix ParseWords pkg_info: no packages match pattern(s) but the module is still there: % perl -MText::ParseWords -le 'print $Text::ParseWords::VERSION;' 3.24 What you need to do is force delete the package: # pkg_delete -f p5-Text-ParseWords-3.1 and then run # pkgdb -Fu to fix up the broken dependency linkages. Everything that depended on p5-Text-ParseWords would already depend on perl anyhow, so just delete the dependency if pkgdb can't work it out for itself. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enig0FC619320703EE69DBC3AE76 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEAREIAAYFAkhUugAACgkQ8Mjk52CukIxqQgCcCTrklyzWcJd5vC2JwOmGtH5b 6woAn3ImF8lid342ct5XCOOuVivTzqFJ =mYw+ -----END PGP SIGNATURE----- --------------enig0FC619320703EE69DBC3AE76--