dev-python/python-engineio: Add python-engineio, a python implementation of the Engine.IO realtime server

Package-Manager: portage-2.2.26
This commit is contained in:
Zac Medico
2015-12-07 13:13:12 -08:00
parent fdaffe6a4b
commit 6e61044a7c
3 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST python-engineio-0.8.1.tar.gz 11608 SHA256 82973bcf1c32df594bb78c527d9406f301691ecc5ab93c38fc318c1b0142b9fd SHA512 71a6002753f77440fe118004e7ace11eeb348b2d63274e81fe66e8eace899b8b3f1b8b130f86cedb0d78c995f1f83053ab7811e68fbb6e977072d9491a35b6b7 WHIRLPOOL c2a62848b2a83adb5eea255c60c77d6355053a360d885dacfe117a104974987c9379236c62eed6f496e115c8181428a09ccd51720438b4110902b43c06778450

View File

@@ -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>

View File

@@ -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
}