diff options
author | Patrick Lauer <patrick@gentoo.org> | 2016-06-29 19:26:34 +0200 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2016-06-29 19:40:36 +0200 |
commit | 9d9ef6e9ff8c6c819df5d4ceee90a6dc4a1c4a7b (patch) | |
tree | a3151309be97194bd73033d76ed16a1a9ceae582 /dev-python/socketio-client/socketio-client-0.6.6.ebuild | |
parent | dev-php/pecl-cairo: Replace php5-4 USE with php5-6 (diff) | |
download | gentoo-9d9ef6e9ff8c6c819df5d4ceee90a6dc4a1c4a7b.tar.gz gentoo-9d9ef6e9ff8c6c819df5d4ceee90a6dc4a1c4a7b.tar.bz2 gentoo-9d9ef6e9ff8c6c819df5d4ceee90a6dc4a1c4a7b.zip |
dev-python/socketio-client: Bump
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-python/socketio-client/socketio-client-0.6.6.ebuild')
-rw-r--r-- | dev-python/socketio-client/socketio-client-0.6.6.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/dev-python/socketio-client/socketio-client-0.6.6.ebuild b/dev-python/socketio-client/socketio-client-0.6.6.ebuild new file mode 100644 index 000000000000..e223b49156f1 --- /dev/null +++ b/dev-python/socketio-client/socketio-client-0.6.6.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_{3,4,5}} ) + +inherit distutils-r1 + +MY_PN="socketIO-client" +REPO_PN="socketIO_client" +DESCRIPTION="A socket.io client library for Python" +HOMEPAGE="https://github.com/invisibleroads/${MY_PN}/ https://pypi.python.org/pypi/${MY_PN}" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${REPO_PN}-${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/websocket-client[${PYTHON_USEDEP}]" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( ${RDEPEND} + dev-python/nose[${PYTHON_USEDEP}] + dev-python/coverage[${PYTHON_USEDEP}] + )" + +S="${WORKDIR}/${REPO_PN}-${PV}" + +python_test() { + # https://github.com/invisibleroads/socketIO-client/issues/90 + # This runs the suite but has nill output to the screen + # The bug filed will hopefully yield a more conventional testsuite + + # The import of SocketIO need be made with abs path to run the tests + sed -e 's:from .. import:from socketIO_client import:' \ + -i ${REPO_PN}/tests/__init__.py || die + + "${PYTHON}" ${REPO_PN}/tests/__init__.py || die "Tests failed under ${EPYTHON}" + + # Return to original form for final install + sed -e 's:from socketIO_client import:from .. import:' \ + -i ${REPO_PN}/tests/__init__.py || die +} |