From owner-svn-ports-all@freebsd.org Tue May 15 23:58:28 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 23D4AEDDA4A; Tue, 15 May 2018 23:58:28 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CD2D769E01; Tue, 15 May 2018 23:58:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9421212846; Tue, 15 May 2018 23:58:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4FNwR4b081560; Tue, 15 May 2018 23:58:27 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4FNwQLI081556; Tue, 15 May 2018 23:58:26 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201805152358.w4FNwQLI081556@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 15 May 2018 23:58:26 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/www: . py-django-jsonfield2 X-SVN-Commit-Revision: 470064 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 May 2018 23:58:28 -0000 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 +# $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 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