Date: Tue, 7 Nov 2017 11:11:48 +0000 (UTC) From: Torsten Zuehlsdorff <tz@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453653 - in head/devel: . aphpunit Message-ID: <201711071111.vA7BBm8d040612@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201711071111.vA7BBm8d040612>