update python-socketio-4.6.0-r1

This commit is contained in:
Andreas Billmeier 2021-05-14 20:33:02 +02:00 committed by Andreas Billmeier
parent 7cc053491b
commit bfa1e5ffe5
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 34 additions and 0 deletions

View File

@ -6,6 +6,7 @@
* bump pyairvisual-5.0.8
* bump aioambient-1.2.4
* update adb-shell-0.3.1
* update python-socketio-4.6.0-r1
2021-04-24 homeassistant-2021.4.6
* bump aiohomekit-0.2.61

View File

@ -1,3 +1,4 @@
DIST python-socketio-4.6.0.tar.gz 41016 BLAKE2B 62f37791bd3a0ad268c275b3455fa736cd7d2522890878ca400c1c51b051c8898039083a29073ae29151ac79efcd3343f41e0880bbe313c14b25c480945075e6 SHA512 bc3b6b4b4f8276109e8839cac8e42005b201beace745b7fb1218766013d329ab7926f17847710c1d71dbbd4376f497b0ea1c5a048f26fccefab64e322c816068
EBUILD python-socketio-4.6.0-r1.ebuild 700 BLAKE2B 3df79264aa133d000dd2a72bcbd9c0f61bade3ede67b648385b817d122d5516a62430a2da7db8bafc7ba380fad8eca30d5324af519e2d8c1f207749f8c51109c SHA512 b046a06ebbf94641724725b5489b8d8be1c34ed01df6dd4345d73e92edb2bb3e33ba17ba8c2f9fabe83434daa729091a683810b3942551987ff868081fb21e7d
EBUILD python-socketio-4.6.0.ebuild 681 BLAKE2B b32f7b9421185e16b40283442c33ae05417fde6e7a0e3b3e0240ef00bc100ee43b5f00a7e77c243a5bb0651386b398698de78790ae81998b2b2ec09d4acfd4ce SHA512 4b70aa03f3e8b7aeb3dd2ae877682f8100ec5f14134c35687e32296c7a73e4ec351c487eed0e3eec32c82aa45bbf77f988e4d1402a481e24d4bc8065cc400554
MISC metadata.xml 469 BLAKE2B 95ad6838d9c1dc6460d93ab7ec3ea581071e93593368763a811d067ca0cc746f3237255e72b17cb76d0cf1b7c04bf5be886b2a599c471ac836b250471add9d05 SHA512 d3c82c941ee59d34aec93bf65bd6cd8f8941bb0a4b45dd75fea12ee7c8bfd6a2fe5bb9f69c39734bd5952f8c68e2299f906325da7eef71ded674fff8a4fca392

View File

@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
DESCRIPTION="Socket.IO server"
HOMEPAGE="https://github.com/miguelgrinberg/python-socketio/ https://pypi.org/project/python-socketio/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND=""
DEPEND="${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
}