Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 13 Dec 2014 18:37:34 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r374671 - in head/devel: . pecl-strict
Message-ID:  <201412131837.sBDIbYuM020720@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <gasol.wu@gmail.com>

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 <gasol.wu@gmail.com>
+# $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 <bsd.port.mk>

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



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