From owner-svn-ports-head@freebsd.org Wed Oct 11 22:35:06 2017 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 2C021E38D4D; Wed, 11 Oct 2017 22:35:06 +0000 (UTC) (envelope-from ehaupt@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 07DF07F61E; Wed, 11 Oct 2017 22:35:05 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9BMZ5kx024122; Wed, 11 Oct 2017 22:35:05 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9BMZ49L024118; Wed, 11 Oct 2017 22:35:04 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201710112235.v9BMZ49L024118@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Wed, 11 Oct 2017 22:35:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r451806 - in head/security: . py-mnemonic X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: in head/security: . py-mnemonic X-SVN-Commit-Revision: 451806 X-SVN-Commit-Repository: ports 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.23 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: Wed, 11 Oct 2017 22:35:06 -0000 Author: ehaupt Date: Wed Oct 11 22:35:04 2017 New Revision: 451806 URL: https://svnweb.freebsd.org/changeset/ports/451806 Log: Add py-mnemonic 0.17, implementation of Bitcoin BIP-0039. Added: head/security/py-mnemonic/ head/security/py-mnemonic/Makefile (contents, props changed) head/security/py-mnemonic/distinfo (contents, props changed) head/security/py-mnemonic/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Wed Oct 11 22:34:31 2017 (r451805) +++ head/security/Makefile Wed Oct 11 22:35:04 2017 (r451806) @@ -908,6 +908,7 @@ SUBDIR += py-mcrypt SUBDIR += py-mhash SUBDIR += py-mixbox + SUBDIR += py-mnemonic SUBDIR += py-oauth2client SUBDIR += py-oauthlib SUBDIR += py-onetime Added: head/security/py-mnemonic/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-mnemonic/Makefile Wed Oct 11 22:35:04 2017 (r451806) @@ -0,0 +1,20 @@ +# Created by: Emanuel Haupt +# $FreeBSD$ + +PORTNAME= mnemonic +PORTVERSION= 0.17 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ehaupt@FreeBSD.org +COMMENT= Implementation of Bitcoin BIP-0039 + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbkdf2>=1.3:security/py-pbkdf2 + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/security/py-mnemonic/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-mnemonic/distinfo Wed Oct 11 22:35:04 2017 (r451806) @@ -0,0 +1,3 @@ +TIMESTAMP = 1507061403 +SHA256 (mnemonic-0.17.tar.gz) = 5636ec318c2abb7d1e54b557d1822843d662008099f1588cc3ee2979c8ea06c3 +SIZE (mnemonic-0.17.tar.gz) = 21847 Added: head/security/py-mnemonic/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-mnemonic/pkg-descr Wed Oct 11 22:35:04 2017 (r451806) @@ -0,0 +1,8 @@ +This BIP describes the implementation of a mnemonic code or mnemonic sentence (a +group of easy to remember words) for the generation of deterministic wallets. + +It consists of two parts: generating the mnenomic, and converting it into a +binary seed. This seed can be later used to generate deterministic wallets using +BIP-0032 or similar methods. + +WWW: https://github.com/trezor/python-mnemonic