Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 17 Jan 2019 12:37:56 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r490553 - in head/devel: . py-jsonform
Message-ID:  <201901171237.x0HCbueq092769@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Thu Jan 17 12:37:56 2019
New Revision: 490553
URL: https://svnweb.freebsd.org/changeset/ports/490553

Log:
  devel/py-jsonform: create port
  
  Form validation for JSON-like data (i.e. document) in Python.
  
  WWW: https://github.com/RussellLuo/jsonform
  
  PR:		234889
  Submitted by:	Antonio Huete Jimenez <tuxillo@quantumachine.net>

Added:
  head/devel/py-jsonform/
  head/devel/py-jsonform/Makefile   (contents, props changed)
  head/devel/py-jsonform/distinfo   (contents, props changed)
  head/devel/py-jsonform/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile   (contents, props changed)

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Jan 17 12:30:45 2019	(r490552)
+++ head/devel/Makefile	Thu Jan 17 12:37:56 2019	(r490553)
@@ -4636,6 +4636,7 @@
     SUBDIR += py-json-py
     SUBDIR += py-json-sempai
     SUBDIR += py-json_tricks
+    SUBDIR += py-jsonform
     SUBDIR += py-jsonlib
     SUBDIR += py-jsonlib2
     SUBDIR += py-jsonlines

Added: head/devel/py-jsonform/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-jsonform/Makefile	Thu Jan 17 12:37:56 2019	(r490553)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	jsonform
+PORTVERSION=	0.0.2
+CATEGORIES=	devel python
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	python@FreeBSD.org
+COMMENT=	Form validation for JSON-like data
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}jsonschema>=2.4.0:devel/py-jsonschema@${PY_FLAVOR}
+
+USES=		python
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	RussellLuo
+GH_PROJECT=	jsonform
+GH_TAGNAME=	7ee5f95
+USE_PYTHON=	distutils autoplist
+
+.include <bsd.port.mk>

Added: head/devel/py-jsonform/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-jsonform/distinfo	Thu Jan 17 12:37:56 2019	(r490553)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1547201011
+SHA256 (RussellLuo-jsonform-0.0.2-7ee5f95_GH0.tar.gz) = dd6d8fe62a817f17a76cf988122248adc1c40aa280c7c7098b2a07f3775a16dc
+SIZE (RussellLuo-jsonform-0.0.2-7ee5f95_GH0.tar.gz) = 2973

Added: head/devel/py-jsonform/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-jsonform/pkg-descr	Thu Jan 17 12:37:56 2019	(r490553)
@@ -0,0 +1,3 @@
+Form validation for JSON-like data (i.e. document) in Python.
+
+WWW: https://github.com/RussellLuo/jsonform



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