From owner-svn-ports-all@FreeBSD.ORG Mon Mar 24 12:32:10 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 397113E5; Mon, 24 Mar 2014 12:32:10 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 26705DAE; Mon, 24 Mar 2014 12:32:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2OCWA1D080114; Mon, 24 Mar 2014 12:32:10 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2OCW9a4080110; Mon, 24 Mar 2014 12:32:09 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201403241232.s2OCW9a4080110@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 24 Mar 2014 12:32:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r348972 - in head/devel: . pecl-qb 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.17 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: Mon, 24 Mar 2014 12:32:10 -0000 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 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 +# $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 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/