From owner-freebsd-questions@FreeBSD.ORG Mon Jan 13 12:42:24 2014 Return-Path: Delivered-To: freebsd-questions@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 0012860A for ; Mon, 13 Jan 2014 12:42:23 +0000 (UTC) Received: from mail-qa0-x231.google.com (mail-qa0-x231.google.com [IPv6:2607:f8b0:400d:c00::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5D05B1A02 for ; Mon, 13 Jan 2014 12:42:23 +0000 (UTC) Received: by mail-qa0-f49.google.com with SMTP id w8so5009142qac.8 for ; Mon, 13 Jan 2014 04:42:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=seibercom.net; s=google; h=date:from:to:subject:message-id:in-reply-to:references:reply-to :mime-version:content-type:content-transfer-encoding; bh=xY1QBwVxerxhmMyWbXYbiyDksRaPtKpmfn3Nw9Sy+30=; b=F+WHhke3YYzggw89yJz4o/ifLiXtfV3SPV1RukaY9b9ZoUsgwcWsRp4LVoGsXp2hnC UNY1qFvtRCXDeVi1X9fDIoleOZ21z3t5BX8QWkLsX/Np5AbYcuJPL8UlI37juTElzdVr WoqWZlDaSPCfiBpX51tdHOu7PBSmgvoXLUzO8= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:subject:message-id:in-reply-to :references:reply-to:mime-version:content-type :content-transfer-encoding; bh=xY1QBwVxerxhmMyWbXYbiyDksRaPtKpmfn3Nw9Sy+30=; b=YlE2tD0AFg94HEU/G+WbuHOC+BChJwwg6bd/SrJQ3FM3vK50LKefiWfrMTr+DBSgPl d/OrbeYS9U2w3xKnOo45ZWpfuwBIimksX9rHrTEzkpw0kmbDd2FijUtfCvv2l13TJYlO 9oB+/FXafaDg5iaAlQpx/g/U4Vjp+x/z+K/GVDxEXvSClbwCltCf5PlBpZVEuClzCffa AWAi3qgHAUrleLOL/Sk8xqGJm9ZVC4iFc0CgST5En/HSSLglx18vxSTwf0kpsgytTM/V NDJhIGYSDqwJ4gCv0xOLhnin1A/kwkR2B5+2cbw5LltDqd2mCqB+btTT/EhBiaJrp/L2 //EA== X-Gm-Message-State: ALoCoQlZ04eVbMlhX3BiuVvXYzCienql9wo0egx8TkgbnWgTO7EEv+1OukOQfP2zxvW2lhA1Qh/E X-Received: by 10.224.151.203 with SMTP id d11mr39245344qaw.71.1389616942327; Mon, 13 Jan 2014 04:42:22 -0800 (PST) Received: from scorpio (cpe-076-182-104-150.nc.res.rr.com. [76.182.104.150]) by mx.google.com with ESMTPSA id q4sm25028853qac.18.2014.01.13.04.42.21 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Mon, 13 Jan 2014 04:42:21 -0800 (PST) Date: Mon, 13 Jan 2014 07:42:21 -0500 From: Jerry To: User questions Subject: Re: Listing ports that have updates available Message-ID: <20140113074221.34fc996b@scorpio> In-Reply-To: <52D3D010.3060601@freebsd.org> References: <20140113060422.7139c675@scorpio> <52D3D010.3060601@freebsd.org> X-Mailer: Claws Mail 3.9.3 (GTK+ 2.24.22; amd64-portbld-freebsd10.0) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: User questions List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Jan 2014 12:42:24 -0000 On Mon, 13 Jan 2014 11:37:52 +0000, Matthew Seaman stated: > On 01/13/14 11:04, Jerry wrote: > > I use to use the following to get a list of ports that needed > > updating: > > > > /usr/sbin/pkg_version -vIL= > > > > Since updating to FreeBSD 10.0-RC3 that option is no longer > > available. Presently, I am using a quick hack to get a list > > applications that have updates available for them: > > > > portversion -v | grep -i "<" > > > > Is there a better method available? I compile all of the software > > on my machine. I don't use "pkg" to install anything. > > > > If you have a local copy of /usr/ports with an up to date INDEX, then: > > pkg version -vIL= > > (just one character's difference) -- or if you're using binary > packages, > > pkg version -vRL= Thanks -- Jerry