mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
dev-python/python-socketio: Add python-socketio, python implementation of the Socket.IO realtime server
Package-Manager: portage-2.2.26
This commit is contained in:
1
dev-python/python-socketio/Manifest
Normal file
1
dev-python/python-socketio/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST python-socketio-0.7.0.tar.gz 10932 SHA256 831095fff02dfed6b53fed858fde06ae00a616b6d73f4830808c8bce330fa19a SHA512 7591c82a43b7beed907d5eb4269b2ed3bc2d0423b9392d092190e64aef0631835ccbaa494762a7acc914ed082884b4e4fdf78f84e1bdcdcc41433fee0746b176 WHIRLPOOL 5bc05e84c9a194516bcbb434978c27b0a71f44e04d4d8a46b23d997b489a28bd7ae89f75a8db46cc4ea92ddaf4a42e43901c0d283a1b198ad43340f645933509
|
||||
12
dev-python/python-socketio/metadata.xml
Normal file
12
dev-python/python-socketio/metadata.xml
Normal 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-socketio</remote-id>
|
||||
<remote-id type="github">miguelgrinberg/python-socketio</remote-id>
|
||||
</upstream>
|
||||
<maintainer>
|
||||
<email>zmedico@gentoo.org</email>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
39
dev-python/python-socketio/python-socketio-0.7.0.ebuild
Normal file
39
dev-python/python-socketio/python-socketio-0.7.0.ebuild
Normal file
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user