From owner-dev-commits-ports-main@freebsd.org Sun Aug 8 14:58:10 2021 Return-Path: Delivered-To: dev-commits-ports-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id B53DC6583A1; Sun, 8 Aug 2021 14:58:10 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GjMlk3bMyz4jpB; Sun, 8 Aug 2021 14:58:10 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3D707164F4; Sun, 8 Aug 2021 14:58:10 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 178EwAaQ023729; Sun, 8 Aug 2021 14:58:10 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 178EwAw2023728; Sun, 8 Aug 2021 14:58:10 GMT (envelope-from git) Date: Sun, 8 Aug 2021 14:58:10 GMT Message-Id: <202108081458.178EwAw2023728@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Po-Chuan Hsieh Subject: git: 0f44ea414378 - main - devel/phpunit9: Add phpunit9 9.5.8 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: sunpoet X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 0f44ea4143781cff831954dbe9f2d9bca0640af5 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2021 14:58:10 -0000 The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=0f44ea4143781cff831954dbe9f2d9bca0640af5 commit 0f44ea4143781cff831954dbe9f2d9bca0640af5 Author: Po-Chuan Hsieh AuthorDate: 2021-08-08 14:32:14 +0000 Commit: Po-Chuan Hsieh CommitDate: 2021-08-08 14:53:54 +0000 devel/phpunit9: Add phpunit9 9.5.8 PHPUnit is a programmer-oriented testing framework for PHP. It is an instance of the xUnit architecture for unit testing frameworks. WWW: https://phpunit.de/ --- devel/Makefile | 1 + devel/phpunit9/Makefile | 31 +++++++++++++++++++++++++++++++ devel/phpunit9/distinfo | 3 +++ devel/phpunit9/pkg-descr | 4 ++++ 4 files changed, 39 insertions(+) diff --git a/devel/Makefile b/devel/Makefile index be5ee8dc5676..d2ff59ec0c3e 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -3992,6 +3992,7 @@ SUBDIR += phpunit6 SUBDIR += phpunit7 SUBDIR += phpunit8 + SUBDIR += phpunit9 SUBDIR += physfs SUBDIR += pickle SUBDIR += picojson diff --git a/devel/phpunit9/Makefile b/devel/phpunit9/Makefile new file mode 100644 index 000000000000..066eb85d6088 --- /dev/null +++ b/devel/phpunit9/Makefile @@ -0,0 +1,31 @@ +PORTNAME= phpunit +PORTVERSION= 9.5.8 +CATEGORIES= devel www +MASTER_SITES= https://phar.phpunit.de/ +PKGNAMESUFFIX= 9${PHP_PKGNAMESUFFIX} +EXTRACT_SUFX= .phar + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Testing framework for unit tests + +LICENSE= BSD3CLAUSE + +USES= cpe php:flavors +USE_PHP= dom json pcre phar spl + +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= bin/phpunit + +CONFLICTS_INSTALL= phpunit6 phpunit7 phpunit8 + +CPE_VENDOR= phpunit_project + +do-extract: + @${CP} ${DISTDIR}/${DISTFILES} ${WRKDIR}/phpunit + +do-install: + ${INSTALL_SCRIPT} ${WRKDIR}/phpunit ${STAGEDIR}${PREFIX}/bin/phpunit + +.include diff --git a/devel/phpunit9/distinfo b/devel/phpunit9/distinfo new file mode 100644 index 000000000000..d2975c76ab75 --- /dev/null +++ b/devel/phpunit9/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1628103014 +SHA256 (phpunit-9.5.8.phar) = 11f27cf3f9522241fe234e9bf5813667207a074ac92089aac26d502ffc5e9517 +SIZE (phpunit-9.5.8.phar) = 4458067 diff --git a/devel/phpunit9/pkg-descr b/devel/phpunit9/pkg-descr new file mode 100644 index 000000000000..8a05f03d4c7d --- /dev/null +++ b/devel/phpunit9/pkg-descr @@ -0,0 +1,4 @@ +PHPUnit is a programmer-oriented testing framework for PHP. It is an instance of +the xUnit architecture for unit testing frameworks. + +WWW: https://phpunit.de/