From owner-svn-ports-all@freebsd.org Tue Dec 8 16:37:45 2015 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 D838E9D3328; Tue, 8 Dec 2015 16:37:45 +0000 (UTC) (envelope-from miwi@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 963AB19DD; Tue, 8 Dec 2015 16:37:45 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB8GbiKe063566; Tue, 8 Dec 2015 16:37:44 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB8GbicP063562; Tue, 8 Dec 2015 16:37:44 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201512081637.tB8GbicP063562@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Tue, 8 Dec 2015 16:37:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403295 - in head/www: . py-django-registration-redux 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.20 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, 08 Dec 2015 16:37:46 -0000 Author: miwi Date: Tue Dec 8 16:37:44 2015 New Revision: 403295 URL: https://svnweb.freebsd.org/changeset/ports/403295 Log: A fairly simple user-registration application for Django, designed to make allowing user signups as painless as possible WWW: http://django-registration-redux.readthedocs.org/ PR: 202834 Submitted by: Kevin Golding Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D4433 Added: head/www/py-django-registration-redux/ head/www/py-django-registration-redux/Makefile (contents, props changed) head/www/py-django-registration-redux/distinfo (contents, props changed) head/www/py-django-registration-redux/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Dec 8 16:22:30 2015 (r403294) +++ head/www/Makefile Tue Dec 8 16:37:44 2015 (r403295) @@ -1559,6 +1559,7 @@ SUBDIR += py-django-redis SUBDIR += py-django-registration SUBDIR += py-django-registration-defaults + SUBDIR += py-django-registration-redux SUBDIR += py-django-reversion SUBDIR += py-django-sekizai SUBDIR += py-django-signals-ahoy Added: head/www/py-django-registration-redux/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-registration-redux/Makefile Tue Dec 8 16:37:44 2015 (r403295) @@ -0,0 +1,23 @@ +# Created by: Kevin Golding +# $FreeBSD$ + +PORTNAME= django-registration-redux +PORTVERSION= 1.2 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ports@caomhin.org +COMMENT= User-registration application for Django + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django>=1.4:${PORTSDIR}/www/py-django + +NO_ARCH= yes +USES= python +USE_PYTHON= distutils autoplist + +CONFLICTS_INSTALL= pootle-* py-django-registration + +.include Added: head/www/py-django-registration-redux/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-registration-redux/distinfo Tue Dec 8 16:37:44 2015 (r403295) @@ -0,0 +1,2 @@ +SHA256 (django-registration-redux-1.2.tar.gz) = 006abd8b3606f1bc7da8ffc773a1f4a5380b3f0f6ab65c00a7d864b4f60bc9ba +SIZE (django-registration-redux-1.2.tar.gz) = 72391 Added: head/www/py-django-registration-redux/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-registration-redux/pkg-descr Tue Dec 8 16:37:44 2015 (r403295) @@ -0,0 +1,4 @@ +A fairly simple user-registration application for Django, +designed to make allowing user signups as painless as possible + +WWW: http://django-registration-redux.readthedocs.org/