svn commit: r405667 - in head/security: . py-pyotp
Martin Wilke
miwi at FreeBSD.org
Sun Jan 10 06:13:49 UTC 2016
Author: miwi
Date: Sun Jan 10 06:13:47 2016
New Revision: 405667
URL: https://svnweb.freebsd.org/changeset/ports/405667
Log:
PyOTP is a Python library for generating and verifying one-time passwords. It
can be used to implement two-factor (2FA) or multi-factor (MFA) authentication
methods in web applications and in other systems that require users to log in.
PR: 205992
Submitted by: vlad-fbsd at acheronmedia.com
Added:
head/security/py-pyotp/
head/security/py-pyotp/Makefile (contents, props changed)
head/security/py-pyotp/distinfo (contents, props changed)
head/security/py-pyotp/pkg-descr (contents, props changed)
Modified:
head/security/Makefile
Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile Sun Jan 10 06:12:34 2016 (r405666)
+++ head/security/Makefile Sun Jan 10 06:13:47 2016 (r405667)
@@ -856,6 +856,7 @@
SUBDIR += py-pymacaroons-pynacl
SUBDIR += py-pyme
SUBDIR += py-pynacl
+ SUBDIR += py-pyotp
SUBDIR += py-pyptlib
SUBDIR += py-pysaml2
SUBDIR += py-pyscard
Added: head/security/py-pyotp/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/py-pyotp/Makefile Sun Jan 10 06:13:47 2016 (r405667)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME= pyotp
+PORTVERSION= 2.0.1
+CATEGORIES= security
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= vlad-fbsd at acheronmedia.com
+COMMENT= Python One Time Password Library
+
+LICENSE= MIT
+
+USES= python
+USE_PYTHON= distutils autoplist
+NO_ARCH= yes
+
+do-test:
+ @(cd ${WRKSRC}/${PORTNAME} && ${PYTHON_CMD} test.py)
+
+.include <bsd.port.mk>
Added: head/security/py-pyotp/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/py-pyotp/distinfo Sun Jan 10 06:13:47 2016 (r405667)
@@ -0,0 +1,2 @@
+SHA256 (pyotp-2.0.1.tar.gz) = d08ebc8a1083aff63a62dc702df26c460b5d2ee4badce6e6c7566e5390078667
+SIZE (pyotp-2.0.1.tar.gz) = 8118
Added: head/security/py-pyotp/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/py-pyotp/pkg-descr Sun Jan 10 06:13:47 2016 (r405667)
@@ -0,0 +1,3 @@
+PyOTP is a Python library for generating and verifying one-time passwords. It
+can be used to implement two-factor (2FA) or multi-factor (MFA) authentication
+methods in web applications and in other systems that require users to log in.
More information about the svn-ports-all
mailing list