From owner-freebsd-ports@FreeBSD.ORG Mon May 12 00:31:09 2014 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B59D4F83 for ; Mon, 12 May 2014 00:31:09 +0000 (UTC) Received: from icp-osb-irony-out5.external.iinet.net.au (icp-osb-irony-out5.external.iinet.net.au [203.59.1.221]) by mx1.freebsd.org (Postfix) with ESMTP id 39F30245A for ; Mon, 12 May 2014 00:31:08 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AmgFANsVcFPLzmuw/2dsb2JhbABZFoJwT4JuqSYBAQEImhkBgRUWdIIlAQEEATpECwsNCwklDwUYRIg5Bw7OWheFVoVtgj4BAVYWgxWBFQSZR4E9hRJAi3mDSCswgQk X-IronPort-AV: E=Sophos;i="4.97,1031,1389715200"; d="scan'208";a="192065905" Received: from unknown (HELO smtp.phoenix) ([203.206.107.176]) by icp-osb-irony-out5.iinet.net.au with ESMTP; 12 May 2014 08:31:06 +0800 Received: by smtp.phoenix (Postfix, from userid 1001) id 5102B8EF; Mon, 12 May 2014 10:31:06 +1000 (EST) Date: Mon, 12 May 2014 10:31:06 +1000 From: andrew clarke To: freebsd-ports@freebsd.org Subject: Re: ACTION REQUIRED - Unstaged Ports being DEPRECATED on June 31st. Message-ID: <20140512003106.GB21380@ozzmosis.com> References: <536E46E0.7030906@FreeBSD.org> <536E4A1E.7070406@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <536E4A1E.7070406@FreeBSD.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 May 2014 00:31:09 -0000 On Sat 2014-05-10 10:47:42 UTC-0500, Bryan Drewery (bdrewery@FreeBSD.org) wrote: > On 5/10/2014 10:33 AM, Bryan Drewery wrote: > > You are receiving this mail as it affects FreeBSD ports that you maintain. > > > > You can see the full list here: > > http://people.freebsd.org/~bapt/notstaged.txt A short script I threw together to show any ports installed that are marked as unstaged in the above list: #!/bin/sh pkg info -oa | awk '{ print $2 }' | sort > /tmp/installed.list fetch -o - http://people.freebsd.org/~bapt/notstaged.txt | awk -F: '{ print $1 }' | sort | uniq > /tmp/notstaged.list cat /tmp/installed.list /tmp/notstaged.list | sort | uniq -d rm -f /tmp/installed.list /tmp/notstaged.list Output on my system: - 100% of 139 kB 162 kBps 00m01s editors/uemacs lang/spidermonkey17 mail/dovecot misc/jive misc/zoneinfo multimedia/mediainfo net/istgt net/torsocks security/xinetd sysutils/rename Regards Andrew