svn commit: r453653 - in head/devel: . aphpunit

Torsten Zuehlsdorff tz at FreeBSD.org
Tue Nov 7 11:13:05 UTC 2017


Author: tz
Date: Tue Nov  7 11:11:48 2017
New Revision: 453653
URL: https://svnweb.freebsd.org/changeset/ports/453653

Log:
  New port: devel/aphpunit
  
  APHPUnit is a regression testing framework for PHP unit tests.
  It removes many limitations the standard literature about
  testing declares for years while making tests very fast.
  
  WWW: http://gitlab.toco-domains/APHPUnit/APHPUnit

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Nov  7 09:11:31 2017	(r453652)
+++ head/devel/Makefile	Tue Nov  7 11:11:48 2017	(r453653)
@@ -106,6 +106,7 @@
     SUBDIR += antlr4
     SUBDIR += apache-ant
     SUBDIR += apache-rat
+    SUBDIR += aphpunit
     SUBDIR += api-sanity-autotest
     SUBDIR += apiextractor
     SUBDIR += appstream-glib

Added: head/devel/aphpunit/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/aphpunit/Makefile	Tue Nov  7 11:11:48 2017	(r453653)
@@ -0,0 +1,30 @@
+# $FreeBSD$
+
+PORTNAME=	aphpunit
+DISTVERSION=	1.0
+CATEGORIES=	devel www
+MASTER_SITES=	http://phar.toco-domains.de/
+EXTRACT_SUFX=	.phar
+
+MAINTAINER=	tz at FreeBSD.org
+COMMENT=	Testing framework for unit tests
+
+LICENSE=	BSD2CLAUSE
+
+USES=	php
+USE_PHP=	pcntl sysvmsg
+
+NO_ARCH=	yes
+NO_BUILD=	yes
+
+PLIST_FILES=	bin/aphpunit
+
+# Download isn't compressed or aggregated, it's just the single file
+do-extract:
+	${CP} ${DISTDIR}/${DISTFILES} ${WRKDIR}/${PORTNAME}
+
+do-install:
+	${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} \
+			${STAGEDIR}${PREFIX}/bin/${PORTNAME}
+
+.include <bsd.port.mk>

Added: head/devel/aphpunit/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/aphpunit/distinfo	Tue Nov  7 11:11:48 2017	(r453653)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1510052758
+SHA256 (aphpunit-1.0.phar) = d609ef205f65a30bad765c04f01a037f5d1e6d5ff5b4e083d43f74eb7f03da0e
+SIZE (aphpunit-1.0.phar) = 42858

Added: head/devel/aphpunit/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/aphpunit/pkg-descr	Tue Nov  7 11:11:48 2017	(r453653)
@@ -0,0 +1,5 @@
+APHPUnit is a regression testing framework for PHP unit tests.
+It removes many limitations the standard literature about
+testing declares for years while making tests very fast.
+
+WWW: http://gitlab.toco-domains/APHPUnit/APHPUnit


More information about the svn-ports-all mailing list