Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 21 Feb 2015 20:15:12 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r379546 - in head/devel: . phpunit
Message-ID:  <201502212015.t1LKFCjL046891@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pi
Date: Sat Feb 21 20:15:11 2015
New Revision: 379546
URL: https://svnweb.freebsd.org/changeset/ports/379546
QAT: https://qat.redports.org/buildarchive/r379546/

Log:
  New port: devel/phpunit 4.5.0
  
  PHPUnit is a regression testing framework used by the developer
  who implements unit tests in PHP. It is the most recent version
  of PHPUnit, but no longer distributed over PEAR.
  
  WWW: http://www.phpunit.de
  
  Note: This will probably replace devel/pear-PHPUnit3 soon.
  
  PR:		195464
  Submitted by:	Torsten Zühlsdorff <ports@toco-domains.de>, fullermd@over-yonder.net

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Feb 21 19:44:46 2015	(r379545)
+++ head/devel/Makefile	Sat Feb 21 20:15:11 2015	(r379546)
@@ -3546,6 +3546,7 @@
     SUBDIR += phpbt
     SUBDIR += phpsh
     SUBDIR += phptags
+    SUBDIR += phpunit
     SUBDIR += physfs
     SUBDIR += physfs-devel
     SUBDIR += picp

Added: head/devel/phpunit/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/phpunit/Makefile	Sat Feb 21 20:15:11 2015	(r379546)
@@ -0,0 +1,32 @@
+# Created by: Torsten Zühlsdorff (<ports@toco-domains.de>)
+# $FreeBSD$
+
+PORTNAME=	phpunit
+PORTVERSION=	4.5.0
+CATEGORIES=	devel www
+MASTER_SITES=	https://phar.phpunit.de/ \
+		http://ports.toco-domains.de/
+EXTRACT_SUFX=	.phar
+
+MAINTAINER=	ports@toco-domains.de
+COMMENT=	Testing framework for unit tests
+
+LICENSE=	BSD3CLAUSE
+
+CONFLICTS=	pear-PHPUnit-[123]*
+
+USE_PHP=	dom json spl pcre phar
+
+NO_BUILD=	yes
+
+PLIST_FILES=	bin/phpunit
+
+# 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/phpunit/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/phpunit/distinfo	Sat Feb 21 20:15:11 2015	(r379546)
@@ -0,0 +1,2 @@
+SHA256 (phpunit-4.5.0.phar) = 3b33307128be5d4460eb344763b73ffa9d06b7be13a0db3c7e10566e64fb37b1
+SIZE (phpunit-4.5.0.phar) = 3411356

Added: head/devel/phpunit/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/phpunit/pkg-descr	Sat Feb 21 20:15:11 2015	(r379546)
@@ -0,0 +1,4 @@
+PHPUnit is a regression testing framework used by the developer
+who implements unit tests in PHP.
+
+WWW: http://www.phpunit.de



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502212015.t1LKFCjL046891>