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 <ports@caomhin.org>
Approved by:    mat (mentor)
Differential Revision:  https://reviews.freebsd.org/D4433
This commit is contained in:
Martin Wilke 2015-12-08 16:37:44 +00:00
parent 2b0e322fd1
commit ef8a1d903d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=403295
4 changed files with 30 additions and 0 deletions

View file

@ -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

View file

@ -0,0 +1,23 @@
# Created by: Kevin Golding <ports@caomhin.org>
# $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 <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (django-registration-redux-1.2.tar.gz) = 006abd8b3606f1bc7da8ffc773a1f4a5380b3f0f6ab65c00a7d864b4f60bc9ba
SIZE (django-registration-redux-1.2.tar.gz) = 72391

View file

@ -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/