Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Jan 2013 20:24:14 +0000 (UTC)
From:      Ruslan Mahmatkhanov <rm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r309835 - head/devel/pear-PHPUnit3
Message-ID:  <201301022024.r02KOE6j056982@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rm
Date: Wed Jan  2 20:24:13 2013
New Revision: 309835
URL: http://svnweb.freebsd.org/changeset/ports/309835

Log:
  - update to 3.7.6
  
  PR:		172779
  Submitted by:	Gasol Wu <gasol.wu@gmail.com>

Modified:
  head/devel/pear-PHPUnit3/Makefile
  head/devel/pear-PHPUnit3/distinfo

Modified: head/devel/pear-PHPUnit3/Makefile
==============================================================================
--- head/devel/pear-PHPUnit3/Makefile	Wed Jan  2 20:16:29 2013	(r309834)
+++ head/devel/pear-PHPUnit3/Makefile	Wed Jan  2 20:24:13 2013	(r309835)
@@ -1,23 +1,33 @@
-# Ports collection makefile for:  pear-PHPUnit3
-# Date created:			  17 May 2007
-# Whom:				  Gerrit Beine (<gerrit.beine@gmx.de>)
-#
+# Created by: Gerrit Beine (<gerrit.beine@gmx.de>)
 # $FreeBSD$
-#
 
 PORTNAME=	PHPUnit
-PORTVERSION=	3.4.15
+PORTVERSION=	3.7.6
 CATEGORIES=	devel www pear
 MASTER_SITES=	http://pear.phpunit.de/get/
 
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	PEAR regression testing framework for unit tests
 
-BUILD_DEPENDS=	${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear \
+LICENSE=	BSD
+
+BUILD_DEPENDS=	pear>=1.9.4:${PORTSDIR}/devel/pear \
+		pear-File_Iterator>=1.3.1:${PORTSDIR}/devel/pear-File_Iterator \
+		pear-Text_Template>=1.1.1:${PORTSDIR}/textproc/pear-Text_Template \
+		pear-PHP_CodeCoverage>=1.2.1:${PORTSDIR}/devel/pear-PHP_CodeCoverage \
+		pear-PHP_Timer>=1.0.2:${PORTSDIR}/devel/pear-PHP_Timer \
+		pear-PHPUnit_MockObject>=1.2.0:${PORTSDIR}/devel/pear-PHPUnit_MockObject \
+		pear-Symfony_Component_Yaml>=2.1.0:${PORTSDIR}/textproc/pear-Symfony_Component_Yaml \
+		${PEARDIR}/.channels/pear.phpunit.de.reg:${PORTSDIR}/devel/pear-channel-phpunit
+RUN_DEPENDS=	pear>=1.9.4:${PORTSDIR}/devel/pear \
+		pear-File_Iterator>=1.3.1:${PORTSDIR}/devel/pear-File_Iterator \
+		pear-Text_Template>=1.1.1:${PORTSDIR}/textproc/pear-Text_Template \
+		pear-PHP_CodeCoverage>=1.2.1:${PORTSDIR}/devel/pear-PHP_CodeCoverage \
+		pear-PHP_Timer>=1.0.2:${PORTSDIR}/devel/pear-PHP_Timer \
+		pear-PHPUnit_MockObject>=1.2.0:${PORTSDIR}/devel/pear-PHPUnit_MockObject \
+		pear-Symfony_Component_Yaml>=2.1.0:${PORTSDIR}/textproc/pear-Symfony_Component_Yaml \
 		${PEARDIR}/.channels/pear.phpunit.de.reg:${PORTSDIR}/devel/pear-channel-phpunit
-RUN_DEPENDS=	${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear \
-		${PEARDIR}/.channels/pear.phpunit.de.reg:${PORTSDIR}/devel/pear-channel-phpunit \
-		${PEARDIR}/Benchmark/Timer.php:${PORTSDIR}/benchmarks/pear-Benchmark
+
 CONFLICTS=	pear-PHPUnit-[12]*
 
 PEAR_CHANNEL=	phpunit
@@ -25,55 +35,26 @@ PEAR_AUTOINSTALL=	yes
 
 LATEST_LINK=	pear-PHPUnit3
 
-OPTIONS_DEFINE=	PEAR_IMAGE_GRAPHVIZ PEAR_LOG JSON PDO PDO_SQLITE TOKENIZER PDO_MYSQL XDEBUG
-PEAR_IMAGE_GRAPHVIZ_DESC=	PEAR::Image::GraphViz support
-PEAR_LOG_DESC=	PEAR::Log support
+OPTIONS_DEFINE=	JSON SIMPLEXML TOKENIZER
 JSON_DESC=	Enable JSON support
-PDO_DESC=	Enable PDO support
-PDO_SQLITE_DESC=	Enable PDO_SQLite support
+SIMPLEXML_DESC=	Enable SIMPLEXML support
 TOKENIZER_DESC=	Enable Tokenizer support
-PDO_MYSQL_DESC=	Enable PDO_MySQL support
-XDEBUG_DESC=	Enable Xdebug support
-
-DEFAULT_PHP_VER=5
-IGNORE_WITH_PHP=4
 
 USE_PHP=	dom spl pcre
 
 .include <bsd.port.pre.mk>
 
-.if ${PORT_OPTIONS:MPEAR_LOG}
-RUN_DEPENDS+=	${PEARDIR}/Log/null.php:${PORTSDIR}/sysutils/pear-Log
-.endif
-   
-.if ${PORT_OPTIONS:MIMAGE_GRAPHVIZ}
-RUN_DEPENDS+=	${PEARDIR}/Log/null.php:${PORTSDIR}/sysutils/pear-Log
-RUN_DEPENDS+=	${PEARDIR}/Image/GraphViz.php:${PORTSDIR}/graphics/pear-Image_GraphViz
-.endif
-
 .if ${PORT_OPTIONS:MJSON}
 USE_PHP+=	json
 .endif
 
-.if ${PORT_OPTIONS:MPDO}
-USE_PHP+=	pdo
-.endif
-
-.if ${PORT_OPTIONS:MPDO_MYSQL}
-USE_PHP+=	pdo_mysql
-.endif
-
-.if ${PORT_OPTIONS:MPDO_SQLITE}
-USE_PHP+=	pdo_sqlite
+.if ${PORT_OPTIONS:MSIMPLEXML}
+USE_PHP+=	simplexml
 .endif
 
 .if ${PORT_OPTIONS:MTOKENIZER}
 USE_PHP+=	tokenizer
 .endif
 
-.if ${PORT_OPTIONS:MXDEBUG}
-RUN_DEPENDS+=	${LOCALBASE}/lib/php/${PHP_EXT_DIR}/xdebug.so:${PORTSDIR}/devel/php-xdebug
-.endif
-
 .include "${PORTSDIR}/devel/pear/bsd.pear.mk"
 .include <bsd.port.post.mk>

Modified: head/devel/pear-PHPUnit3/distinfo
==============================================================================
--- head/devel/pear-PHPUnit3/distinfo	Wed Jan  2 20:16:29 2013	(r309834)
+++ head/devel/pear-PHPUnit3/distinfo	Wed Jan  2 20:24:13 2013	(r309835)
@@ -1,2 +1,2 @@
-SHA256 (PEAR/PHPUnit-3.4.15.tgz) = c528a819e2e74682bf4677f8239d6ddc06baef83b4ce27c6bfa74c34c0c4f0c1
-SIZE (PEAR/PHPUnit-3.4.15.tgz) = 255036
+SHA256 (PEAR/PHPUnit-3.7.6.tgz) = ef0a4a674cf8b0333c764db40d621ae4eb3bcba0408a6036643fb0330c552b17
+SIZE (PEAR/PHPUnit-3.7.6.tgz) = 115430



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