From owner-svn-ports-head@freebsd.org Mon Aug 3 16:46:47 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5A3D43A1143; Mon, 3 Aug 2020 16:46:47 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BL3gq1j7vz45Bf; Mon, 3 Aug 2020 16:46:47 +0000 (UTC) (envelope-from yuri@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1DC05173EB; Mon, 3 Aug 2020 16:46:47 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 073GkkVM002532; Mon, 3 Aug 2020 16:46:46 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 073GkkCo002528; Mon, 3 Aug 2020 16:46:46 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202008031646.073GkkCo002528@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 3 Aug 2020 16:46:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r544084 - in head/security: . py-merkletools X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/security: . py-merkletools X-SVN-Commit-Revision: 544084 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.33 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: Mon, 03 Aug 2020 16:46:47 -0000 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 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