dev-python/python-socketio: Add python-socketio, python implementation of the Socket...
authorZac Medico <zmedico@gentoo.org>
Mon, 7 Dec 2015 21:25:18 +0000 (13:25 -0800)
committerZac Medico <zmedico@gentoo.org>
Mon, 7 Dec 2015 21:25:32 +0000 (13:25 -0800)
Package-Manager: portage-2.2.26

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

diff --git a/dev-python/python-socketio/Manifest b/dev-python/python-socketio/Manifest
new file mode 100644 (file)
index 0000000..a4ac07e
--- /dev/null
@@ -0,0 +1 @@
+DIST python-socketio-0.7.0.tar.gz 10932 SHA256 831095fff02dfed6b53fed858fde06ae00a616b6d73f4830808c8bce330fa19a SHA512 7591c82a43b7beed907d5eb4269b2ed3bc2d0423b9392d092190e64aef0631835ccbaa494762a7acc914ed082884b4e4fdf78f84e1bdcdcc41433fee0746b176 WHIRLPOOL 5bc05e84c9a194516bcbb434978c27b0a71f44e04d4d8a46b23d997b489a28bd7ae89f75a8db46cc4ea92ddaf4a42e43901c0d283a1b198ad43340f645933509
diff --git a/dev-python/python-socketio/metadata.xml b/dev-python/python-socketio/metadata.xml
new file mode 100644 (file)
index 0000000..fadd864
--- /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-socketio</remote-id>
+               <remote-id type="github">miguelgrinberg/python-socketio</remote-id>
+       </upstream>
+       <maintainer>
+               <email>zmedico@gentoo.org</email>
+       </maintainer>
+</pkgmetadata>
diff --git a/dev-python/python-socketio/python-socketio-0.7.0.ebuild b/dev-python/python-socketio/python-socketio-0.7.0.ebuild
new file mode 100644 (file)
index 0000000..1750148
--- /dev/null
@@ -0,0 +1,39 @@
+# 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 Socket.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-1.9.0[${PYTHON_USEDEP}]
+       >=dev-python/python-engineio-0.7.0[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+       dev-python/setuptools[${PYTHON_USEDEP}]
+       test? (
+               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
+}