Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Jun 2016 21:59:56 +0000 (UTC)
From:      Carlo Strub <cs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r416759 - in head/security: . py-YubiOTP
Message-ID:  <201606112159.u5BLxuFD041532@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cs
Date: Sat Jun 11 21:59:56 2016
New Revision: 416759
URL: https://svnweb.freebsd.org/changeset/ports/416759

Log:
  This is a library for verifying YubiKey OTP tokens. It includes both the
  low-level implementation for verifying tokens locally and clients for multiple
  versions of the Yubico validation web service. The primary audience is
  developers who wish to verify YubiKey tokens in their applications, presumably
  as part of a multi-factor authentication scheme.
  
  WWW: https://pypi.python.org/pypi/YubiOTP

Added:
  head/security/py-YubiOTP/
  head/security/py-YubiOTP/Makefile   (contents, props changed)
  head/security/py-YubiOTP/distinfo   (contents, props changed)
  head/security/py-YubiOTP/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sat Jun 11 21:52:36 2016	(r416758)
+++ head/security/Makefile	Sat Jun 11 21:59:56 2016	(r416759)
@@ -818,6 +818,7 @@
     SUBDIR += py-Products.PluggableAuthService
     SUBDIR += py-RestrictedPython
     SUBDIR += py-SecretStorage
+    SUBDIR += py-YubiOTP
     SUBDIR += py-acme
     SUBDIR += py-acme-tiny
     SUBDIR += py-artifacts

Added: head/security/py-YubiOTP/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-YubiOTP/Makefile	Sat Jun 11 21:59:56 2016	(r416759)
@@ -0,0 +1,21 @@
+# Created by: Carlo Strub <cs@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	YubiOTP
+PORTVERSION=	0.2.1
+CATEGORIES=	security python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	cs@FreeBSD.org
+COMMENT=	Library for verifying YubiKey OTP tokens
+
+LICENSE=	BSD2CLAUSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six \
+		${PYTHON_PKGNAMEPREFIX}pycrypto>0:security/py-pycrypto
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/security/py-YubiOTP/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-YubiOTP/distinfo	Sat Jun 11 21:59:56 2016	(r416759)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1465681726
+SHA256 (YubiOTP-0.2.1.tar.gz) = 458b6db6e9988740766dc47ca5583ac4c4db8b7483ffa7e3bc82101e6b07075c
+SIZE (YubiOTP-0.2.1.tar.gz) = 17493

Added: head/security/py-YubiOTP/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-YubiOTP/pkg-descr	Sat Jun 11 21:59:56 2016	(r416759)
@@ -0,0 +1,7 @@
+This is a library for verifying YubiKey OTP tokens. It includes both the
+low-level implementation for verifying tokens locally and clients for multiple
+versions of the Yubico validation web service. The primary audience is
+developers who wish to verify YubiKey tokens in their applications, presumably
+as part of a multi-factor authentication scheme.
+
+WWW: https://pypi.python.org/pypi/YubiOTP



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606112159.u5BLxuFD041532>