Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 19 Feb 2015 07:41:58 +0000 (UTC)
From:      Jun Kuriyama <kuriyama@FreeBSD.org>
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
Message-ID:  <201502190741.t1J7fwn2007679@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502190741.t1J7fwn2007679>