From owner-svn-ports-head@freebsd.org Sun Jan 10 06:13:49 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 093C0A6A708; Sun, 10 Jan 2016 06:13:49 +0000 (UTC) (envelope-from miwi@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 B256D1027; Sun, 10 Jan 2016 06:13:48 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0A6DlWk086592; Sun, 10 Jan 2016 06:13:47 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0A6Dljw086588; Sun, 10 Jan 2016 06:13:47 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201601100613.u0A6Dljw086588@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Sun, 10 Jan 2016 06:13:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405667 - in head/security: . py-pyotp 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.20 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: Sun, 10 Jan 2016 06:13:49 -0000 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@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@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 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.