From owner-svn-ports-all@freebsd.org Sat Feb 2 11:59:06 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B07B214BAE06; Sat, 2 Feb 2019 11:59:06 +0000 (UTC) (envelope-from ehaupt@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) server-signature RSA-PSS (4096 bits) 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 5408485435; Sat, 2 Feb 2019 11:59: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2D3E7673D; Sat, 2 Feb 2019 11:59:06 +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 x12Bx6wr065173; Sat, 2 Feb 2019 11:59:06 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x12Bx5kQ065169; Sat, 2 Feb 2019 11:59:05 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201902021159.x12Bx5kQ065169@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Sat, 2 Feb 2019 11:59:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r491952 - in head/security: . py-keepkey X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: in head/security: . py-keepkey X-SVN-Commit-Revision: 491952 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5408485435 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Sat, 02 Feb 2019 11:59:06 -0000 Author: ehaupt Date: Sat Feb 2 11:59:05 2019 New Revision: 491952 URL: https://svnweb.freebsd.org/changeset/ports/491952 Log: Add py-keepkey 6.0.2, library for communicating with KeepKey Hardware Wallet. Added: head/security/py-keepkey/ head/security/py-keepkey/Makefile (contents, props changed) head/security/py-keepkey/distinfo (contents, props changed) head/security/py-keepkey/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Feb 2 11:58:39 2019 (r491951) +++ head/security/Makefile Sat Feb 2 11:59:05 2019 (r491952) @@ -960,6 +960,7 @@ SUBDIR += py-htpasswd SUBDIR += py-itsdangerous SUBDIR += py-josepy + SUBDIR += py-keepkey SUBDIR += py-kerberos SUBDIR += py-keyczar SUBDIR += py-keyring Added: head/security/py-keepkey/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-keepkey/Makefile Sat Feb 2 11:59:05 2019 (r491952) @@ -0,0 +1,26 @@ +# Created by: Emanuel Haupt +# $FreeBSD$ + +PORTNAME= keepkey +PORTVERSION= 6.0.2 +CATEGORIES= security +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ehaupt@FreeBSD.org +COMMENT= Library for communicating with KeepKey Hardware Wallet + +LICENSE= LGPL3 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ecdsa>=0.9:security/py-ecdsa@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}protobuf>=3.0.0:devel/py-protobuf@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}mnemonic>=0.8:security/py-mnemonic@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}hidapi>=0.7.99.post15:comms/py-hidapi@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}libusb1>=1.6:devel/py-libusb1@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/security/py-keepkey/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-keepkey/distinfo Sat Feb 2 11:59:05 2019 (r491952) @@ -0,0 +1,3 @@ +TIMESTAMP = 1549099428 +SHA256 (keepkey-6.0.2.tar.gz) = af107f610fb0e2417fc7a9d87a2fa22aac9b80b79559370d178be424bb85489a +SIZE (keepkey-6.0.2.tar.gz) = 147774 Added: head/security/py-keepkey/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-keepkey/pkg-descr Sat Feb 2 11:59:05 2019 (r491952) @@ -0,0 +1,3 @@ +Python library for communicating with KeepKey Hardware Wallet. + +WWW: https://github.com/keepkey/python-keepkey