diff options
author | loader <loader@FreeBSD.org> | 2015-08-07 13:22:00 +0800 |
---|---|---|
committer | loader <loader@FreeBSD.org> | 2015-08-07 13:22:00 +0800 |
commit | af11e04bf721231328ab347a8f1c58bec93bcbf8 (patch) | |
tree | 751c502add86028fb3ed8a75e4e868b5a1ed3f61 /net | |
parent | 629cbef107bd76cfda9f0e48c47e18f5ed30f84f (diff) | |
download | freebsd-ports-gnome-af11e04bf721231328ab347a8f1c58bec93bcbf8.tar.gz freebsd-ports-gnome-af11e04bf721231328ab347a8f1c58bec93bcbf8.tar.zst freebsd-ports-gnome-af11e04bf721231328ab347a8f1c58bec93bcbf8.zip |
[NEW] net/py-python-bitcoinrpc: Enhanced version of python-jsonrpc
for use with Bitcoin
AuthServiceProxy is an improved version of python-jsonrpc.
It includes the following generic improvements:
- HTTP connections persist for the life of the AuthServiceProxy object
- sends protocol 'version', per JSON-RPC 1.1
- sends proper, incrementing 'id'
- uses standard Python json lib
- can optionally log all RPC calls and results
- JSON-2.0 batch support
It also includes the following bitcoin-specific details:
- sends Basic HTTP authentication headers
- parses all JSON numbers that look like floats as Decimal,
and serializes Decimal values to JSON-RPC connections.
WWW: https://github.com/jgarzik/python-bitcoinrpc
Approved by: koobs
Differential Revision: https://reviews.freebsd.org/D3317
Diffstat (limited to 'net')
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/py-python-bitcoinrpc/Makefile | 21 | ||||
-rw-r--r-- | net/py-python-bitcoinrpc/distinfo | 2 | ||||
-rw-r--r-- | net/py-python-bitcoinrpc/pkg-descr | 18 |
4 files changed, 42 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index 3f5c4d5182ac..d71e9a2e8ebf 100644 --- a/net/Makefile +++ b/net/Makefile @@ -950,6 +950,7 @@ SUBDIR += py-pysendfile SUBDIR += py-pysocks SUBDIR += py-pysphere + SUBDIR += py-python-bitcoinrpc SUBDIR += py-pyvmomi SUBDIR += py-pyzmq SUBDIR += py-qt4-network diff --git a/net/py-python-bitcoinrpc/Makefile b/net/py-python-bitcoinrpc/Makefile new file mode 100644 index 000000000000..4e9dff5bda3e --- /dev/null +++ b/net/py-python-bitcoinrpc/Makefile @@ -0,0 +1,21 @@ +# Created by: loader <loader@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= python-bitcoinrpc +PORTVERSION= 0.3.0.20150403 +CATEGORIES= net finance python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= loader@FreeBSD.org +COMMENT= Enhanced version of python-jsonrpc for use with Bitcoin + +LICENSE= LGPL20 + +USE_GITHUB= yes +GH_ACCOUNT= jgarzik +GH_TAGNAME= f607fe7 + +USES= python +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> diff --git a/net/py-python-bitcoinrpc/distinfo b/net/py-python-bitcoinrpc/distinfo new file mode 100644 index 000000000000..59aeddb074a2 --- /dev/null +++ b/net/py-python-bitcoinrpc/distinfo @@ -0,0 +1,2 @@ +SHA256 (jgarzik-python-bitcoinrpc-0.3.0.20150403-f607fe7_GH0.tar.gz) = f8ea6c2b33bdf70b6dcc25a915f6a81241be0869ae612b24036b503f3f52a2ed +SIZE (jgarzik-python-bitcoinrpc-0.3.0.20150403-f607fe7_GH0.tar.gz) = 3942 diff --git a/net/py-python-bitcoinrpc/pkg-descr b/net/py-python-bitcoinrpc/pkg-descr new file mode 100644 index 000000000000..065599797b57 --- /dev/null +++ b/net/py-python-bitcoinrpc/pkg-descr @@ -0,0 +1,18 @@ +AuthServiceProxy is an improved version of python-jsonrpc. + +It includes the following generic improvements: + +- HTTP connections persist for the life of the AuthServiceProxy object +- sends protocol 'version', per JSON-RPC 1.1 +- sends proper, incrementing 'id' +- uses standard Python json lib +- can optionally log all RPC calls and results +- JSON-2.0 batch support + +It also includes the following bitcoin-specific details: + +- sends Basic HTTP authentication headers +- parses all JSON numbers that look like floats as Decimal, + and serializes Decimal values to JSON-RPC connections. + +WWW: https://github.com/jgarzik/python-bitcoinrpc |