From owner-svn-ports-all@freebsd.org Tue Nov 7 12:02:55 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4524BE57171; Tue, 7 Nov 2017 12:02:55 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [96.47.72.37]) (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 0FF857EC8E; Tue, 7 Nov 2017 12:02:54 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vA7C1dcq059345; Tue, 7 Nov 2017 12:01:39 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vA7C1dlY059343; Tue, 7 Nov 2017 12:01:39 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201711071201.vA7C1dlY059343@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Tue, 7 Nov 2017 12:01:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453655 - head/devel/aphpunit X-SVN-Group: ports-head X-SVN-Commit-Author: tz X-SVN-Commit-Paths: head/devel/aphpunit X-SVN-Commit-Revision: 453655 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Nov 2017 12:02:55 -0000 Author: tz Date: Tue Nov 7 12:01:38 2017 New Revision: 453655 URL: https://svnweb.freebsd.org/changeset/ports/453655 Log: devel/aphpunit: Add missing PHP modules and fix link Add the missing PHP modules posix and phar in order to work correctly. Update wrong link in pkg-descr, thanks ade for spotting. Modified: head/devel/aphpunit/Makefile head/devel/aphpunit/pkg-descr Modified: head/devel/aphpunit/Makefile ============================================================================== --- head/devel/aphpunit/Makefile Tue Nov 7 11:51:50 2017 (r453654) +++ head/devel/aphpunit/Makefile Tue Nov 7 12:01:38 2017 (r453655) @@ -2,6 +2,7 @@ PORTNAME= aphpunit DISTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= devel www MASTER_SITES= http://phar.toco-domains.de/ EXTRACT_SUFX= .phar @@ -12,7 +13,7 @@ COMMENT= Testing framework for unit tests LICENSE= BSD2CLAUSE USES= php -USE_PHP= pcntl sysvmsg +USE_PHP= pcntl phar posix sysvmsg NO_ARCH= yes NO_BUILD= yes Modified: head/devel/aphpunit/pkg-descr ============================================================================== --- head/devel/aphpunit/pkg-descr Tue Nov 7 11:51:50 2017 (r453654) +++ head/devel/aphpunit/pkg-descr Tue Nov 7 12:01:38 2017 (r453655) @@ -2,4 +2,4 @@ APHPUnit is a regression testing framework for PHP uni It removes many limitations the standard literature about testing declares for years while making tests very fast. -WWW: http://gitlab.toco-domains/APHPUnit/APHPUnit +WWW: http://gitlab.toco-domains.de/tocOS/APHPUnit