From owner-svn-ports-all@FreeBSD.ORG Sat Sep 27 19:22:44 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 10FAF7C1; Sat, 27 Sep 2014 19:22:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 C0009ED; Sat, 27 Sep 2014 18:46:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8RIkbuL011604; Sat, 27 Sep 2014 18:46:37 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8RIkaoc011598; Sat, 27 Sep 2014 18:46:36 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201409271846.s8RIkaoc011598@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Sat, 27 Sep 2014 18:46:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r369414 - in head/www: . py-django-allauth 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.18-1 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, 27 Sep 2014 19:22:44 -0000 Author: wg Date: Sat Sep 27 18:46:36 2014 New Revision: 369414 URL: http://svnweb.freebsd.org/changeset/ports/369414 QAT: https://qat.redports.org/buildarchive/r369414/ Log: 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 Added: head/www/py-django-allauth/ head/www/py-django-allauth/Makefile (contents, props changed) head/www/py-django-allauth/distinfo (contents, props changed) head/www/py-django-allauth/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Sep 27 18:37:49 2014 (r369413) +++ head/www/Makefile Sat Sep 27 18:46:36 2014 (r369414) @@ -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 Added: head/www/py-django-allauth/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-allauth/Makefile Sat Sep 27 18:46:36 2014 (r369414) @@ -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 Added: head/www/py-django-allauth/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-allauth/distinfo Sat Sep 27 18:46:36 2014 (r369414) @@ -0,0 +1,2 @@ +SHA256 (django-allauth-0.18.0.tar.gz) = 4b2cb15719df1504f8fbaa81b84fb7e93f43e960a6ec206406a29a283729dcfe +SIZE (django-allauth-0.18.0.tar.gz) = 264554 Added: head/www/py-django-allauth/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-allauth/pkg-descr Sat Sep 27 18:46:36 2014 (r369414) @@ -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/