Date: Mon, 24 Mar 2014 12:32:09 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r348972 - in head/devel: . pecl-qb Message-ID: <201403241232.s2OCW9a4080110@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Mon Mar 24 12:32:08 2014 New Revision: 348972 URL: http://svnweb.freebsd.org/changeset/ports/348972 QAT: https://qat.redports.org/buildarchive/r348972/ Log: - Add pecl-qb 2.1.1 QB stands for Quick Binary. It's a PHP extension designed to enable faster handling of binary data. It takes a function written in PHP and translate it for a specialized virtual machine. The use of static type information leads significantly higher performance than under PHP regular dynamic type system. A PHP+QB function can run anywhere from five to twenty times faster than regular PHP code. For even higher level of performance, one can compile PHP+QB functions to native code (on supported platforms). QB performs code translation on a per-function basis. It does not affect in anyway code not specially marked. Interaction between PHP+QB functions and regular PHP code is basically seamless. A key design objective of QB is to let developers harness greater processing power than what baseline PHP offers without the risk involved in adopting a brand new platform. WWW: http://pecl.php.net/package/qb/ PR: ports/187651 Submitted by: Gasol Wu <gasol.wu@gmail.com> Added: head/devel/pecl-qb/ head/devel/pecl-qb/Makefile (contents, props changed) head/devel/pecl-qb/distinfo (contents, props changed) head/devel/pecl-qb/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Mar 24 12:32:03 2014 (r348971) +++ head/devel/Makefile Mon Mar 24 12:32:08 2014 (r348972) @@ -3332,6 +3332,7 @@ SUBDIR += pecl-params SUBDIR += pecl-parsekit SUBDIR += pecl-pthreads + SUBDIR += pecl-qb SUBDIR += pecl-runkit SUBDIR += pecl-scream SUBDIR += pecl-shape Added: head/devel/pecl-qb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-qb/Makefile Mon Mar 24 12:32:08 2014 (r348972) @@ -0,0 +1,22 @@ +# Created by: Gasol Wu <gasol.wu@gmail.com> +# $FreeBSD$ + +PORTNAME= qb +PORTVERSION= 2.1.1 +CATEGORIES= devel +MASTER_SITES= http://pecl.php.net/get/ +PKGNAMEPREFIX= pecl- +DIST_SUBDIR= PECL + +MAINTAINER= gasol.wu@gmail.com +COMMENT= PHP Accelerator designed mainly for graphic work + +LICENSE= PHP301 + +CONFIGURE_ARGS= --with-cpu=native +NO_WRKSUBDIR= yes +USE_PHP= yes +USE_PHPEXT= yes +USES= tar:tgz + +.include <bsd.port.mk> Added: head/devel/pecl-qb/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-qb/distinfo Mon Mar 24 12:32:08 2014 (r348972) @@ -0,0 +1,2 @@ +SHA256 (PECL/qb-2.1.1.tgz) = af93d2deeb0cfbbd61e961dc53b9ad2aa41228567cad7033fb2b1740b6e0b0f9 +SIZE (PECL/qb-2.1.1.tgz) = 1084826 Added: head/devel/pecl-qb/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-qb/pkg-descr Mon Mar 24 12:32:08 2014 (r348972) @@ -0,0 +1,15 @@ +QB stands for Quick Binary. It's a PHP extension designed to enable faster +handling of binary data. It takes a function written in PHP and translate it +for a specialized virtual machine. The use of static type information leads +significantly higher performance than under PHP regular dynamic type system. +A PHP+QB function can run anywhere from five to twenty times faster than +regular PHP code. For even higher level of performance, one can compile PHP+QB +functions to native code (on supported platforms). + +QB performs code translation on a per-function basis. It does not affect in +anyway code not specially marked. Interaction between PHP+QB functions and +regular PHP code is basically seamless. A key design objective of QB is to +let developers harness greater processing power than what baseline PHP offers +without the risk involved in adopting a brand new platform. + +WWW: http://pecl.php.net/package/qb/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201403241232.s2OCW9a4080110>