jsonrpclib: add recipe for jsonrpclib

- the git version was choosen because it has
  some fixes for newer python versions

- test where done with the test file from the github
  repository and some unixsocket tests failed

Related: SYS#1082
This commit is contained in:
Henning Heinold 2015-04-10 19:37:01 +02:00 committed by Holger Hans Peter Freyther
parent dd3b1def75
commit 8ba007f078
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
SUMMARY = "Implementation of the JSON-RPC specification for python"
SECTION = "devel/python"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=cdbf8d74b765504fbdf8e154bb4458a1"
PV = "0.1.3+git${SRCPV}"
PR = "r0"
SRCREV = "b59217c971603a30648b041c84f85159afb2ec31"
SRC_URI = "git://github.com/joshmarshall/jsonrpclib.git"
S = "${WORKDIR}/git"
inherit distutils
# python-threading is needed for SimpleJSONRPCServer
RDEPENDS_${PN} = "\
python-json \
python-xmlrpc \
python-threading \
"