pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/finance py-bitcoinlib: updated to 0.10.2



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c3bff3cfc73c
branches:  trunk
changeset: 405266:c3bff3cfc73c
user:      adam <adam%pkgsrc.org@localhost>
date:      Mon Nov 25 18:24:49 2019 +0000

description:
py-bitcoinlib: updated to 0.10.2

v0.10.2
Note: this will be the last release of python-bitcoinlib with Python 2.7 compatibility.

New RPC generatetoaddress(self,numblocks,addr).
Fixed Python 2.7 incompatibility.
Various OpenSSL fixes, including a memory leak.

v0.10.1
Identical in every way to v0.10.0, but re-uploaded under a new version to fix a PyPi issue.

v0.10.0
Minor breaking change: RPC port for regtest updated to the new v0.16.0 default.

Other changes:
Now looks for .cookie files in the datadir, if specified.
Authentication in a RPC service_url is now parsed.
Implemented bip-0037 version message.
contrib/verify-commits/ removed for now due to breakage.

v0.9.0
Now supports segwit, which breaks the API in minor ways from v0.8.0. This version introduces lots of new API functionality related to this, such as the new CScriptWitness, CTxInWitness, CTxWitness, 
new segwit-specific logic in SignatureHash() etc.

v0.8.0
Major breaking API change!

While this interim release doesn't by itself include segwit support, it does change the name of the CTransaction/CMutableTransaction method GetHash() to GetTxid() to prepare for a future 
segwit-enabled release. Incorrect calls to GetHash() will now raise a AttributeError exception with an explanation.

Since this release doesn't yet include segwit support, you will need to set the Bitcoin Core -rpcserialversion=0 option, either as a command line argument, or in your bitcoin.conf file. Otherwise the 
RPC interface will return segwit-serialized transactions that this release's RPC support doesn't understand.

Other changes:
Cookie file RPC authentication is now supported.
msg_header now correctly uses CBlockHeader rather than CBlock.
RPC getbalance now supports include_watchonly
RPC unlockwallet is now supported

v0.7.0
Breaking API changes:
The 'cooked' CScript iterator now returns OP_0 for the empty binary string rather than b''

The alias JSONRPCException = JSONRPCError has been removed. This alias was added for compatibility with v0.4.0 of python-bitcoinlib.

Where appropriate, RPC_INVALID_ADDRESS_OR_KEY errors are now caught properly, which means that rather than raising IndexError, RPC commands such as getblock may raise JSONRPCError instead. For 
instance during initial startup previously python-bitcoinlib would incorrectly raise IndexError rather than letting the callee know that RPC was unusable. Along those lines, JSONRPCError subclasses 
have been added for some (but not all!) of the types of RPC errors Bitcoin Core returns.

Bugfixes:
Fixed a spurious AttributeError when bitcoin.rpc.Proxy() fails.

v0.6.1
New features:
getblockheader RPC call now supports the verbose option; there's no other way to get the block height, among other things, from the RPC interface.
subtoaddress and sendmany RPC calls now support comment and subtractfeefromamount arguments.

v0.6.0
Breaking API changes:
RPC over SSL support removed to match Bitcoin Core's removal of RPC SSL support in v0.12.0 If you need this, use an alternative such as a stunnel or a SSH tunnel.

Removed SCRIPT_VERIFY constants bitcoin.core.script, leaving just the constants in bitcoin.core.scripteval; being singletons the redundant constants were broken anyway.

SCRIPT_VERIFY_EVEN_S renamed to SCRIPT_VERIFY_LOW_S to match Bitcoin Core's naming

SCRIPT_VERIFY_NOCACHE removed as Bitcoin Core no longer has it (and we never did anything with it anyway)

v0.5.1
Various small bugfixes; see git history.

New features:
New RPC calls: fundrawtransaction, generate, getblockheader
OP_CHECKLOCKTIMEVERIFY opcode constant

v0.5.0
Major fix: Fixed OpenSSL related crashes on OSX and Arch Linux. Big thanks to everyone who helped fix this!

Breaking API changes:
Proxy no longer has __getattr__ to support arbitrary methods. Use RawProxy or Proxy.call instead. This allows new wrappers to be added safely. See docstrings for details.
New features:

New RPC calls: getbestblockhash, getblockcount, getmininginfo
Signing and verification of Bitcoin Core compatible messages. (w/ pubkey recovery)
Tox tests
Sphinx docs

Notable bugfixes:
getinfo() now works where disablewallet=1

v0.4.0
Major fix: OpenSSL 1.0.1k rejects non-canonical DER signatures, which Bitcoin Core does not, so we now canonicalize signatures prior to passing them to OpenSSL. Secondly we now only generate low-S 
DER signatures as per BIP62.

API changes that might break compatibility with existing code:

MAX_MONEY is now a core chain parameter
MainParams now inherits from CoreMainParams rather than CoreChainParams
str() now returns hash:n format; previously was same as repr()
RawProxy() no longer has _connection parameter

Notable bugfixes:
MsgSerializable.to_bytes() no longer clobbers testnet params
HTTPS RPC connections now use port 443 as default
No longer assumes bitcoin.conf specifes rpcuser

New features:
New RPC calls: dumpprivkey, importaddress
Added P2P support for msg_notfound and msg_reject
Added support for IPv6 addr messages

diffstat:

 finance/Makefile                      |    4 +-
 finance/py-bitcoinlib/DESCR           |    3 +
 finance/py-bitcoinlib/Makefile        |   16 +++++
 finance/py-bitcoinlib/PLIST           |  105 ++++++++++++++++++++++++++++++++++
 finance/py-bitcoinlib/distinfo        |    6 +
 finance/py-python-bitcoinlib/DESCR    |    3 -
 finance/py-python-bitcoinlib/Makefile |   16 -----
 finance/py-python-bitcoinlib/PLIST    |   87 ----------------------------
 finance/py-python-bitcoinlib/distinfo |    6 -
 9 files changed, 132 insertions(+), 114 deletions(-)

diffs (297 lines):

diff -r 336f77f6a897 -r c3bff3cfc73c finance/Makefile
--- a/finance/Makefile  Mon Nov 25 14:07:48 2019 +0000
+++ b/finance/Makefile  Mon Nov 25 18:24:49 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.68 2019/08/09 15:39:04 brook Exp $
+# $NetBSD: Makefile,v 1.69 2019/11/25 18:24:49 adam Exp $
 #
 
 COMMENT=       Monetary, financial and related applications
@@ -30,12 +30,12 @@
 SUBDIR+=       py-alpha_vantage
 SUBDIR+=       py-alphalens
 SUBDIR+=       py-backtrader
+SUBDIR+=       py-bitcoinlib
 SUBDIR+=       py-braintree
 SUBDIR+=       py-empyrical
 SUBDIR+=       py-fecon235
 SUBDIR+=       py-ofxparse
 SUBDIR+=       py-pyfolio
-SUBDIR+=       py-python-bitcoinlib
 SUBDIR+=       py-quickbooks
 SUBDIR+=       py-stripe
 SUBDIR+=       py-trytond-account
diff -r 336f77f6a897 -r c3bff3cfc73c finance/py-bitcoinlib/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/finance/py-bitcoinlib/DESCR       Mon Nov 25 18:24:49 2019 +0000
@@ -0,0 +1,3 @@
+This Python2/3 library 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.
diff -r 336f77f6a897 -r c3bff3cfc73c finance/py-bitcoinlib/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/finance/py-bitcoinlib/Makefile    Mon Nov 25 18:24:49 2019 +0000
@@ -0,0 +1,16 @@
+# $NetBSD: Makefile,v 1.1 2019/11/25 18:24:49 adam Exp $
+
+DISTNAME=      python-bitcoinlib-0.10.2
+PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/^python-//}
+CATEGORIES=    finance net python
+MASTER_SITES=  ${MASTER_SITE_PYPI:=p/python-bitcoinlib/}
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/petertodd/python-bitcoinlib
+COMMENT=       Python bitcoin library
+LICENSE=       gnu-lgpl-v3
+
+USE_LANGUAGES= # none
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 336f77f6a897 -r c3bff3cfc73c finance/py-bitcoinlib/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/finance/py-bitcoinlib/PLIST       Mon Nov 25 18:24:49 2019 +0000
@@ -0,0 +1,105 @@
+@comment $NetBSD: PLIST,v 1.1 2019/11/25 18:24:49 adam Exp $
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/bitcoin/__init__.py
+${PYSITELIB}/bitcoin/__init__.pyc
+${PYSITELIB}/bitcoin/__init__.pyo
+${PYSITELIB}/bitcoin/base58.py
+${PYSITELIB}/bitcoin/base58.pyc
+${PYSITELIB}/bitcoin/base58.pyo
+${PYSITELIB}/bitcoin/bloom.py
+${PYSITELIB}/bitcoin/bloom.pyc
+${PYSITELIB}/bitcoin/bloom.pyo
+${PYSITELIB}/bitcoin/core/__init__.py
+${PYSITELIB}/bitcoin/core/__init__.pyc
+${PYSITELIB}/bitcoin/core/__init__.pyo
+${PYSITELIB}/bitcoin/core/_bignum.py
+${PYSITELIB}/bitcoin/core/_bignum.pyc
+${PYSITELIB}/bitcoin/core/_bignum.pyo
+${PYSITELIB}/bitcoin/core/key.py
+${PYSITELIB}/bitcoin/core/key.pyc
+${PYSITELIB}/bitcoin/core/key.pyo
+${PYSITELIB}/bitcoin/core/script.py
+${PYSITELIB}/bitcoin/core/script.pyc
+${PYSITELIB}/bitcoin/core/script.pyo
+${PYSITELIB}/bitcoin/core/scripteval.py
+${PYSITELIB}/bitcoin/core/scripteval.pyc
+${PYSITELIB}/bitcoin/core/scripteval.pyo
+${PYSITELIB}/bitcoin/core/serialize.py
+${PYSITELIB}/bitcoin/core/serialize.pyc
+${PYSITELIB}/bitcoin/core/serialize.pyo
+${PYSITELIB}/bitcoin/messages.py
+${PYSITELIB}/bitcoin/messages.pyc
+${PYSITELIB}/bitcoin/messages.pyo
+${PYSITELIB}/bitcoin/net.py
+${PYSITELIB}/bitcoin/net.pyc
+${PYSITELIB}/bitcoin/net.pyo
+${PYSITELIB}/bitcoin/rpc.py
+${PYSITELIB}/bitcoin/rpc.pyc
+${PYSITELIB}/bitcoin/rpc.pyo
+${PYSITELIB}/bitcoin/signature.py
+${PYSITELIB}/bitcoin/signature.pyc
+${PYSITELIB}/bitcoin/signature.pyo
+${PYSITELIB}/bitcoin/signmessage.py
+${PYSITELIB}/bitcoin/signmessage.pyc
+${PYSITELIB}/bitcoin/signmessage.pyo
+${PYSITELIB}/bitcoin/tests/__init__.py
+${PYSITELIB}/bitcoin/tests/__init__.pyc
+${PYSITELIB}/bitcoin/tests/__init__.pyo
+${PYSITELIB}/bitcoin/tests/fakebitcoinproxy.py
+${PYSITELIB}/bitcoin/tests/fakebitcoinproxy.pyc
+${PYSITELIB}/bitcoin/tests/fakebitcoinproxy.pyo
+${PYSITELIB}/bitcoin/tests/test_base58.py
+${PYSITELIB}/bitcoin/tests/test_base58.pyc
+${PYSITELIB}/bitcoin/tests/test_base58.pyo
+${PYSITELIB}/bitcoin/tests/test_bloom.py
+${PYSITELIB}/bitcoin/tests/test_bloom.pyc
+${PYSITELIB}/bitcoin/tests/test_bloom.pyo
+${PYSITELIB}/bitcoin/tests/test_checkblock.py
+${PYSITELIB}/bitcoin/tests/test_checkblock.pyc
+${PYSITELIB}/bitcoin/tests/test_checkblock.pyo
+${PYSITELIB}/bitcoin/tests/test_core.py
+${PYSITELIB}/bitcoin/tests/test_core.pyc
+${PYSITELIB}/bitcoin/tests/test_core.pyo
+${PYSITELIB}/bitcoin/tests/test_fakebitcoinproxy.py
+${PYSITELIB}/bitcoin/tests/test_fakebitcoinproxy.pyc
+${PYSITELIB}/bitcoin/tests/test_fakebitcoinproxy.pyo
+${PYSITELIB}/bitcoin/tests/test_key.py
+${PYSITELIB}/bitcoin/tests/test_key.pyc
+${PYSITELIB}/bitcoin/tests/test_key.pyo
+${PYSITELIB}/bitcoin/tests/test_messages.py
+${PYSITELIB}/bitcoin/tests/test_messages.pyc
+${PYSITELIB}/bitcoin/tests/test_messages.pyo
+${PYSITELIB}/bitcoin/tests/test_net.py
+${PYSITELIB}/bitcoin/tests/test_net.pyc
+${PYSITELIB}/bitcoin/tests/test_net.pyo
+${PYSITELIB}/bitcoin/tests/test_rpc.py
+${PYSITELIB}/bitcoin/tests/test_rpc.pyc
+${PYSITELIB}/bitcoin/tests/test_rpc.pyo
+${PYSITELIB}/bitcoin/tests/test_script.py
+${PYSITELIB}/bitcoin/tests/test_script.pyc
+${PYSITELIB}/bitcoin/tests/test_script.pyo
+${PYSITELIB}/bitcoin/tests/test_scripteval.py
+${PYSITELIB}/bitcoin/tests/test_scripteval.pyc
+${PYSITELIB}/bitcoin/tests/test_scripteval.pyo
+${PYSITELIB}/bitcoin/tests/test_segwit.py
+${PYSITELIB}/bitcoin/tests/test_segwit.pyc
+${PYSITELIB}/bitcoin/tests/test_segwit.pyo
+${PYSITELIB}/bitcoin/tests/test_serialize.py
+${PYSITELIB}/bitcoin/tests/test_serialize.pyc
+${PYSITELIB}/bitcoin/tests/test_serialize.pyo
+${PYSITELIB}/bitcoin/tests/test_signmessage.py
+${PYSITELIB}/bitcoin/tests/test_signmessage.pyc
+${PYSITELIB}/bitcoin/tests/test_signmessage.pyo
+${PYSITELIB}/bitcoin/tests/test_transactions.py
+${PYSITELIB}/bitcoin/tests/test_transactions.pyc
+${PYSITELIB}/bitcoin/tests/test_transactions.pyo
+${PYSITELIB}/bitcoin/tests/test_wallet.py
+${PYSITELIB}/bitcoin/tests/test_wallet.pyc
+${PYSITELIB}/bitcoin/tests/test_wallet.pyo
+${PYSITELIB}/bitcoin/wallet.py
+${PYSITELIB}/bitcoin/wallet.pyc
+${PYSITELIB}/bitcoin/wallet.pyo
diff -r 336f77f6a897 -r c3bff3cfc73c finance/py-bitcoinlib/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/finance/py-bitcoinlib/distinfo    Mon Nov 25 18:24:49 2019 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2019/11/25 18:24:49 adam Exp $
+
+SHA1 (python-bitcoinlib-0.10.2.tar.gz) = c77abbdf8fbff2c895c57102c089eaf9d4e5b033
+RMD160 (python-bitcoinlib-0.10.2.tar.gz) = 660fb4ec214ad4e5db86f3b43cb0ed26115573f8
+SHA512 (python-bitcoinlib-0.10.2.tar.gz) = 959da858e1d8fe4d2850de8ed7dda09628c6ac5fb454e00f26a6d1d7c12da7a6b68185a4f77eb8cf001b135b19d32558228cdd17b4c50d90eabee39b0e339c72
+Size (python-bitcoinlib-0.10.2.tar.gz) = 144193 bytes
diff -r 336f77f6a897 -r c3bff3cfc73c finance/py-python-bitcoinlib/DESCR
--- a/finance/py-python-bitcoinlib/DESCR        Mon Nov 25 14:07:48 2019 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,3 +0,0 @@
-This Python2/3 library 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.
diff -r 336f77f6a897 -r c3bff3cfc73c finance/py-python-bitcoinlib/Makefile
--- a/finance/py-python-bitcoinlib/Makefile     Mon Nov 25 14:07:48 2019 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-# $NetBSD: Makefile,v 1.9 2017/09/16 19:26:51 wiz Exp $
-
-DISTNAME=      python-bitcoinlib-0.3.0
-PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-CATEGORIES=    finance net python
-MASTER_SITES=  ${MASTER_SITE_PYPI:=p/python-bitcoinlib/}
-
-MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=      https://github.com/petertodd/python-bitcoinlib
-COMMENT=       Python bitcoin library
-LICENSE=       gnu-lgpl-v2.1 AND mit
-
-USE_LANGUAGES= # none
-
-.include "../../lang/python/egg.mk"
-.include "../../mk/bsd.pkg.mk"
diff -r 336f77f6a897 -r c3bff3cfc73c finance/py-python-bitcoinlib/PLIST
--- a/finance/py-python-bitcoinlib/PLIST        Mon Nov 25 14:07:48 2019 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,87 +0,0 @@
-@comment $NetBSD: PLIST,v 1.3 2015/04/01 02:53:12 rodent Exp $
-${PYSITELIB}/bitcoin/__init__.py
-${PYSITELIB}/bitcoin/__init__.pyc
-${PYSITELIB}/bitcoin/__init__.pyo
-${PYSITELIB}/bitcoin/base58.py
-${PYSITELIB}/bitcoin/base58.pyc
-${PYSITELIB}/bitcoin/base58.pyo
-${PYSITELIB}/bitcoin/bloom.py
-${PYSITELIB}/bitcoin/bloom.pyc
-${PYSITELIB}/bitcoin/bloom.pyo
-${PYSITELIB}/bitcoin/core/__init__.py
-${PYSITELIB}/bitcoin/core/__init__.pyc
-${PYSITELIB}/bitcoin/core/__init__.pyo
-${PYSITELIB}/bitcoin/core/_bignum.py
-${PYSITELIB}/bitcoin/core/_bignum.pyc
-${PYSITELIB}/bitcoin/core/_bignum.pyo
-${PYSITELIB}/bitcoin/core/key.py
-${PYSITELIB}/bitcoin/core/key.pyc
-${PYSITELIB}/bitcoin/core/key.pyo
-${PYSITELIB}/bitcoin/core/script.py
-${PYSITELIB}/bitcoin/core/script.pyc
-${PYSITELIB}/bitcoin/core/script.pyo
-${PYSITELIB}/bitcoin/core/scripteval.py
-${PYSITELIB}/bitcoin/core/scripteval.pyc
-${PYSITELIB}/bitcoin/core/scripteval.pyo
-${PYSITELIB}/bitcoin/core/serialize.py
-${PYSITELIB}/bitcoin/core/serialize.pyc
-${PYSITELIB}/bitcoin/core/serialize.pyo
-${PYSITELIB}/bitcoin/messages.py
-${PYSITELIB}/bitcoin/messages.pyc
-${PYSITELIB}/bitcoin/messages.pyo
-${PYSITELIB}/bitcoin/net.py
-${PYSITELIB}/bitcoin/net.pyc
-${PYSITELIB}/bitcoin/net.pyo
-${PYSITELIB}/bitcoin/rpc.py
-${PYSITELIB}/bitcoin/rpc.pyc
-${PYSITELIB}/bitcoin/rpc.pyo
-${PYSITELIB}/bitcoin/tests/__init__.py
-${PYSITELIB}/bitcoin/tests/__init__.pyc
-${PYSITELIB}/bitcoin/tests/__init__.pyo
-${PYSITELIB}/bitcoin/tests/test_base58.py
-${PYSITELIB}/bitcoin/tests/test_base58.pyc
-${PYSITELIB}/bitcoin/tests/test_base58.pyo
-${PYSITELIB}/bitcoin/tests/test_bloom.py
-${PYSITELIB}/bitcoin/tests/test_bloom.pyc
-${PYSITELIB}/bitcoin/tests/test_bloom.pyo
-${PYSITELIB}/bitcoin/tests/test_checkblock.py
-${PYSITELIB}/bitcoin/tests/test_checkblock.pyc
-${PYSITELIB}/bitcoin/tests/test_checkblock.pyo
-${PYSITELIB}/bitcoin/tests/test_core.py
-${PYSITELIB}/bitcoin/tests/test_core.pyc
-${PYSITELIB}/bitcoin/tests/test_core.pyo
-${PYSITELIB}/bitcoin/tests/test_key.py
-${PYSITELIB}/bitcoin/tests/test_key.pyc
-${PYSITELIB}/bitcoin/tests/test_key.pyo
-${PYSITELIB}/bitcoin/tests/test_messages.py
-${PYSITELIB}/bitcoin/tests/test_messages.pyc
-${PYSITELIB}/bitcoin/tests/test_messages.pyo
-${PYSITELIB}/bitcoin/tests/test_net.py
-${PYSITELIB}/bitcoin/tests/test_net.pyc
-${PYSITELIB}/bitcoin/tests/test_net.pyo
-${PYSITELIB}/bitcoin/tests/test_rpc.py
-${PYSITELIB}/bitcoin/tests/test_rpc.pyc
-${PYSITELIB}/bitcoin/tests/test_rpc.pyo
-${PYSITELIB}/bitcoin/tests/test_script.py
-${PYSITELIB}/bitcoin/tests/test_script.pyc
-${PYSITELIB}/bitcoin/tests/test_script.pyo
-${PYSITELIB}/bitcoin/tests/test_scripteval.py
-${PYSITELIB}/bitcoin/tests/test_scripteval.pyc
-${PYSITELIB}/bitcoin/tests/test_scripteval.pyo
-${PYSITELIB}/bitcoin/tests/test_serialize.py
-${PYSITELIB}/bitcoin/tests/test_serialize.pyc
-${PYSITELIB}/bitcoin/tests/test_serialize.pyo
-${PYSITELIB}/bitcoin/tests/test_transactions.py
-${PYSITELIB}/bitcoin/tests/test_transactions.pyc
-${PYSITELIB}/bitcoin/tests/test_transactions.pyo
-${PYSITELIB}/bitcoin/tests/test_wallet.py
-${PYSITELIB}/bitcoin/tests/test_wallet.pyc
-${PYSITELIB}/bitcoin/tests/test_wallet.pyo
-${PYSITELIB}/bitcoin/wallet.py
-${PYSITELIB}/bitcoin/wallet.pyc
-${PYSITELIB}/bitcoin/wallet.pyo
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
diff -r 336f77f6a897 -r c3bff3cfc73c finance/py-python-bitcoinlib/distinfo
--- a/finance/py-python-bitcoinlib/distinfo     Mon Nov 25 14:07:48 2019 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-$NetBSD: distinfo,v 1.5 2015/11/03 00:12:13 agc Exp $
-
-SHA1 (python-bitcoinlib-0.3.0.tar.gz) = d5fbb2ecd75efb965a377fcb2199f11b3446a761
-RMD160 (python-bitcoinlib-0.3.0.tar.gz) = a7654cd739374aa5bad6a55791dd7d8fc9b7cead
-SHA512 (python-bitcoinlib-0.3.0.tar.gz) = ff399863dc0ab90a0c8015eb5b9eb259b47d0e92a319c4db27bfa6ca46a728d2277cb171ca0bf8ecc4af7850157d021f2f51dc7092e659e986fc23094a2649eb
-Size (python-bitcoinlib-0.3.0.tar.gz) = 52259 bytes



Home | Main Index | Thread Index | Old Index