From 8ba007f078bd8c87bb24a9d303873e6d29d83644 Mon Sep 17 00:00:00 2001 From: Henning Heinold Date: Fri, 10 Apr 2015 19:37:01 +0200 Subject: [PATCH] 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 --- recipes-extra/python/python-jsonrpclib_git.bb | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 recipes-extra/python/python-jsonrpclib_git.bb diff --git a/recipes-extra/python/python-jsonrpclib_git.bb b/recipes-extra/python/python-jsonrpclib_git.bb new file mode 100644 index 0000000..867b7b4 --- /dev/null +++ b/recipes-extra/python/python-jsonrpclib_git.bb @@ -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 \ +"