From owner-svn-ports-head@FreeBSD.ORG Sat Feb 21 20:15:13 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7CB80DB; Sat, 21 Feb 2015 20:15:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D75D136; Sat, 21 Feb 2015 20:15:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1LKFDB3046896; Sat, 21 Feb 2015 20:15:13 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1LKFCjL046891; Sat, 21 Feb 2015 20:15:12 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201502212015.t1LKFCjL046891@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 21 Feb 2015 20:15:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r379546 - in head/devel: . phpunit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Feb 2015 20:15:13 -0000 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 , 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 () +# $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 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