Date: Tue, 15 May 2018 23:58:26 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r470064 - in head/www: . py-django-jsonfield2 Message-ID: <201805152358.w4FNwQLI081556@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= jsonfield2 +PORTVERSION= 3.0.0 +CATEGORIES= www python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}django- + +MAINTAINER= sunpoet@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805152358.w4FNwQLI081556>