diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 6bd6bd375..271dc0413 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -42,6 +42,7 @@ * aioazurdevops fix deps * bump ovoenergy-1.1.10 * add zeep-3.4.0-r1 + * update socketio-client-nexus-0.7.6 2020-09-05 * repair iglo-1.2.7, drop iglo-1.2.5, abondoned anyway: https://github.com/jesserockz/python-iglo/issues/1#issuecomment-558479023 diff --git a/dev-python/socketio-client-nexus/Manifest b/dev-python/socketio-client-nexus/Manifest new file mode 100644 index 000000000..31bc7d210 --- /dev/null +++ b/dev-python/socketio-client-nexus/Manifest @@ -0,0 +1,3 @@ +DIST socketio-client-nexus-0.7.6.tar.gz 20128 BLAKE2B 84b032fda25a7aec40a4223f18d446da563a4c46054e79bfd38d1871233c88a66cb0213e3e825e5c91f6f587e671f5cfed75465c6f6895a84e1f2409facd330c SHA512 5c0301118beba684e1220c8984052e619d29037ec2c819eec13ac2ec4120025c85fb5b410285ee8466a105330f4a47b87f80116d7ff292c6b3e47a19eaa46702 +EBUILD socketio-client-nexus-0.7.6.ebuild 929 BLAKE2B 34dc6585cf9b38c448581dc2e4fcf61d7fb38f41efea1dcf48543ac23753076af78fc419ba4e25bcc718c0e82dbca7023d88b2120e665700b322b80c15a12b95 SHA512 9e91eea227a449ef4a8f0ca8ef060d4dc70342ed9d95aa35c95e681ae948bea6e6b2eee6852415dd8d6b1960d384db327a710d518adc1c6a937a362ae6b9564e +MISC metadata.xml 469 BLAKE2B dfe0420263647444b23a67ce14da62d7430b9f2eb49d8273cbf91efd104d2850f12bfa83aaf61e6a6aaed9987640f0c7d71fb16b5c50773c6e3587b154e1d495 SHA512 4fb93ca0a2d3e27565e658ba0c0eb22043d2d93aea9ab73ea7bf5f70b225f9fd4537395cf77b4a25e6691625795e4879f06ee660faa58a06bedde40fca326995 diff --git a/dev-python/socketio-client-nexus/metadata.xml b/dev-python/socketio-client-nexus/metadata.xml new file mode 100644 index 000000000..ea6b1bbac --- /dev/null +++ b/dev-python/socketio-client-nexus/metadata.xml @@ -0,0 +1,15 @@ + + + + + b@edevau.net + Andreas Billmeier + + + socketIO-client-nexus + + rhh@crosscompute.com + Roy Hyunjin Han + + + diff --git a/dev-python/socketio-client-nexus/socketio-client-nexus-0.7.6.ebuild b/dev-python/socketio-client-nexus/socketio-client-nexus-0.7.6.ebuild new file mode 100644 index 000000000..4b1cce3b1 --- /dev/null +++ b/dev-python/socketio-client-nexus/socketio-client-nexus-0.7.6.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{6..8} ) + +inherit distutils-r1 + +DESCRIPTION="A socket.io client library" +HOMEPAGE="https://github.com/nexus-devs/socketIO-client https://pypi.org/project/socketIO-client-nexus/" +MY_PN="socketIO-client-nexus" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +DOCS="README.rst CHANGES.rst" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/websocket-client[${PYTHON_USEDEP}]" +BDEPEND="${REDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +}