diff options
author | wg <wg@FreeBSD.org> | 2014-09-28 02:46:36 +0800 |
---|---|---|
committer | wg <wg@FreeBSD.org> | 2014-09-28 02:46:36 +0800 |
commit | 134a8103a38b1c27a0b50ed5f078e1abf00e8e02 (patch) | |
tree | 0caaa38bee26b43d536423eb943e70d72d48b1a6 /www | |
parent | 3d2d15a2026bf67afc75768906c8b3ebd5475d34 (diff) | |
download | freebsd-ports-gnome-134a8103a38b1c27a0b50ed5f078e1abf00e8e02.tar.gz freebsd-ports-gnome-134a8103a38b1c27a0b50ed5f078e1abf00e8e02.tar.zst freebsd-ports-gnome-134a8103a38b1c27a0b50ed5f078e1abf00e8e02.zip |
www/py-django-allauth: User registration with social account authentication
django-allauth is a reusable Django app that allows for both local and
social authentication, with flows that just work.
WWW: http://www.intenct.nl/projects/django-allauth/
PR: 193651
Submitted by: vladimir.chukharev gmail com
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/py-django-allauth/Makefile | 19 | ||||
-rw-r--r-- | www/py-django-allauth/distinfo | 2 | ||||
-rw-r--r-- | www/py-django-allauth/pkg-descr | 4 |
4 files changed, 26 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 05d069a0d894..bce4c938df2d 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1461,6 +1461,7 @@ SUBDIR += py-cssselect SUBDIR += py-cssutils SUBDIR += py-django + SUBDIR += py-django-allauth SUBDIR += py-django-annoying SUBDIR += py-django-app-plugins SUBDIR += py-django-appconf diff --git a/www/py-django-allauth/Makefile b/www/py-django-allauth/Makefile new file mode 100644 index 000000000000..ea47e828a454 --- /dev/null +++ b/www/py-django-allauth/Makefile @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= django-allauth +PORTVERSION= 0.18.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= vlaimir.chukharev@gmail.com +COMMENT= User registration with social account authentication + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django>=1.4.3:${PORTSDIR}/www/py-django + +USES= python +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> diff --git a/www/py-django-allauth/distinfo b/www/py-django-allauth/distinfo new file mode 100644 index 000000000000..32c6734ba172 --- /dev/null +++ b/www/py-django-allauth/distinfo @@ -0,0 +1,2 @@ +SHA256 (django-allauth-0.18.0.tar.gz) = 4b2cb15719df1504f8fbaa81b84fb7e93f43e960a6ec206406a29a283729dcfe +SIZE (django-allauth-0.18.0.tar.gz) = 264554 diff --git a/www/py-django-allauth/pkg-descr b/www/py-django-allauth/pkg-descr new file mode 100644 index 000000000000..d647711f1cc9 --- /dev/null +++ b/www/py-django-allauth/pkg-descr @@ -0,0 +1,4 @@ +django-allauth is a reusable Django app that allows for both local and +social authentication, with flows that just work. + +WWW: http://www.intenct.nl/projects/django-allauth/ |