Date: Mon, 3 Aug 2020 16:46:46 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r544084 - in head/security: . py-merkletools Message-ID: <202008031646.073GkkCo002528@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Mon Aug 3 16:46:46 2020 New Revision: 544084 URL: https://svnweb.freebsd.org/changeset/ports/544084 Log: Mew port: security/py-merkletools: Tools for working with Merkle trees Added: head/security/py-merkletools/ head/security/py-merkletools/Makefile (contents, props changed) head/security/py-merkletools/distinfo (contents, props changed) head/security/py-merkletools/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Mon Aug 3 16:39:29 2020 (r544083) +++ head/security/Makefile Mon Aug 3 16:46:46 2020 (r544084) @@ -912,6 +912,7 @@ SUBDIR += py-m2crypto SUBDIR += py-maec SUBDIR += py-mcrypt + SUBDIR += py-merkletools SUBDIR += py-mixbox SUBDIR += py-mnemonic SUBDIR += py-msoffcrypto-tool Added: head/security/py-merkletools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-merkletools/Makefile Mon Aug 3 16:46:46 2020 (r544084) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= merkletools +DISTVERSION= 1.0.3 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Tools for working with Merkle trees + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pysha3>0:security/py-pysha3@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/security/py-merkletools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-merkletools/distinfo Mon Aug 3 16:46:46 2020 (r544084) @@ -0,0 +1,3 @@ +TIMESTAMP = 1596472828 +SHA256 (merkletools-1.0.3.tar.gz) = 346dd10f3c11a8be5045cc3d9089f8d9315c9841deb5c71acfac031a7599b15d +SIZE (merkletools-1.0.3.tar.gz) = 8265 Added: head/security/py-merkletools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-merkletools/pkg-descr Mon Aug 3 16:46:46 2020 (r544084) @@ -0,0 +1,4 @@ +Tools for creating Merkle trees, generating merkle proofs, and verification +of merkle proofs. + +WWW: https://github.com/Tierion/pymerkletools
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008031646.073GkkCo002528>