From owner-svn-ports-all@FreeBSD.ORG Mon Aug 18 17:20:59 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AB45A6FF; Mon, 18 Aug 2014 17:20: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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7CEA63EC4; Mon, 18 Aug 2014 17:20:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7IHKxZg088198; Mon, 18 Aug 2014 17:20:59 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7IHKwFo088189; Mon, 18 Aug 2014 17:20:58 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201408181720.s7IHKwFo088189@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Mon, 18 Aug 2014 17:20:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r365327 - in head/devel: . py-jsonpointer 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.18-1 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: Mon, 18 Aug 2014 17:20:59 -0000 Author: wg Date: Mon Aug 18 17:20:58 2014 New Revision: 365327 URL: http://svnweb.freebsd.org/changeset/ports/365327 QAT: https://qat.redports.org/buildarchive/r365327/ Log: devel/py-jsonpointer: Identify specific nodes in a JSON document (RFC 6901) WWW: https://pypi.python.org/pypi/jsonpointer PR: 192673 Submitted by: harm weites com Added: head/devel/py-jsonpointer/ head/devel/py-jsonpointer/Makefile (contents, props changed) head/devel/py-jsonpointer/distinfo (contents, props changed) head/devel/py-jsonpointer/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Aug 18 16:44:14 2014 (r365326) +++ head/devel/Makefile Mon Aug 18 17:20:58 2014 (r365327) @@ -3747,6 +3747,7 @@ SUBDIR += py-json-py SUBDIR += py-jsonlib SUBDIR += py-jsonlib2 + SUBDIR += py-jsonpointer SUBDIR += py-jsonrpclib SUBDIR += py-jsonschema SUBDIR += py-kazoo Added: head/devel/py-jsonpointer/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jsonpointer/Makefile Mon Aug 18 17:20:58 2014 (r365327) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= jsonpointer +PORTVERSION= 1.4 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= harm@weites.com +COMMENT= Identify specific nodes in a JSON document (RFC 6901) + +LICENSE= BSD3CLAUSE + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-jsonpointer/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jsonpointer/distinfo Mon Aug 18 17:20:58 2014 (r365327) @@ -0,0 +1,2 @@ +SHA256 (jsonpointer-1.4.tar.gz) = cb9d357edc67fe41a929fbfd583e95a2a6c5fdc71e22522d88ab715c752905b4 +SIZE (jsonpointer-1.4.tar.gz) = 6936 Added: head/devel/py-jsonpointer/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jsonpointer/pkg-descr Mon Aug 18 17:20:58 2014 (r365327) @@ -0,0 +1,3 @@ +Library to resolve JSON Pointers according to RFC 6901. + +WWW: https://pypi.python.org/pypi/jsonpointer