forked from Lainports/freebsd-ports
Changelog: * "CECKey" now rejects secrets that aren't exactly 32 bytes * Now compatible with OpenSSL v3; broke compatibility with certain script edge cases around malformed signatures. This is acceptable because python-bitcoinlib doesn't claim to have consensus compatibility and no-one should use it for script/tx validation.
22 lines
461 B
Makefile
22 lines
461 B
Makefile
PORTNAME= python-bitcoinlib
|
|
PORTVERSION= 0.12.0
|
|
CATEGORIES= finance python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= kai@FreeBSD.org
|
|
COMMENT= Swiss Army Knife of the Bitcoin protocol
|
|
WWW= https://github.com/petertodd/python-bitcoinlib/
|
|
|
|
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>
|