From owner-svn-ports-head@freebsd.org Fri Apr 1 03:31:44 2016 Return-Path: Delivered-To: svn-ports-head@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 EBC56AE4CA8; Fri, 1 Apr 2016 03:31:44 +0000 (UTC) (envelope-from tj@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 ADB201215; Fri, 1 Apr 2016 03:31:44 +0000 (UTC) (envelope-from tj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u313VhvL062840; Fri, 1 Apr 2016 03:31:43 GMT (envelope-from tj@FreeBSD.org) Received: (from tj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u313VhW1062836; Fri, 1 Apr 2016 03:31:43 GMT (envelope-from tj@FreeBSD.org) Message-Id: <201604010331.u313VhW1062836@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tj set sender to tj@FreeBSD.org using -f From: Tom Judge Date: Fri, 1 Apr 2016 03:31:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412312 - in head/www: . py-django-configurations X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Apr 2016 03:31:45 -0000 Author: tj Date: Fri Apr 1 03:31:43 2016 New Revision: 412312 URL: https://svnweb.freebsd.org/changeset/ports/412312 Log: New port www/py-django-configurations 1.0 django-configurations eases Django project configuration by relying on the composability of Python classes. It extends the notion of Django's module based settings loading with well established object oriented programming patterns. WWW: https://github.com/jazzband/django-configurations Added: head/www/py-django-configurations/ head/www/py-django-configurations/Makefile (contents, props changed) head/www/py-django-configurations/distinfo (contents, props changed) head/www/py-django-configurations/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Apr 1 03:21:56 2016 (r412311) +++ head/www/Makefile Fri Apr 1 03:31:43 2016 (r412312) @@ -1531,6 +1531,7 @@ SUBDIR += py-django-caching-app-plugins SUBDIR += py-django-classy-tags SUBDIR += py-django-cms + SUBDIR += py-django-configurations SUBDIR += py-django-contact-form SUBDIR += py-django-contrib-comments SUBDIR += py-django-countries Added: head/www/py-django-configurations/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-configurations/Makefile Fri Apr 1 03:31:43 2016 (r412312) @@ -0,0 +1,22 @@ +# Created by: Tom Judge +# $FreeBSD$ + +PORTNAME= configurations +PORTVERSION= 1.0 +CATEGORIES= www python +MASTER_SITES= GH +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}django- + +MAINTAINER= tj@FreeBSD.org +COMMENT= Django project configuration using the composability of Python classes + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django18>=0:${PORTSDIR}/www/py-django18 + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes +USE_GITHUB= yes +GH_ACCOUNT= jazzband +GH_PROJECT= django-configurations + +.include Added: head/www/py-django-configurations/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-configurations/distinfo Fri Apr 1 03:31:43 2016 (r412312) @@ -0,0 +1,2 @@ +SHA256 (jazzband-django-configurations-1.0_GH0.tar.gz) = 345564cf1481a0101a59026a2ec0ec8fae51e8a25fe4083c1b2ca6beb911aed9 +SIZE (jazzband-django-configurations-1.0_GH0.tar.gz) = 39308 Added: head/www/py-django-configurations/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-configurations/pkg-descr Fri Apr 1 03:31:43 2016 (r412312) @@ -0,0 +1,5 @@ +django-configurations eases Django project configuration by relying on the +composability of Python classes. It extends the notion of Django's module based +settings loading with well established object oriented programming patterns. + +WWW: https://github.com/jazzband/django-configurations