Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Nov 2015 06:29:19 +0000 (UTC)
From:      Muhammad Moinur Rahman <bofh@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r401987 - in head/devel: . py3-jsonschema
Message-ID:  <201511200629.tAK6TJ2K057146@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bofh@FreeBSD.org>
+# $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 <bsd.port.mk>

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



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