svn commit: r448374 - in head/www: . py-jsonfield

Rene Ladan rene at FreeBSD.org
Sun Aug 20 11:49:07 UTC 2017


Author: rene
Date: Sun Aug 20 11:49:06 2017
New Revision: 448374
URL: https://svnweb.freebsd.org/changeset/ports/448374

Log:
  django-jsonfield is a reusable Django field that allows you to store validated
  JSON in your model. It silently takes care of serialization. To use, simply
  add the field to one of your models.
  
  This port is not a duplicate of www/py-django-jsonfield, both ports have
  distinct but upstreams.
  
  WWW: https://github.com/dmkoch/django-jsonfield

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

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Sun Aug 20 11:20:21 2017	(r448373)
+++ head/www/Makefile	Sun Aug 20 11:49:06 2017	(r448374)
@@ -1681,6 +1681,7 @@
     SUBDIR += py-hyperlink
     SUBDIR += py-imdbpy
     SUBDIR += py-jonpy
+    SUBDIR += py-jsonfield
     SUBDIR += py-jswebkit
     SUBDIR += py-kallithea
     SUBDIR += py-libsass

Added: head/www/py-jsonfield/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-jsonfield/Makefile	Sun Aug 20 11:49:06 2017	(r448374)
@@ -0,0 +1,22 @@
+# Created by: René Ladan <rene at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	jsonfield
+PORTVERSION=	2.0.2
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	rene at FreeBSD.org
+COMMENT=	Reusable JSONField model for Django to store validated JSON
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django110>=0:www/py-django110
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/www/py-jsonfield/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-jsonfield/distinfo	Sun Aug 20 11:49:06 2017	(r448374)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1503217883
+SHA256 (jsonfield-2.0.2.tar.gz) = beb1cd4850d6d6351c32daefcb826c01757744e9c863228a642f87a1a4acb834
+SIZE (jsonfield-2.0.2.tar.gz) = 10806

Added: head/www/py-jsonfield/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-jsonfield/pkg-descr	Sun Aug 20 11:49:06 2017	(r448374)
@@ -0,0 +1,8 @@
+django-jsonfield is a reusable Django field that allows you to store validated
+JSON in your model. It silently takes care of serialization. To use, simply
+add the field to one of your models.
+
+This port is not a duplicate of www/py-django-jsonfield, both ports have
+distinct but upstreams.
+
+WWW: https://github.com/dmkoch/django-jsonfield


More information about the svn-ports-all mailing list