From owner-svn-ports-all@FreeBSD.ORG Sat Dec 13 18:37:36 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EF3E4963; Sat, 13 Dec 2014 18:37:35 +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 CFBD57E4; Sat, 13 Dec 2014 18:37:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBDIbZle020727; Sat, 13 Dec 2014 18:37:35 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBDIbYuM020720; Sat, 13 Dec 2014 18:37:34 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201412131837.sBDIbYuM020720@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Sat, 13 Dec 2014 18:37:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374671 - in head/devel: . pecl-strict X-SVN-Group: ports-head 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.18-1 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: Sat, 13 Dec 2014 18:37:36 -0000 Author: pawel Date: Sat Dec 13 18:37:33 2014 New Revision: 374671 URL: https://svnweb.freebsd.org/changeset/ports/374671 QAT: https://qat.redports.org/buildarchive/r374671/ Log: The strict extension introduces support for strict scalar parameter type hints without changing Zend. Support for the following types is introduced: * string * integer, int * float, double * boolean, bool * resource Variadic support for all of the above types is also included. WWW: http://pecl.php.net/package/strict PR: 195425 Submitted by: Gasol Wu Added: head/devel/pecl-strict/ head/devel/pecl-strict/Makefile (contents, props changed) head/devel/pecl-strict/distinfo (contents, props changed) head/devel/pecl-strict/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Dec 13 18:30:01 2014 (r374670) +++ head/devel/Makefile Sat Dec 13 18:37:33 2014 (r374671) @@ -3428,6 +3428,7 @@ SUBDIR += pecl-spl_types SUBDIR += pecl-spread SUBDIR += pecl-statgrab + SUBDIR += pecl-strict SUBDIR += pecl-svn SUBDIR += pecl-swoole SUBDIR += pecl-sync Added: head/devel/pecl-strict/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-strict/Makefile Sat Dec 13 18:37:33 2014 (r374671) @@ -0,0 +1,20 @@ +# Created by: Gasol Wu +# $FreeBSD$ + +PORTNAME= strict +PORTVERSION= 0.4.0 +CATEGORIES= devel +MASTER_SITES= http://pecl.php.net/get/ +PKGNAMEPREFIX= pecl- +DIST_SUBDIR= PECL + +MAINTAINER= gasol.wu@gmail.com +COMMENT= Strict scalar parameter type hint support for 5.4+ + +LICENSE= PHP301 + +USES= tar:tgz +USE_PHP= yes +USE_PHPEXT= yes + +.include Added: head/devel/pecl-strict/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-strict/distinfo Sat Dec 13 18:37:33 2014 (r374671) @@ -0,0 +1,2 @@ +SHA256 (PECL/strict-0.4.0.tgz) = 20898660c8f9220dcc9e0b0793966743b1f28440b0cc79c269001a10b8d5a0fa +SIZE (PECL/strict-0.4.0.tgz) = 10157 Added: head/devel/pecl-strict/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-strict/pkg-descr Sat Dec 13 18:37:33 2014 (r374671) @@ -0,0 +1,12 @@ +The strict extension introduces support for strict scalar parameter type hints +without changing Zend. Support for the following types is introduced: + + * string + * integer, int + * float, double + * boolean, bool + * resource + +Variadic support for all of the above types is also included. + +WWW: http://pecl.php.net/package/strict