From owner-svn-ports-head@freebsd.org Fri Nov 20 06:29:21 2015 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 E769EA3299E; Fri, 20 Nov 2015 06:29:20 +0000 (UTC) (envelope-from bofh@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 A76DF103C; Fri, 20 Nov 2015 06:29:20 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAK6TJRx057150; Fri, 20 Nov 2015 06:29:19 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAK6TJ2K057146; Fri, 20 Nov 2015 06:29:19 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <201511200629.tAK6TJ2K057146@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Fri, 20 Nov 2015 06:29:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401987 - in head/devel: . py3-jsonschema 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: Fri, 20 Nov 2015 06:29:21 -0000 Author: bofh Date: Fri Nov 20 06:29:19 2015 New Revision: 401987 URL: https://svnweb.freebsd.org/changeset/ports/401987 Log: [NEW] devel/py3-jsonschema: JSON Schema validation for Python - Python3 specific version for devel/py-jsonschema jsonschema is an implementation of JSON Schema for Python - Full support for Draft 3 and Draft 4 of the schema. - Lazy validation that can iteratively report all validation errors. - Small and extensible - Programmatic querying of which properties or items failed validation. WWW: http://github.com/Julian/jsonschema Added: head/devel/py3-jsonschema/ head/devel/py3-jsonschema/Makefile (contents, props changed) head/devel/py3-jsonschema/distinfo (contents, props changed) head/devel/py3-jsonschema/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Nov 20 04:31:47 2015 (r401986) +++ head/devel/Makefile Fri Nov 20 06:29:19 2015 (r401987) @@ -4477,6 +4477,7 @@ SUBDIR += py3-babel SUBDIR += py3-dbus SUBDIR += py3-gobject3 + SUBDIR += py3-jsonschema SUBDIR += py3-libpeas SUBDIR += py3-pytz SUBDIR += py3-vcversioner Added: head/devel/py3-jsonschema/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py3-jsonschema/Makefile Fri Nov 20 06:29:19 2015 (r401987) @@ -0,0 +1,21 @@ +# Created by: Muhammad Moinur Rahman +# $FreeBSD$ + +PORTNAME= jsonschema +PORTVERSION= 2.5.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= bofh@FreeBSD.org +COMMENT= JSON Schema validation for Python + +LICENSE= MIT + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}vcversioner>0:${PORTSDIR}/devel/py3-vcversioner + +USES= python:3 +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/devel/py3-jsonschema/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py3-jsonschema/distinfo Fri Nov 20 06:29:19 2015 (r401987) @@ -0,0 +1,2 @@ +SHA256 (jsonschema-2.5.1.tar.gz) = 36673ac378feed3daa5956276a829699056523d7961027911f064b52255ead41 +SIZE (jsonschema-2.5.1.tar.gz) = 50855 Added: head/devel/py3-jsonschema/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py3-jsonschema/pkg-descr Fri Nov 20 06:29:19 2015 (r401987) @@ -0,0 +1,8 @@ +jsonschema is an implementation of JSON Schema for Python + + - Full support for Draft 3 and Draft 4 of the schema. + - Lazy validation that can iteratively report all validation errors. + - Small and extensible + - Programmatic querying of which properties or items failed validation. + +WWW: http://github.com/Julian/jsonschema