svn commit: r415415 - in head/www: . py-django-otp

Carlo Strub cs at FreeBSD.org
Tue May 17 20:30:59 UTC 2016


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 <cs at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	django-otp
+PORTVERSION=	0.3.5
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	cs at FreeBSD.org
+COMMENT=	Adding two-factor authentication to Django
+
+LICENSE=	BSD2CLAUSE
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

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


More information about the svn-ports-head mailing list