Index: devel/arcanist/Makefile =================================================================== --- devel/arcanist/Makefile +++ devel/arcanist/Makefile @@ -2,6 +2,7 @@ PORTNAME= arcanist PORTVERSION= 20150626 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= php5- Index: devel/arcanist/files/patch-src-workflow-ArcanistVersionWorkflow.php =================================================================== --- /dev/null +++ devel/arcanist/files/patch-src-workflow-ArcanistVersionWorkflow.php @@ -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(