From owner-svn-ports-head@freebsd.org Wed Apr 6 13:04:41 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 A5C72B04461; Wed, 6 Apr 2016 13:04:41 +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 667B119B5; Wed, 6 Apr 2016 13:04:41 +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 u36D4ecP040155; Wed, 6 Apr 2016 13:04:40 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u36D4e5U040151; Wed, 6 Apr 2016 13:04:40 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <201604061304.u36D4e5U040151@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Wed, 6 Apr 2016 13:04:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412615 - in head/devel: . pecl-propro2 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: Wed, 06 Apr 2016 13:04:41 -0000 Author: bofh Date: Wed Apr 6 13:04:40 2016 New Revision: 412615 URL: https://svnweb.freebsd.org/changeset/ports/412615 Log: [NEW] devel/pecl-propro2: Facility to manage extension object properties 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. php70+ specific version only. WWW: http://pecl.php.net/package/propro/ Added: head/devel/pecl-propro2/ head/devel/pecl-propro2/Makefile (contents, props changed) head/devel/pecl-propro2/distinfo (contents, props changed) head/devel/pecl-propro2/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Apr 6 12:32:28 2016 (r412614) +++ head/devel/Makefile Wed Apr 6 13:04:40 2016 (r412615) @@ -3732,6 +3732,7 @@ SUBDIR += pecl-params SUBDIR += pecl-parsekit SUBDIR += pecl-propro + SUBDIR += pecl-propro2 SUBDIR += pecl-pthreads SUBDIR += pecl-qb SUBDIR += pecl-raphf Added: head/devel/pecl-propro2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-propro2/Makefile Wed Apr 6 13:04:40 2016 (r412615) @@ -0,0 +1,26 @@ +# Created by: Muhammad Moinur Rahman +# $FreeBSD$ + +PORTNAME= propro +PORTVERSION= 2.0.0 +CATEGORIES= devel +MASTER_SITES= http://pecl.php.net/get/ +PKGNAMEPREFIX= pecl- +PKGNAMESUFFIX= 2 + +MAINTAINER= bofh@FreeBSD.org +COMMENT= Facility to manage extension object properties + +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-propro-1* + +.include Added: head/devel/pecl-propro2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-propro2/distinfo Wed Apr 6 13:04:40 2016 (r412615) @@ -0,0 +1,2 @@ +SHA256 (propro-2.0.0.tgz) = 4ddafb46b9c5d2ff6fa5ffcd7b30e13cc293512d0fa822b06eb4e0411370149e +SIZE (propro-2.0.0.tgz) = 13360 Added: head/devel/pecl-propro2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-propro2/pkg-descr Wed Apr 6 13:04:40 2016 (r412615) @@ -0,0 +1,7 @@ +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. + +php70+ specific version only. + +WWW: http://pecl.php.net/package/propro/