diff options
author | Frederic PAUT <frederic.paut@linux.intel.com> | 2013-10-03 13:31:41 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-10-05 12:40:35 +0200 |
commit | 7a541bd4baab7e6f23f998fcf6509ee2817b018b (patch) | |
tree | 430c04ad4c163a183d141ff41806508c6eca1d92 | |
parent | 68f092aa8bb3499042138e0b010ad5b64558b8aa (diff) | |
download | meta-openembedded-7a541bd4baab7e6f23f998fcf6509ee2817b018b.tar.gz |
python-autobahn: Add recipe for 0.5.14
AutobahnPython provides a WebSocket (RFC6455, Hybi-10 to -17, Hixie-76)
framework for creating WebSocket-based clients and servers.
AutobahnPython also includes an implementation of WAMP
(The WebSockets Application Messaging Protocol), a light-weight,
asynchronous RPC/PubSub over JSON/WebSocket protocol.
Signed-off-by: Frederic PAUT <frederic.paut@linux.intel.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-devtools/python/python-autobahn_0.5.14.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/python/python-autobahn_0.5.14.bb b/meta-oe/recipes-devtools/python/python-autobahn_0.5.14.bb new file mode 100644 index 000000000..0208c8b50 --- /dev/null +++ b/meta-oe/recipes-devtools/python/python-autobahn_0.5.14.bb | |||
@@ -0,0 +1,18 @@ | |||
1 | DESCRIPTION = "AutobahnPython provides a WebSocket (RFC6455, Hybi-10 to -17, Hixie-76) framework for creating WebSocket-based clients and servers. \ | ||
2 | AutobahnPython also includes an implementation of WAMP (The WebSockets Application Messaging Protocol), a light-weight, \ | ||
3 | asynchronous RPC/PubSub over JSON/WebSocket protocol." | ||
4 | HOMEPAGE = "http://autobahn.ws/python" | ||
5 | SECTION = "console/network" | ||
6 | |||
7 | LICENSE = "Apache-2.0" | ||
8 | LIC_FILES_CHKSUM = " file://autobahn/__init__.py;beginline=1;endline=17;md5=81964ceb3ab93bfb5e8cfbcd26f3af9c" | ||
9 | |||
10 | SRC_URI = "https://pypi.python.org/packages/source/a/autobahn/autobahn-${PV}.zip" | ||
11 | SRC_URI[md5sum] = "e2c80ba3e46428b32837537609d4d582" | ||
12 | |||
13 | S = "${WORKDIR}/autobahn-${PV}" | ||
14 | |||
15 | inherit setuptools | ||
16 | |||
17 | RDEPENDS_${PN} = "python python-pprint python-twisted-protocols python-netserver python-twisted-web" | ||
18 | |||