From owner-svn-ports-all@FreeBSD.ORG Thu Jan 1 19:29:35 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D8BC0C2A; Thu, 1 Jan 2015 19:29:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 AAC7264E0C; Thu, 1 Jan 2015 19:29:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t01JTZ3J006849; Thu, 1 Jan 2015 19:29:35 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t01JTYZb006843; Thu, 1 Jan 2015 19:29:34 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201501011929.t01JTYZb006843@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Thu, 1 Jan 2015 19:29:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r376026 - in head/security: . py-pbkdf2 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.18-1 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: Thu, 01 Jan 2015 19:29:36 -0000 Author: pawel Date: Thu Jan 1 19:29:33 2015 New Revision: 376026 URL: https://svnweb.freebsd.org/changeset/ports/376026 QAT: https://qat.redports.org/buildarchive/r376026/ Log: This module implements the password-based key derivation function, PBKDF2, specified in RSA PKCS#5 v2.0. PR: 196048 Submitted by: Neil Booth Added: head/security/py-pbkdf2/ head/security/py-pbkdf2/Makefile (contents, props changed) head/security/py-pbkdf2/distinfo (contents, props changed) head/security/py-pbkdf2/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Thu Jan 1 19:02:26 2015 (r376025) +++ head/security/Makefile Thu Jan 1 19:29:33 2015 (r376026) @@ -792,6 +792,7 @@ SUBDIR += py-openssl SUBDIR += py-paramiko SUBDIR += py-passlib + SUBDIR += py-pbkdf2 SUBDIR += py-plaso SUBDIR += py-plone.app.openid SUBDIR += py-plone.keyring Added: head/security/py-pbkdf2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pbkdf2/Makefile Thu Jan 1 19:29:33 2015 (r376026) @@ -0,0 +1,18 @@ +# Created by: Neil Booth +# $FreeBSD$ + +PORTNAME= pbkdf2 +PORTVERSION= 1.3 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= kyuupichan@gmail.com +COMMENT= PKCS5 v2.0 PBKDF2 Module + +LICENSE= MIT + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/security/py-pbkdf2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pbkdf2/distinfo Thu Jan 1 19:29:33 2015 (r376026) @@ -0,0 +1,2 @@ +SHA256 (pbkdf2-1.3.tar.gz) = ac6397369f128212c43064a2b4878038dab78dab41875364554aaf2a684e6979 +SIZE (pbkdf2-1.3.tar.gz) = 6360 Added: head/security/py-pbkdf2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pbkdf2/pkg-descr Thu Jan 1 19:29:33 2015 (r376026) @@ -0,0 +1,2 @@ +This module implements the password-based key derivation function, +PBKDF2, specified in RSA PKCS#5 v2.0.