From owner-svn-ports-all@freebsd.org Sun Jun 12 21:48:15 2016 Return-Path: Delivered-To: svn-ports-all@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 D53F2AF12EC; Sun, 12 Jun 2016 21:48:15 +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 9319A2107; Sun, 12 Jun 2016 21:48:15 +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 u5CLmEgD070788; Sun, 12 Jun 2016 21:48:14 GMT (envelope-from cs@FreeBSD.org) Received: (from cs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5CLmEm3070784; Sun, 12 Jun 2016 21:48:14 GMT (envelope-from cs@FreeBSD.org) Message-Id: <201606122148.u5CLmEm3070784@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cs set sender to cs@FreeBSD.org using -f From: Carlo Strub Date: Sun, 12 Jun 2016 21:48:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416824 - in head/www: . py-django-otp-yubikey X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Jun 2016 21:48:15 -0000 Author: cs Date: Sun Jun 12 21:48:14 2016 New Revision: 416824 URL: https://svnweb.freebsd.org/changeset/ports/416824 Log: This is a django-otp plugin that handles YubiKey devices using the Yubico OTP algorithm. This includes two device definitions: one to verify YubiKey tokens locally and another to verify them against a web service. WWW: https://pypi.python.org/pypi/django-otp-yubikey Added: head/www/py-django-otp-yubikey/ head/www/py-django-otp-yubikey/Makefile (contents, props changed) head/www/py-django-otp-yubikey/distinfo (contents, props changed) head/www/py-django-otp-yubikey/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Jun 12 21:29:57 2016 (r416823) +++ head/www/Makefile Sun Jun 12 21:48:14 2016 (r416824) @@ -1565,6 +1565,7 @@ SUBDIR += py-django-mptt SUBDIR += py-django-openid-auth SUBDIR += py-django-otp + SUBDIR += py-django-otp-yubikey SUBDIR += py-django-overextends SUBDIR += py-django-paging SUBDIR += py-django-photologue Added: head/www/py-django-otp-yubikey/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-otp-yubikey/Makefile Sun Jun 12 21:48:14 2016 (r416824) @@ -0,0 +1,21 @@ +# Created by: Carlo Strub +# $FreeBSD$ + +PORTNAME= django-otp-yubikey +PORTVERSION= 0.3.3 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= cs@FreeBSD.org +COMMENT= Plugin that verifies YubiKey OTP tokens + +LICENSE= BSD2CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}YubiOTP>0:security/py-YubiOTP \ + ${PYTHON_PKGNAMEPREFIX}django-otp>0:www/py-django-otp + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/www/py-django-otp-yubikey/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-otp-yubikey/distinfo Sun Jun 12 21:48:14 2016 (r416824) @@ -0,0 +1,3 @@ +TIMESTAMP = 1465767590 +SHA256 (django-otp-yubikey-0.3.3.tar.gz) = 0e9f748abf2e380163f33b28de2a1a1a5bb06b8f0c6e91fabdea70d49f1cf58a +SIZE (django-otp-yubikey-0.3.3.tar.gz) = 14233 Added: head/www/py-django-otp-yubikey/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-otp-yubikey/pkg-descr Sun Jun 12 21:48:14 2016 (r416824) @@ -0,0 +1,5 @@ +This is a django-otp plugin that handles YubiKey devices using the Yubico OTP +algorithm. This includes two device definitions: one to verify YubiKey tokens +locally and another to verify them against a web service. + +WWW: https://pypi.python.org/pypi/django-otp-yubikey