Skip to content

Commit 3d55e0c

Browse files
authored
Merge pull request #2 from sknsean/pythonrecipes
first batch of python stuff
2 parents 9537e15 + ff02323 commit 3d55e0c

33 files changed

+359
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
SUMMARY = "jinja2 template renderer for aiohttp.web (http server for asyncio)"
2+
HOMEPAGE = "https://github.com/aio-libs/aiohttp_jinja2/"
3+
LICENSE = "Apache-2.0"
4+
LIC_FILES_CHKSUM = "file://LICENSE;md5=511145a8d0be7810f7edde87ec055a9b"
5+
6+
inherit pypi
7+
8+
RDEPENDS_${PN} = " \
9+
${PYTHON_PN}-jinja2 (>=2.7) \
10+
${PYTHON_PN}-aiohttp (>=0.20) \
11+
"
12+
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
DESCRIPTION = "WebSocket client & server library, WAMP real-time framework"
2+
HOMEPAGE = "http://crossbar.io/autobahn"
3+
LICENSE = "MIT"
4+
LIC_FILES_CHKSUM = "file://LICENSE;md5=97c0bda20ad1d845c6369c0e47a1cd98"
5+
6+
inherit pypi
7+
8+
RDEPENDS_${PN} = " \
9+
${PYTHON_PN}-twisted \
10+
${PYTHON_PN}-zopeinterface \
11+
${PYTHON_PN}-py-ubjson \
12+
${PYTHON_PN}-cbor \
13+
${PYTHON_PN}-u-msgpack-python \
14+
${PYTHON_PN}-lz4 \
15+
${PYTHON_PN}-snappy \
16+
${PYTHON_PN}-pyopenssl \
17+
${PYTHON_PN}-txaio \
18+
${PYTHON_PN}-six \
19+
"
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
DESCRIPTION = "An implementation of RFC 7049 - Concise Binary Object Representation (CBOR)."
2+
HOMEPAGE = "https://bitbucket.org/bodhisnarkva/cbor"
3+
LICENSE = "Apache-2.0"
4+
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
5+
6+
inherit pypi
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
DESCRIPTION = "Graphviz protocol implementation"
2+
HOMEPAGE = "https://github.com/xflr6/graphviz"
3+
LICENSE = "MIT"
4+
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
5+
6+
PYPI_PACKAGE_EXT = "zip"
7+
8+
inherit pypi
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
DESCRIPTION = "python bindings for the lz4 compression library by Yann Collet"
2+
HOMEPAGE = "https://github.com/python-lz4/python-lz4"
3+
LICENSE = "BSD-3-Clause"
4+
LIC_FILES_CHKSUM = "file://LICENSE;md5=6231efa4dd4811e62407314d90a57573"
5+
6+
DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
7+
8+
inherit pypi
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
DESCRIPTION = "Universal Binary JSON encoder/decoder"
2+
HOMEPAGE = "https://github.com/Iotic-Labs/py-ubjson"
3+
LICENSE = "Apache-2.0"
4+
LIC_FILES_CHKSUM = "file://LICENSE;md5=383b9e6c3f9d1386a4eea17792291d91"
5+
6+
inherit pypi
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
DESCRIPTION = "Python library for the snappy compression library from Google"
2+
HOMEPAGE = "http://github.com/andrix/python-snappy"
3+
LICENSE = "BSD-3-Clause"
4+
LIC_FILES_CHKSUM = "file://LICENSE;md5=b3090152f53ee19f6a7b64b1a36384fb"
5+
6+
inherit pypi
7+
8+
PYPI_PACKAGE = "python-snappy"
9+
10+
DEPENDS += "snappy"
11+
RDEPENDS_${PN} += "snappy"
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
DESCRIPTION = "Compatibility API between asyncio/Twisted/Trollius"
2+
HOMEPAGE = "https://github.com/crossbario/txaio"
3+
LICENSE = "MIT"
4+
LIC_FILES_CHKSUM = "file://LICENSE;md5=97c0bda20ad1d845c6369c0e47a1cd98"
5+
6+
inherit pypi
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
DESCRIPTION = "A portable, lightweight MessagePack serializer and deserializer written in pure Python."
2+
HOMEPAGE = "https://github.com/vsergeev/u-msgpack-python"
3+
LICENSE = "MIT"
4+
LIC_FILES_CHKSUM = "file://LICENSE;md5=dd8d2daf6a42bad469f04d7e8f4647fb"
5+
6+
inherit pypi
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
DESCRIPTION = "XMODEM protocol implementation"
2+
HOMEPAGE = "https://github.com/tehmaze/xmodem"
3+
LICENSE = "MIT"
4+
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
5+
6+
inherit pypi

0 commit comments

Comments
 (0)