svn commit: r470064 - in head/www: . py-django-jsonfield2

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Tue May 15 23:58:28 UTC 2018


Author: sunpoet
Date: Tue May 15 23:58:26 2018
New Revision: 470064
URL: https://svnweb.freebsd.org/changeset/ports/470064

Log:
  Add py-django-jsonfield2 3.0.0
  
  jsonfield2 is a reusable model field that allows you to store validated JSON,
  automatically handling serialization to and from the database. To use, add
  jsonfield.JSONField to one of your models.
  
  WWW: https://pypi.org/project/jsonfield2/
  WWW: https://github.com/rpkilby/jsonfield2

Added:
  head/www/py-django-jsonfield2/
  head/www/py-django-jsonfield2/Makefile   (contents, props changed)
  head/www/py-django-jsonfield2/distinfo   (contents, props changed)
  head/www/py-django-jsonfield2/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Tue May 15 23:55:39 2018	(r470063)
+++ head/www/Makefile	Tue May 15 23:58:26 2018	(r470064)
@@ -1568,6 +1568,7 @@
     SUBDIR += py-django-js-asset
     SUBDIR += py-django-json-rpc
     SUBDIR += py-django-jsonfield
+    SUBDIR += py-django-jsonfield2
     SUBDIR += py-django-keyedcache
     SUBDIR += py-django-ldapdb
     SUBDIR += py-django-livesettings

Added: head/www/py-django-jsonfield2/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-jsonfield2/Makefile	Tue May 15 23:58:26 2018	(r470064)
@@ -0,0 +1,24 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	jsonfield2
+PORTVERSION=	3.0.0
+CATEGORIES=	www python
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}django-
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Reusable Django field to store validated JSON in your model
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django111>=0:www/py-django111@${FLAVOR}
+
+NO_ARCH=	yes
+USE_PYTHON=	autoplist distutils
+USES=		python:3.4+
+
+GH_ACCOUNT=	rpkilby
+USE_GITHUB=	yes
+
+.include <bsd.port.mk>

Added: head/www/py-django-jsonfield2/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-jsonfield2/distinfo	Tue May 15 23:58:26 2018	(r470064)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1526219720
+SHA256 (rpkilby-jsonfield2-3.0.0_GH0.tar.gz) = 223dbbedf1cbc63a711ea02da58446b679e9e56bd698ef02affb737b34445973
+SIZE (rpkilby-jsonfield2-3.0.0_GH0.tar.gz) = 9731

Added: head/www/py-django-jsonfield2/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-jsonfield2/pkg-descr	Tue May 15 23:58:26 2018	(r470064)
@@ -0,0 +1,6 @@
+jsonfield2 is a reusable model field that allows you to store validated JSON,
+automatically handling serialization to and from the database. To use, add
+jsonfield.JSONField to one of your models.
+
+WWW: https://pypi.org/project/jsonfield2/
+WWW: https://github.com/rpkilby/jsonfield2


More information about the svn-ports-all mailing list