From owner-svn-ports-all@freebsd.org Sun Jul 3 01:53:36 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 E737DB8F782; Sun, 3 Jul 2016 01:53:36 +0000 (UTC) (envelope-from swills@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 922FA2B35; Sun, 3 Jul 2016 01:53:36 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u631rZ1f010126; Sun, 3 Jul 2016 01:53:35 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u631rZ9E010122; Sun, 3 Jul 2016 01:53:35 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201607030153.u631rZ9E010122@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 3 Jul 2016 01:53:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417950 - in head/security: . py-spake2 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, 03 Jul 2016 01:53:37 -0000 Author: swills Date: Sun Jul 3 01:53:35 2016 New Revision: 417950 URL: https://svnweb.freebsd.org/changeset/ports/417950 Log: security/py-spake2: create port SPAKE2 password-authenticated key exchange (pure python) WWW: http://github.com/warner/python-spake2 Added: head/security/py-spake2/ head/security/py-spake2/Makefile (contents, props changed) head/security/py-spake2/distinfo (contents, props changed) head/security/py-spake2/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Jul 3 01:47:38 2016 (r417949) +++ head/security/Makefile Sun Jul 3 01:53:35 2016 (r417950) @@ -902,6 +902,7 @@ SUBDIR += py-service_identity SUBDIR += py-signedjson SUBDIR += py-slowaes + SUBDIR += py-spake2 SUBDIR += py-ssh SUBDIR += py-sslstrip SUBDIR += py-stem Added: head/security/py-spake2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-spake2/Makefile Sun Jul 3 01:53:35 2016 (r417950) @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= spake2 +PORTVERSION= 0.7 +CATEGORIES= security +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= swills@FreeBSD.org +COMMENT= SPAKE2 password-authenticated key exchange (pure python) + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/security/py-spake2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-spake2/distinfo Sun Jul 3 01:53:35 2016 (r417950) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467489655 +SHA256 (spake2-0.7.tar.gz) = d2281458eed1048cb12fbab6ac02b06a8520ae9f2c30be330ea4c5b558a4b766 +SIZE (spake2-0.7.tar.gz) = 56186 Added: head/security/py-spake2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-spake2/pkg-descr Sun Jul 3 01:53:35 2016 (r417950) @@ -0,0 +1,3 @@ +SPAKE2 password-authenticated key exchange (pure python) + +WWW: http://github.com/warner/python-spake2