freebsd-ports/finance/py-python-bitcoinlib/Makefile
Kai Knoblich 8af91da1a0 finance/py-python-bitcoinlib: Update to 0.11.0
* Add "do-test" target to make future QA easier while I'm here.

Changelog:

* Bech32 implementation
* Segwit implementation (for P2WSH and P2WPKH transactions) and examples
* Use libsecp256k1 for signing
* Implement OP_CHECKSEQUENCEVERIFY
* Dropped Python 2.7 support
2020-06-13 11:57:19 +00:00

23 lines
426 B
Makefile

# $FreeBSD$
PORTNAME= python-bitcoinlib
PORTVERSION= 0.11.0
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:3.5+
USE_PYTHON= autoplist distutils
NO_ARCH= yes
do-test:
@cd ${WRKSRC} && ${PYTHON_CMD} setup.py test
.include <bsd.port.mk>