From owner-svn-ports-head@freebsd.org Tue Apr 5 20:39:36 2016 Return-Path: Delivered-To: svn-ports-head@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 C7B5FB03FFB; Tue, 5 Apr 2016 20:39:36 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 88B971306; Tue, 5 Apr 2016 20:39:36 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u35KdZ9g040551; Tue, 5 Apr 2016 20:39:35 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u35KdZcU040546; Tue, 5 Apr 2016 20:39:35 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <201604052039.u35KdZcU040546@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Tue, 5 Apr 2016 20:39:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412587 - in head/devel: . pecl-raphf2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Apr 2016 20:39:36 -0000 Author: bofh Date: Tue Apr 5 20:39:35 2016 New Revision: 412587 URL: https://svnweb.freebsd.org/changeset/ports/412587 Log: [NEW] devel/pecl-raphf2: Resource and persistent handles factory A facility to manage possibly persistent resources with a comprehensible API. Provides simliar functionality like the zend_list API, but with more flexiblity and freedom. WWW: http://pecl.php.net/package/raphf/ This version is specific to php70 compared to pecl-raphf. Added: head/devel/pecl-raphf2/ head/devel/pecl-raphf2/Makefile (contents, props changed) head/devel/pecl-raphf2/distinfo (contents, props changed) head/devel/pecl-raphf2/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Apr 5 20:13:49 2016 (r412586) +++ head/devel/Makefile Tue Apr 5 20:39:35 2016 (r412587) @@ -3735,6 +3735,7 @@ SUBDIR += pecl-pthreads SUBDIR += pecl-qb SUBDIR += pecl-raphf + SUBDIR += pecl-raphf2 SUBDIR += pecl-runkit SUBDIR += pecl-scream SUBDIR += pecl-shape Added: head/devel/pecl-raphf2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-raphf2/Makefile Tue Apr 5 20:39:35 2016 (r412587) @@ -0,0 +1,26 @@ +# Created by: Muhammad Moinur Rahman +# $FreeBSD$ + +PORTNAME= raphf +PORTVERSION= 2.0.0 +CATEGORIES= devel +MASTER_SITES= http://pecl.php.net/get/ +PKGNAMEPREFIX= pecl- +PKGNAMESUFFIX= 2 + +MAINTAINER= bofh@FreeBSD.org +COMMENT= Resource and persistent handles factory + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +PORTSCOUT= limit:^2.* + +PHP_DEFAULT= 70 +USES= gmake tar:tgz +USE_PHP= yes +USE_PHPEXT= yes +IGNORE_WITH_PHP= 55 56 +CONFLICTS= pecl-raphf-1* + +.include Added: head/devel/pecl-raphf2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-raphf2/distinfo Tue Apr 5 20:39:35 2016 (r412587) @@ -0,0 +1,2 @@ +SHA256 (raphf-2.0.0.tgz) = 95a59ea0dc3fc172805a6acd8327b122dd159b0a85b253826166457a05efa411 +SIZE (raphf-2.0.0.tgz) = 15715 Added: head/devel/pecl-raphf2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-raphf2/pkg-descr Tue Apr 5 20:39:35 2016 (r412587) @@ -0,0 +1,5 @@ +A facility to manage possibly persistent resources with a comprehensible API. +Provides simliar functionality like the zend_list API, but with more flexiblity +and freedom. + +WWW: http://pecl.php.net/package/raphf/