svn commit: r444855 - in head/devel/phabricator: . files

Michael Gmelin grembo at FreeBSD.org
Sat Jul 1 23:10:50 UTC 2017


Author: grembo
Date: Sat Jul  1 23:10:49 2017
New Revision: 444855
URL: https://svnweb.freebsd.org/changeset/ports/444855

Log:
  Don't run shebangfix on symlinks
  
  This isn't allowed on CURRENT any more and created copies of
  files where symlinks should have been preserved. Also makes
  patching files in bin unnecessary.
  
  Reported by:	rozhuk.im at gmail.com

Deleted:
  head/devel/phabricator/files/patch-bin
Modified:
  head/devel/phabricator/Makefile
  head/devel/phabricator/files/phd.in

Modified: head/devel/phabricator/Makefile
==============================================================================
--- head/devel/phabricator/Makefile	Sat Jul  1 22:22:19 2017	(r444854)
+++ head/devel/phabricator/Makefile	Sat Jul  1 23:10:49 2017	(r444855)
@@ -2,6 +2,7 @@
 
 PORTNAME=	phabricator
 PORTVERSION=	20170630
+PORTREVISION=	1
 CATEGORIES=	devel
 PKGNAMEPREFIX=	php-
 
@@ -20,14 +21,12 @@ OPTIONS_DEFAULT=OPCACHE
 OPCACHE_DESC?=	Use OPcache to improve performance
 
 USES=		php shebangfix
-SHEBANG_FILES=	bin/* \
-		externals/httpful/build \
+SHEBANG_FILES=	externals/httpful/build \
 		externals/restful/build-phar \
 		scripts/almanac/*.php \
 		scripts/cache/*.php \
 		scripts/celerity/*.php \
 		scripts/daemon/*.php \
-		scripts/daemon/phd-daemon \
 		scripts/diviner/*.php \
 		scripts/drydock/*.php \
 		scripts/fact/*.php \

Modified: head/devel/phabricator/files/phd.in
==============================================================================
--- head/devel/phabricator/files/phd.in	Sat Jul  1 22:22:19 2017	(r444854)
+++ head/devel/phabricator/files/phd.in	Sat Jul  1 23:10:49 2017	(r444855)
@@ -49,7 +49,8 @@ phd_poll()
 
 phd_restart()
 {
-	run_rc_command stop
+	${stop_cmd}
+	phd_poll
 	run_rc_command start
 }
 


More information about the svn-ports-all mailing list