From owner-svn-ports-head@FreeBSD.ORG Tue Nov 5 17:58:36 2013 Return-Path: Delivered-To: svn-ports-head@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 ESMTP id 51E4AB7; Tue, 5 Nov 2013 17:58:36 +0000 (UTC) (envelope-from antoine@FreeBSD.org) 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 262882A2D; Tue, 5 Nov 2013 17:58:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA5HwaNS074639; Tue, 5 Nov 2013 17:58:36 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA5HwZv1074635; Tue, 5 Nov 2013 17:58:35 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201311051758.rA5HwZv1074635@svn.freebsd.org> From: Antoine Brodin Date: Tue, 5 Nov 2013 17:58:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332883 - in head/devel: . pecl-uri_template 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.14 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 Nov 2013 17:58:36 -0000 Author: antoine Date: Tue Nov 5 17:58:34 2013 New Revision: 332883 URL: http://svnweb.freebsd.org/changeset/ports/332883 Log: New port: devel/pecl-uri_template Implementation of URI Template(RFC6570) specification for PHP. WWW: http://pecl.php.net/package/uri_template PR: ports/182991 Submitted by: Gasol Wu Added: head/devel/pecl-uri_template/ head/devel/pecl-uri_template/Makefile (contents, props changed) head/devel/pecl-uri_template/distinfo (contents, props changed) head/devel/pecl-uri_template/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Nov 5 17:57:45 2013 (r332882) +++ head/devel/Makefile Tue Nov 5 17:58:34 2013 (r332883) @@ -3271,6 +3271,7 @@ SUBDIR += pecl-svn SUBDIR += pecl-test_helpers SUBDIR += pecl-uploadprogress + SUBDIR += pecl-uri_template SUBDIR += pecl-uuid SUBDIR += pecl-vld SUBDIR += pecl-xhprof Added: head/devel/pecl-uri_template/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-uri_template/Makefile Tue Nov 5 17:58:34 2013 (r332883) @@ -0,0 +1,20 @@ +# Created by: Gasol Wu +# $FreeBSD$ + +PORTNAME= uri_template +PORTVERSION= 1.0 +CATEGORIES= devel +MASTER_SITES= http://pecl.php.net/get/ +PKGNAMEPREFIX= pecl- +EXTRACT_SUFX= .tgz +DIST_SUBDIR= PECL + +MAINTAINER= gasol.wu@gmail.com +COMMENT= URI Template(RFC6570) library for PHP + +LICENSE= PHP301 + +USE_PHP= yes +USE_PHPEXT= yes + +.include Added: head/devel/pecl-uri_template/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-uri_template/distinfo Tue Nov 5 17:58:34 2013 (r332883) @@ -0,0 +1,2 @@ +SHA256 (PECL/uri_template-1.0.tgz) = 784a55a5b86592a43fe4464313679762ee609fdf5bdeca7b8da9429adcb4f699 +SIZE (PECL/uri_template-1.0.tgz) = 23489 Added: head/devel/pecl-uri_template/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-uri_template/pkg-descr Tue Nov 5 17:58:34 2013 (r332883) @@ -0,0 +1,3 @@ +Implementation of URI Template(RFC6570) specification for PHP. + +WWW: http://pecl.php.net/package/uri_template