Date: Wed, 11 Oct 2017 22:35:04 +0000 (UTC) From: Emanuel Haupt <ehaupt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r451806 - in head/security: . py-mnemonic Message-ID: <201710112235.v9BMZ49L024118@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <ehaupt@FreeBSD.org> +# $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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710112235.v9BMZ49L024118>