From owner-svn-ports-head@FreeBSD.ORG Thu Feb 19 07:42:00 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4B44AA41; Thu, 19 Feb 2015 07:42:00 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 35DA7BC9; Thu, 19 Feb 2015 07:42:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1J7g0Uj007688; Thu, 19 Feb 2015 07:42:00 GMT (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1J7fwn2007679; Thu, 19 Feb 2015 07:41:58 GMT (envelope-from kuriyama@FreeBSD.org) Message-Id: <201502190741.t1J7fwn2007679@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: kuriyama set sender to kuriyama@FreeBSD.org using -f From: Jun Kuriyama Date: Thu, 19 Feb 2015 07:41:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r379333 - in head/devel: . p5-JSON-Pointer 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.18-1 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: Thu, 19 Feb 2015 07:42:00 -0000 Author: kuriyama Date: Thu Feb 19 07:41:58 2015 New Revision: 379333 URL: https://svnweb.freebsd.org/changeset/ports/379333 QAT: https://qat.redports.org/buildarchive/r379333/ Log: This library is implemented JSON Pointer (http://tools.ietf.org/html/rfc6901) and some useful operator from JSON Patch (http://tools.ietf.org/html/rfc6902). JSON Pointer is available to identify a specified value in JSON document, and it is simillar to XPath. Please read the both of specifications for details. WWW: http://search.cpan.org/dist/JSON-Pointer/ Added: head/devel/p5-JSON-Pointer/ head/devel/p5-JSON-Pointer/Makefile (contents, props changed) head/devel/p5-JSON-Pointer/distinfo (contents, props changed) head/devel/p5-JSON-Pointer/pkg-descr (contents, props changed) head/devel/p5-JSON-Pointer/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Feb 19 05:29:43 2015 (r379332) +++ head/devel/Makefile Thu Feb 19 07:41:58 2015 (r379333) @@ -2286,6 +2286,7 @@ SUBDIR += p5-JQuery SUBDIR += p5-JSON-Hyper SUBDIR += p5-JSON-Path + SUBDIR += p5-JSON-Pointer SUBDIR += p5-JSON-RPC SUBDIR += p5-JSON-RPC-Common SUBDIR += p5-JSON-RPC-Dispatcher Added: head/devel/p5-JSON-Pointer/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-JSON-Pointer/Makefile Thu Feb 19 07:41:58 2015 (r379333) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= JSON-Pointer +PORTVERSION= 0.06 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= kuriyama@FreeBSD.org +COMMENT= Perl extension of JSON Pointer (RFC6901) + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +RUN_DEPENDS= \ + p5-Class-Accessor-Lite>=0.05:${PORTSDIR}/devel/p5-Class-Accessor-Lite \ + p5-Clone>=0.36:${PORTSDIR}/devel/p5-Clone \ + p5-JSON>=2.53:${PORTSDIR}/converters/p5-JSON \ + p5-URI>=1.65:${PORTSDIR}/net/p5-URI +BUILD_DEPENDS= ${RUN_DEPENDS} + +USES= perl5 +USE_PERL5= modbuild +NO_ARCH= YES + +.include Added: head/devel/p5-JSON-Pointer/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-JSON-Pointer/distinfo Thu Feb 19 07:41:58 2015 (r379333) @@ -0,0 +1,2 @@ +SHA256 (JSON-Pointer-0.06.tar.gz) = 0ef37b0d7a7e9d08409e8b0af1e80f97f89d5841688e432c0a064007e8d60327 +SIZE (JSON-Pointer-0.06.tar.gz) = 21342 Added: head/devel/p5-JSON-Pointer/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-JSON-Pointer/pkg-descr Thu Feb 19 07:41:58 2015 (r379333) @@ -0,0 +1,9 @@ +This library is implemented JSON Pointer +(http://tools.ietf.org/html/rfc6901) and some useful operator from +JSON Patch (http://tools.ietf.org/html/rfc6902). + +JSON Pointer is available to identify a specified value in JSON +document, and it is simillar to XPath. Please read the both of +specifications for details. + +WWW: http://search.cpan.org/dist/JSON-Pointer/ Added: head/devel/p5-JSON-Pointer/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-JSON-Pointer/pkg-plist Thu Feb 19 07:41:58 2015 (r379333) @@ -0,0 +1,8 @@ +%%PERL5_MAN3%%/JSON::Pointer.3.gz +%%PERL5_MAN3%%/JSON::Pointer::Context.3.gz +%%PERL5_MAN3%%/JSON::Pointer::Exception.3.gz +%%PERL5_MAN3%%/JSON::Pointer::Syntax.3.gz +%%SITE_PERL%%/JSON/Pointer.pm +%%SITE_PERL%%/JSON/Pointer/Context.pm +%%SITE_PERL%%/JSON/Pointer/Exception.pm +%%SITE_PERL%%/JSON/Pointer/Syntax.pm