From owner-svn-ports-all@freebsd.org Wed Jul 15 10:16:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CD44D9A1888; Wed, 15 Jul 2015 10:16:36 +0000 (UTC) (envelope-from grembo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B37031160; Wed, 15 Jul 2015 10:16:36 +0000 (UTC) (envelope-from grembo@FreeBSD.org) Received: from svnmir.geo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6FAGanY094219; Wed, 15 Jul 2015 10:16:36 GMT (envelope-from grembo@FreeBSD.org) Received: (from grembo@localhost) by svnmir.geo.freebsd.org (8.14.9/8.14.9/Submit) id t6FAGaAl094217; Wed, 15 Jul 2015 10:16:36 GMT (envelope-from grembo@FreeBSD.org) Message-Id: <201507151016.t6FAGaAl094217@svnmir.geo.freebsd.org> X-Authentication-Warning: svnmir.geo.freebsd.org: grembo set sender to grembo@FreeBSD.org using -f From: Michael Gmelin Date: Wed, 15 Jul 2015 10:16:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r392125 - in head/devel/arcanist: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Jul 2015 10:16:36 -0000 Author: grembo Date: Wed Jul 15 10:16:35 2015 New Revision: 392125 URL: https://svnweb.freebsd.org/changeset/ports/392125 Log: Patch 'arc version' so it shows package versions. Differential Revision: https://reviews.freebsd.org/D3071 Approved by: eadler, mentors (implicit) Added: head/devel/arcanist/files/ head/devel/arcanist/files/patch-src-workflow-ArcanistVersionWorkflow.php (contents, props changed) Modified: head/devel/arcanist/Makefile Modified: head/devel/arcanist/Makefile ============================================================================== --- head/devel/arcanist/Makefile Wed Jul 15 09:12:35 2015 (r392124) +++ head/devel/arcanist/Makefile Wed Jul 15 10:16:35 2015 (r392125) @@ -2,6 +2,7 @@ PORTNAME= arcanist PORTVERSION= 20150626 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= php5- Added: head/devel/arcanist/files/patch-src-workflow-ArcanistVersionWorkflow.php ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arcanist/files/patch-src-workflow-ArcanistVersionWorkflow.php Wed Jul 15 10:16:35 2015 (r392125) @@ -0,0 +1,16 @@ +--- src/workflow/ArcanistVersionWorkflow.php.orig 2015-07-14 00:07:20.409019999 +0200 ++++ src/workflow/ArcanistVersionWorkflow.php 2015-07-14 00:27:09.586063998 +0200 +@@ -27,6 +27,13 @@ + public function run() { + $console = PhutilConsole::getConsole(); + ++ $versions = array(); ++ exec("pkg query '%n %v (%o)' php5-arcanist php5-libphutil", $versions); ++ foreach ($versions as $pkg) { ++ $console->writeOut($pkg."\n"); ++ } ++ return; ++ + if (!Filesystem::binaryExists('git')) { + throw new ArcanistUsageException( + pht(