From owner-svn-ports-all@freebsd.org Sat Apr 16 17:42:11 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 11F07B1030E; Sat, 16 Apr 2016 17:42:11 +0000 (UTC) (envelope-from pi@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 mx1.freebsd.org (Postfix) with ESMTPS id C3EDE18EC; Sat, 16 Apr 2016 17:42:10 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3GHg92K067755; Sat, 16 Apr 2016 17:42:09 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3GHg9Ar067751; Sat, 16 Apr 2016 17:42:09 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201604161742.u3GHg9Ar067751@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 16 Apr 2016 17:42:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413468 - in head/www: . py-django-constance X-SVN-Group: ports-head 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.21 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: Sat, 16 Apr 2016 17:42:11 -0000 Author: pi Date: Sat Apr 16 17:42:09 2016 New Revision: 413468 URL: https://svnweb.freebsd.org/changeset/ports/413468 Log: New port: www/py-django-constance A Django app for storing dynamic settings in pluggable backends (Redis and Django model backend built in) with an integration with the Django admin app. WWW: https://github.com/jazzband/django-constance PR: 208835 Submitted by: Ultima1252@gmail.com Added: head/www/py-django-constance/ head/www/py-django-constance/Makefile (contents, props changed) head/www/py-django-constance/distinfo (contents, props changed) head/www/py-django-constance/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Apr 16 17:31:35 2016 (r413467) +++ head/www/Makefile Sat Apr 16 17:42:09 2016 (r413468) @@ -1534,6 +1534,7 @@ SUBDIR += py-django-classy-tags SUBDIR += py-django-cms SUBDIR += py-django-configurations + SUBDIR += py-django-constance SUBDIR += py-django-contact-form SUBDIR += py-django-contrib-comments SUBDIR += py-django-cors-headers Added: head/www/py-django-constance/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-constance/Makefile Sat Apr 16 17:42:09 2016 (r413468) @@ -0,0 +1,27 @@ +# Created by: Ultima +# $FreeBSD$ + +PORTNAME= django-constance +PORTVERSION= 1.1.2 +CATEGORIES= www python +MASTER_SITES= GH +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ultima1252@gmail.com +COMMENT= Dynamic Django settings + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}redis>=0:databases/py-redis \ + ${PYTHON_PKGNAMEPREFIX}coverage>=0:devel/py-coverage \ + ${PYTHON_PKGNAMEPREFIX}django-picklefield>=0:www/py-django-picklefield \ + ${PYTHON_PKGNAMEPREFIX}django18>=1.7:www/py-django18 + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes +USE_GITHUB= yes +GH_ACCOUNT= jezdez + +.include Added: head/www/py-django-constance/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-constance/distinfo Sat Apr 16 17:42:09 2016 (r413468) @@ -0,0 +1,2 @@ +SHA256 (jezdez-django-constance-1.1.2_GH0.tar.gz) = 09bc667f3cb7494968af7197d3aa4878df73f045608606e01688eecbfb959707 +SIZE (jezdez-django-constance-1.1.2_GH0.tar.gz) = 120987 Added: head/www/py-django-constance/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-constance/pkg-descr Sat Apr 16 17:42:09 2016 (r413468) @@ -0,0 +1,5 @@ +A Django app for storing dynamic settings in pluggable backends (Redis +and Django model backend built in) with an integration with the Django +admin app. + +WWW: https://github.com/jazzband/django-constance