dev-python/python-engineio: Add python-engineio, a python implementation of the Engin...
authorZac Medico <zmedico@gentoo.org>
Mon, 7 Dec 2015 21:13:12 +0000 (13:13 -0800)
committerZac Medico <zmedico@gentoo.org>
Mon, 7 Dec 2015 21:14:33 +0000 (13:14 -0800)
Package-Manager: portage-2.2.26

dev-python/python-engineio/Manifest [new file with mode: 0644]
dev-python/python-engineio/metadata.xml [new file with mode: 0644]
dev-python/python-engineio/python-engineio-0.8.1.ebuild [new file with mode: 0644]

diff --git a/dev-python/python-engineio/Manifest b/dev-python/python-engineio/Manifest
new file mode 100644 (file)
index 0000000..f12a2b0
--- /dev/null
@@ -0,0 +1 @@
+DIST python-engineio-0.8.1.tar.gz 11608 SHA256 82973bcf1c32df594bb78c527d9406f301691ecc5ab93c38fc318c1b0142b9fd SHA512 71a6002753f77440fe118004e7ace11eeb348b2d63274e81fe66e8eace899b8b3f1b8b130f86cedb0d78c995f1f83053ab7811e68fbb6e977072d9491a35b6b7 WHIRLPOOL c2a62848b2a83adb5eea255c60c77d6355053a360d885dacfe117a104974987c9379236c62eed6f496e115c8181428a09ccd51720438b4110902b43c06778450
diff --git a/dev-python/python-engineio/metadata.xml b/dev-python/python-engineio/metadata.xml
new file mode 100644 (file)
index 0000000..cf3c0cb
--- /dev/null
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+       <herd>python</herd>
+       <upstream>
+               <remote-id type="pypi">python-engineio</remote-id>
+               <remote-id type="github">miguelgrinberg/python-engineio</remote-id>
+       </upstream>
+       <maintainer>
+               <email>zmedico@gentoo.org</email>
+       </maintainer>
+</pkgmetadata>
diff --git a/dev-python/python-engineio/python-engineio-0.8.1.ebuild b/dev-python/python-engineio/python-engineio-0.8.1.ebuild
new file mode 100644 (file)
index 0000000..6f1d617
--- /dev/null
@@ -0,0 +1,38 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_4} )
+
+inherit distutils-r1
+
+MY_PN=""
+DESCRIPTION="Python implementation of the Engine.IO realtime server."
+HOMEPAGE="https://${PN}.readthedocs.org/ https://github.com/miguelgrinberg/${PN}/ https://pypi.python.org/pypi/${PN}"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+       dev-python/setuptools[${PYTHON_USEDEP}]
+       test? (
+               dev-python/eventlet[${PYTHON_USEDEP}]
+               dev-python/mock[${PYTHON_USEDEP}]
+               dev-python/pbr[${PYTHON_USEDEP}]
+       )"
+
+# pypi tarball does not contain tests
+RESTRICT="test"
+
+src_prepare() {
+       sed -e 's:pbr<1.7.0:pbr:' -i setup.py || die
+       distutils-r1_src_prepare
+}
+
+python_test() {
+       esetup.py test || die
+}