Date: Wed, 13 Mar 2019 16:40:39 +0000 (UTC) From: Kai Knoblich <kai@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r495614 - in head/finance: . py-python-bitcoinlib Message-ID: <201903131640.x2DGed5B011865@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kai Date: Wed Mar 13 16:40:39 2019 New Revision: 495614 URL: https://svnweb.freebsd.org/changeset/ports/495614 Log: New port: finance/py-python-bitcoinlib Provides an easy interface to the bitcoin data structures and protocol. The approach is low-level and "ground up", with a focus on providing tools to manipulate the internals of how Bitcoin works. WWW: https://github.com/petertodd/python-bitcoinlib/ Approved by: miwi (mentor) Differential Revision: https://reviews.freebsd.org/D19542 Added: head/finance/py-python-bitcoinlib/ head/finance/py-python-bitcoinlib/Makefile (contents, props changed) head/finance/py-python-bitcoinlib/distinfo (contents, props changed) head/finance/py-python-bitcoinlib/pkg-descr (contents, props changed) Modified: head/finance/Makefile Modified: head/finance/Makefile ============================================================================== --- head/finance/Makefile Wed Mar 13 16:35:15 2019 (r495613) +++ head/finance/Makefile Wed Mar 13 16:40:39 2019 (r495614) @@ -97,6 +97,7 @@ SUBDIR += prestashop SUBDIR += py-bitcoin SUBDIR += py-pycoin + SUBDIR += py-python-bitcoinlib SUBDIR += py-python-obelisk SUBDIR += py-stripe SUBDIR += py-ta-lib Added: head/finance/py-python-bitcoinlib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/py-python-bitcoinlib/Makefile Wed Mar 13 16:40:39 2019 (r495614) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= python-bitcoinlib +PORTVERSION= 0.10.1 +CATEGORIES= finance python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= kai@FreeBSD.org +COMMENT= Swiss Army Knife of the Bitcoin protocol + +LICENSE= LGPL3+ +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/finance/py-python-bitcoinlib/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/py-python-bitcoinlib/distinfo Wed Mar 13 16:40:39 2019 (r495614) @@ -0,0 +1,3 @@ +TIMESTAMP = 1549630106 +SHA256 (python-bitcoinlib-0.10.1.tar.gz) = 0fe7de6c083e12479eb12d3764ece83e5c73b1c48e806009ee1a1aa02da098cf +SIZE (python-bitcoinlib-0.10.1.tar.gz) = 135322 Added: head/finance/py-python-bitcoinlib/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/py-python-bitcoinlib/pkg-descr Wed Mar 13 16:40:39 2019 (r495614) @@ -0,0 +1,5 @@ +Provides an easy interface to the bitcoin data structures and protocol. The +approach is low-level and "ground up", with a focus on providing tools to +manipulate the internals of how Bitcoin works. + +WWW: https://github.com/petertodd/python-bitcoinlib/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903131640.x2DGed5B011865>