summaryrefslogtreecommitdiff
path: root/dev-python/socketio-client/socketio-client-0.7.2.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-01-27 12:49:26 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-01-27 12:49:26 +0000
commita2c276c844380a2ad46aaefe38e41f38ecb97fc0 (patch)
treee80d6d9ca09c1321dbf07062d377b2af7f0da2d3 /dev-python/socketio-client/socketio-client-0.7.2.ebuild
parente227e016f37ff9300baa89324fbc8f408f4c042f (diff)
downloadbaldeagleos-repo-a2c276c844380a2ad46aaefe38e41f38ecb97fc0.tar.gz
baldeagleos-repo-a2c276c844380a2ad46aaefe38e41f38ecb97fc0.tar.xz
baldeagleos-repo-a2c276c844380a2ad46aaefe38e41f38ecb97fc0.zip
Adding metadata
Diffstat (limited to 'dev-python/socketio-client/socketio-client-0.7.2.ebuild')
-rw-r--r--dev-python/socketio-client/socketio-client-0.7.2.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/dev-python/socketio-client/socketio-client-0.7.2.ebuild b/dev-python/socketio-client/socketio-client-0.7.2.ebuild
deleted file mode 100644
index ba8404ab7eb5..000000000000
--- a/dev-python/socketio-client/socketio-client-0.7.2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7,8,9,10,11} )
-
-inherit distutils-r1
-
-MY_PN="socketIO-client"
-DESCRIPTION="A socket.io client library for Python"
-HOMEPAGE="https://github.com/invisibleroads/socketIO-client/ https://pypi.org/project/socketIO-client/"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-python/six[${PYTHON_USEDEP}]
- >=dev-python/requests-2.7.0[${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}/${MY_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 socketIO_client/tests/__init__.py || die
- sed -e 's:from ..exceptions import:from socketIO_client.exceptions import:' \
- -i socketIO_client/tests/__init__.py || die
-
- "${PYTHON}" socketIO_client/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 socketIO_client/tests/__init__.py || die
- sed -e 's:from socketIO_client.exceptions import:from ..exceptions import:' \
- -i socketIO_client/tests/__init__.py || die
-}