From owner-svn-ports-all@freebsd.org Mon Aug 3 16:34:28 2020 Return-Path: Delivered-To: svn-ports-all@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 B6CB137FC75; Mon, 3 Aug 2020 16:34:28 +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 4BL3Pc4Sd8z43yW; Mon, 3 Aug 2020 16:34:28 +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 6494D1735A; Mon, 3 Aug 2020 16:34:28 +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 073GYSqk095654; Mon, 3 Aug 2020 16:34:28 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 073GYRAA095650; Mon, 3 Aug 2020 16:34:27 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202008031634.073GYRAA095650@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:34:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r544082 - in head/security: . py-coincurve X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/security: . py-coincurve X-SVN-Commit-Revision: 544082 X-SVN-Commit-Repository: ports 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.33 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: Mon, 03 Aug 2020 16:34:28 -0000 Author: yuri Date: Mon Aug 3 16:34:27 2020 New Revision: 544082 URL: https://svnweb.freebsd.org/changeset/ports/544082 Log: New port: security/py-coincurve: Cross-platform Python CFFI bindings for libsecp256k1 Added: head/security/py-coincurve/ head/security/py-coincurve/Makefile (contents, props changed) head/security/py-coincurve/distinfo (contents, props changed) head/security/py-coincurve/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Mon Aug 3 16:31:33 2020 (r544081) +++ head/security/Makefile Mon Aug 3 16:34:27 2020 (r544082) @@ -867,6 +867,7 @@ SUBDIR += py-certifi SUBDIR += py-certstream SUBDIR += py-ckcc-protocol + SUBDIR += py-coincurve SUBDIR += py-cpe SUBDIR += py-cracklib SUBDIR += py-cryptography Added: head/security/py-coincurve/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-coincurve/Makefile Mon Aug 3 16:34:27 2020 (r544082) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= coincurve +DISTVERSION= 13.0.0 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Cross-platform Python CFFI bindings for libsecp256k1 + +LICENSE= MIT APACHE20 +LICENSE_COMB= dual + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>0:devel/py-cffi@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} \ + gmake:devel/gmake +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}asn1crypto>0:devel/py-asn1crypto@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}cffi>0:devel/py-cffi@${PY_FLAVOR} + +USES= pkgconfig python +USE_PYTHON= distutils autoplist + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/coincurve/_libsecp256k1.so + +.include Added: head/security/py-coincurve/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-coincurve/distinfo Mon Aug 3 16:34:27 2020 (r544082) @@ -0,0 +1,3 @@ +TIMESTAMP = 1596471505 +SHA256 (coincurve-13.0.0.tar.gz) = 9985627dc0c81fe98c3d2e97412801e9726d6110249317a2775cf365f0ba0df5 +SIZE (coincurve-13.0.0.tar.gz) = 961637 Added: head/security/py-coincurve/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-coincurve/pkg-descr Mon Aug 3 16:34:27 2020 (r544082) @@ -0,0 +1,5 @@ +The coincurve python library provides well-tested Python CFFI bindings for +libsecp256k1, the heavily optimized C library used by Bitcoin Core for +operations on elliptic curve secp256k1. + +WWW: https://github.com/ofek/coincurve