From owner-svn-ports-all@FreeBSD.ORG Sat Nov 16 12:50:59 2013 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 418F62CB; Sat, 16 Nov 2013 12:50:59 +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 180592F7E; Sat, 16 Nov 2013 12:50:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAGCowDW003331; Sat, 16 Nov 2013 12:50:58 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAGCowCi003326; Sat, 16 Nov 2013 12:50:58 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201311161250.rAGCowCi003326@svn.freebsd.org> From: Antoine Brodin Date: Sat, 16 Nov 2013 12:50:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333990 - in head/devel: . pecl-jsonc 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.16 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: Sat, 16 Nov 2013 12:50:59 -0000 Author: antoine Date: Sat Nov 16 12:50:57 2013 New Revision: 333990 URL: http://svnweb.freebsd.org/changeset/ports/333990 Log: New port: devel/pecl-jsonc PECL extension for JSON serialization PR: ports/181538 Submitted by: Gasol Wu Added: head/devel/pecl-jsonc/ head/devel/pecl-jsonc/Makefile (contents, props changed) head/devel/pecl-jsonc/distinfo (contents, props changed) head/devel/pecl-jsonc/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Nov 16 12:47:59 2013 (r333989) +++ head/devel/Makefile Sat Nov 16 12:50:57 2013 (r333990) @@ -3273,6 +3273,7 @@ SUBDIR += pecl-inotify SUBDIR += pecl-intl SUBDIR += pecl-jsmin + SUBDIR += pecl-jsonc SUBDIR += pecl-judy SUBDIR += pecl-libevent SUBDIR += pecl-mcve Added: head/devel/pecl-jsonc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-jsonc/Makefile Sat Nov 16 12:50:57 2013 (r333990) @@ -0,0 +1,24 @@ +# Created by: Gasol Wu +# $FreeBSD$ + +PORTNAME= jsonc +PORTVERSION= 1.3.1 +CATEGORIES= devel +MASTER_SITES= http://pecl.php.net/get/ +PKGNAMEPREFIX= pecl- +EXTRACT_SUFX= .tgz +DIST_SUBDIR= PECL + +MAINTAINER= gasol.wu@gmail.com +COMMENT= PECL extension for JSON manipulation + +LICENSE= PHP301 + +CONFLICTS_INSTALL= php54-json-5* php55-json-5* php5-json-5* + +CONFIGURE_ARGS= --with-jsonc +USE_PHP= yes +USE_PHPEXT= yes +IGNORE_WITH_PHP=52 53 + +.include Added: head/devel/pecl-jsonc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-jsonc/distinfo Sat Nov 16 12:50:57 2013 (r333990) @@ -0,0 +1,2 @@ +SHA256 (PECL/jsonc-1.3.1.tgz) = 9913559265422f3ab5ea8f7d99500fbec77d5b4c944261870237978447a3beda +SIZE (PECL/jsonc-1.3.1.tgz) = 59552 Added: head/devel/pecl-jsonc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-jsonc/pkg-descr Sat Nov 16 12:50:57 2013 (r333990) @@ -0,0 +1,4 @@ +Support for JSON (JavaScript Object Notation) serialization. This is a drop-in +alternative to PHP standard json extension. + +WWW: http://pecl.php.net/package/jsonc