Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 Mar 2017 14:07:28 +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: r437295 - in head/devel: . phpunit6
Message-ID:  <201703301407.v2UE7Sfg097668@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tz
Date: Thu Mar 30 14:07:28 2017
New Revision: 437295
URL: https://svnweb.freebsd.org/changeset/ports/437295

Log:
  New port: devel/phpunit6
  
  PHPUnit is a regression testing framework used by the developer
  who implements unit tests in PHP.
  
  WWW: http://www.phpunit.de
  
  This port needs PHP 7.0 or newer, while the old one devel/phpunit
  will still work at our current default PHP 5.6.
  
  PR:           216600
  Submitted by: Jochen Neumeister <joneum@bsdproject.de>

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Mar 30 14:04:58 2017	(r437294)
+++ head/devel/Makefile	Thu Mar 30 14:07:28 2017	(r437295)
@@ -3955,6 +3955,7 @@
     SUBDIR += phpbt
     SUBDIR += phpsh
     SUBDIR += phpunit
+    SUBDIR += phpunit6
     SUBDIR += physfs
     SUBDIR += physfs-devel
     SUBDIR += picp

Added: head/devel/phpunit6/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/phpunit6/Makefile	Thu Mar 30 14:07:28 2017	(r437295)
@@ -0,0 +1,35 @@
+# Created by: Jochen Neumeister (<joneum@bsdproject.de>)
+# $FreeBSD$
+
+PORTNAME=	phpunit
+PORTVERSION=	6.0.11
+CATEGORIES=	devel www
+MASTER_SITES=	https://phar.phpunit.de/
+EXTRACT_SUFX=	.phar
+
+MAINTAINER=	joneum@bsdproject.de
+COMMENT=	Testing framework for unit tests
+
+LICENSE=	BSD3CLAUSE
+
+USES=	cpe php
+CPE_VENDOR=	phpunit_project
+USE_PHP=	dom json spl pcre phar
+
+PHP_VER=	70
+IGNORE_WITH_PHP=	56
+
+NO_ARCH=	yes
+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/phpunit6/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/phpunit6/distinfo	Thu Mar 30 14:07:28 2017	(r437295)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1490873442
+SHA256 (phpunit-6.0.11.phar) = 21cc929e9e9c2646d6975d4b143cc581c69cc955e0fdb59ca401521a247ffe2d
+SIZE (phpunit-6.0.11.phar) = 2598966

Added: head/devel/phpunit6/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/phpunit6/pkg-descr	Thu Mar 30 14:07:28 2017	(r437295)
@@ -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?201703301407.v2UE7Sfg097668>