From owner-svn-ports-head@freebsd.org Tue May 17 20:30:59 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 3B3A8B3F7F6; Tue, 17 May 2016 20:30:59 +0000 (UTC) (envelope-from cs@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 16DA3117E; Tue, 17 May 2016 20:30:59 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4HKUwqj075658; Tue, 17 May 2016 20:30:58 GMT (envelope-from cs@FreeBSD.org) Received: (from cs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4HKUv59075654; Tue, 17 May 2016 20:30:57 GMT (envelope-from cs@FreeBSD.org) Message-Id: <201605172030.u4HKUv59075654@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cs set sender to cs@FreeBSD.org using -f From: Carlo Strub Date: Tue, 17 May 2016 20:30:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415415 - in head/www: . py-django-otp 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.22 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: Tue, 17 May 2016 20:30:59 -0000 Author: cs Date: Tue May 17 20:30:57 2016 New Revision: 415415 URL: https://svnweb.freebsd.org/changeset/ports/415415 Log: This project makes it easy to add support for one-time passwords (OTPs) to Django. It can be integrated at various levels, depending on how much customization is required. It integrates with django.contrib.auth, although it is not a Django authentication backend. The primary target is developers wishing to incorporate OTPs into their Django projects as a form of two-factor authentication. This project includes several simple OTP plugins and more are available separately. This package also includes an implementation of OATH HOTP and TOTP for convenience, as these are standard OTP algorithms used by multiple plugins. WWW: https://bitbucket.org/psagers/django-otp Added: head/www/py-django-otp/ head/www/py-django-otp/Makefile (contents, props changed) head/www/py-django-otp/distinfo (contents, props changed) head/www/py-django-otp/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue May 17 20:26:14 2016 (r415414) +++ head/www/Makefile Tue May 17 20:30:57 2016 (r415415) @@ -1561,6 +1561,7 @@ SUBDIR += py-django-mezzanine-grappelli SUBDIR += py-django-mptt SUBDIR += py-django-openid-auth + SUBDIR += py-django-otp SUBDIR += py-django-overextends SUBDIR += py-django-paging SUBDIR += py-django-photologue Added: head/www/py-django-otp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-otp/Makefile Tue May 17 20:30:57 2016 (r415415) @@ -0,0 +1,18 @@ +# Created by: Carlo Strub +# $FreeBSD$ + +PORTNAME= django-otp +PORTVERSION= 0.3.5 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= cs@FreeBSD.org +COMMENT= Adding two-factor authentication to Django + +LICENSE= BSD2CLAUSE + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/www/py-django-otp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-otp/distinfo Tue May 17 20:30:57 2016 (r415415) @@ -0,0 +1,2 @@ +SHA256 (django-otp-0.3.5.tar.gz) = c03cc0b7ec2ad67ca6e1462109966a4aeb3bc5e929f198b39895f29d2a23eb19 +SIZE (django-otp-0.3.5.tar.gz) = 40116 Added: head/www/py-django-otp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-otp/pkg-descr Tue May 17 20:30:57 2016 (r415415) @@ -0,0 +1,13 @@ +This project makes it easy to add support for one-time passwords (OTPs) to +Django. It can be integrated at various levels, depending on how much +customization is required. It integrates with django.contrib.auth, although it +is not a Django authentication backend. The primary target is developers +wishing to incorporate OTPs into their Django projects as a form of two-factor +authentication. + +This project includes several simple OTP plugins and more are available +separately. This package also includes an implementation of OATH HOTP and TOTP +for convenience, as these are standard OTP algorithms used by multiple +plugins. + +WWW: https://bitbucket.org/psagers/django-otp