svn commit: r496823 - in head/devel: . deployer

Torsten Zuehlsdorff tz at FreeBSD.org
Mon Mar 25 14:03:18 UTC 2019


Author: tz
Date: Mon Mar 25 14:03:16 2019
New Revision: 496823
URL: https://svnweb.freebsd.org/changeset/ports/496823

Log:
  New port: devel/deployer
  
  A deployment tool written in PHP with support for popular frameworks out of the
  box.
  
  WWW: https://deployer.org/
  
  Sponsored by:	anyMOTION GRAPHICS GmbH

Added:
  head/devel/deployer/
  head/devel/deployer/Makefile   (contents, props changed)
  head/devel/deployer/distinfo   (contents, props changed)
  head/devel/deployer/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Mar 25 13:29:54 2019	(r496822)
+++ head/devel/Makefile	Mon Mar 25 14:03:16 2019	(r496823)
@@ -446,6 +446,7 @@
     SUBDIR += deheader
     SUBDIR += delta
     SUBDIR += dep
+    SUBDIR += deployer
     SUBDIR += derelict-sdl2
     SUBDIR += derelict-util
     SUBDIR += desktop-file-utils

Added: head/devel/deployer/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/deployer/Makefile	Mon Mar 25 14:03:16 2019	(r496823)
@@ -0,0 +1,35 @@
+# $FreeBSD$
+
+PORTNAME=	deployer
+DISTVERSION=	6.4.3
+CATEGORIES=	devel
+MASTER_SITES=	https://deployer.org/releases/v${DISTVERSION}/
+PKGNAMEPREFIX=	${PHP_PKGNAMEPREFIX}
+DISTNAME=	deployer
+EXTRACT_SUFX=	.phar
+DIST_SUBDIR=	${PORTNAME}-${PORTVERSION}
+
+MAINTAINER=	tz at FreeBSD.org
+COMMENT=	Deployment tool for PHP
+
+LICENSE=	MIT
+
+USES=		php:flavors
+USE_PHP=	curl iconv json openssl pcntl phar posix zlib
+
+NO_ARCH=	yes
+NO_BUILD=	yes
+NO_WRKSUBDIR=	yes
+
+PLIST_FILES=	bin/deployer \
+		bin/deployer.phar
+
+do-extract:
+	${MKDIR} ${WRKSRC}/
+	${CP} ${_DISTDIR}/deployer.phar ${WRKSRC}/
+
+do-install:
+	${INSTALL_SCRIPT} ${WRKSRC}/deployer.phar ${STAGEDIR}${PREFIX}/bin/
+	${LN} -s deployer.phar ${STAGEDIR}${PREFIX}/bin/deployer
+
+.include <bsd.port.mk>

Added: head/devel/deployer/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/deployer/distinfo	Mon Mar 25 14:03:16 2019	(r496823)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1553506033
+SHA256 (deployer-6.4.3/deployer.phar) = d0b0d4dbd834c1d5e387981042d452017dd92eb5db00c8fa1db31ad343d9bedf
+SIZE (deployer-6.4.3/deployer.phar) = 351845

Added: head/devel/deployer/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/deployer/pkg-descr	Mon Mar 25 14:03:16 2019	(r496823)
@@ -0,0 +1,4 @@
+A deployment tool written in PHP with support for popular frameworks out of the
+box.
+
+WWW: https://deployer.org/


More information about the svn-ports-all mailing list