From owner-svn-ports-head@freebsd.org Sat Feb 6 04:53:39 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 78D99A9E3FB; Sat, 6 Feb 2016 04:53:39 +0000 (UTC) (envelope-from vanilla@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 2FAC71985; Sat, 6 Feb 2016 04:53:39 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u164rcpZ096535; Sat, 6 Feb 2016 04:53:38 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u164rbZI096531; Sat, 6 Feb 2016 04:53:37 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201602060453.u164rbZI096531@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Sat, 6 Feb 2016 04:53:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408283 - in head/devel: . pecl-json_post 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.20 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: Sat, 06 Feb 2016 04:53:39 -0000 Author: vanilla Date: Sat Feb 6 04:53:37 2016 New Revision: 408283 URL: https://svnweb.freebsd.org/changeset/ports/408283 Log: Add pecl-json_post 1.0.1, JSON POST handler in PHP. PR: 206885 Submitted by: Gasol Wu Added: head/devel/pecl-json_post/ head/devel/pecl-json_post/Makefile (contents, props changed) head/devel/pecl-json_post/distinfo (contents, props changed) head/devel/pecl-json_post/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Feb 6 04:42:41 2016 (r408282) +++ head/devel/Makefile Sat Feb 6 04:53:37 2016 (r408283) @@ -3687,6 +3687,7 @@ SUBDIR += pecl-inotify SUBDIR += pecl-intl SUBDIR += pecl-jsmin + SUBDIR += pecl-json_post SUBDIR += pecl-jsonc SUBDIR += pecl-jsond SUBDIR += pecl-jsonnet Added: head/devel/pecl-json_post/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-json_post/Makefile Sat Feb 6 04:53:37 2016 (r408283) @@ -0,0 +1,22 @@ +# Created by: Gasol Wu +# $FreeBSD$ + +PORTNAME= json_post +PORTVERSION= 1.0.1 +CATEGORIES= devel +MASTER_SITES= http://pecl.php.net/get/ +PKGNAMEPREFIX= pecl- +DIST_SUBDIR= PECL + +MAINTAINER= gasol.wu@gmail.com +COMMENT= JSON POST handler in PHP + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= tar:tgz +USE_PHP= json +USE_PHP_BUILD= yes +USE_PHPEXT= yes + +.include Added: head/devel/pecl-json_post/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-json_post/distinfo Sat Feb 6 04:53:37 2016 (r408283) @@ -0,0 +1,2 @@ +SHA256 (PECL/json_post-1.0.1.tgz) = c802451b1db79243a0d690051163d2a8801f5429e490644907fa1c9ece990e71 +SIZE (PECL/json_post-1.0.1.tgz) = 4712 Added: head/devel/pecl-json_post/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-json_post/pkg-descr Sat Feb 6 04:53:37 2016 (r408283) @@ -0,0 +1,6 @@ +This extension provides a PHP content type handler for "application/json" and +"text/json" to PHP's form data parser. If the `Content-Type` of an incoming +request is `text/json`, the JSON contents of the request body will by parsed +into `$_POST`. + +WWW: https://pecl.php.net/package/json_post