update pubnub-5.1.3

This commit is contained in:
Andreas Billmeier 2021-05-14 20:41:05 +02:00 committed by Andreas Billmeier
parent 5df5149c1e
commit 8af5e5956d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 38 additions and 0 deletions

View File

@ -8,6 +8,7 @@
* update adb-shell-0.3.1
* update python-socketio-4.6.0-r1
* bump androidtv-0.0.58
* update pubnub-5.1.3
2021-04-24 homeassistant-2021.4.6
* bump aiohomekit-0.2.61

View File

@ -1,3 +1,5 @@
DIST pubnub-4.8.0.tar.gz 59592 BLAKE2B 50381913b23faad3bb41d31f4a88c94b5dfc98bc180ea6d63521076d1baef068d34c093cdada76dd89f04b5cf24ad059963b6e724ab4ac926060960738b33290 SHA512 8670cf3505d3f794c05ae22cd261d7489174a1d40c401182d547483dbe89ef1392c9a45a4a45d3f959312a45843818d68805e5a87a669f24dc122206ca425aca
DIST pubnub-5.1.3.tar.gz 54689 BLAKE2B 87ae6dbd5e607cca78321e87e96e148550e04f1e1f1caa7cd528be1ebe6eca1d0ffa109b3cbb1df7d7c0cd7a41f3e0829c98a6226c1598ca6edc5edde9604878 SHA512 e218e947217be9eafa8515ae2a2bc99a903a1868d6874acfab4c777d9354f29ac280f915c899729c14201a62331a1c12ffd7f87dbbfd588ba3571450bcb8fa38
EBUILD pubnub-4.8.0.ebuild 834 BLAKE2B 43c0b9d094bee20334e18a634b7916948689c795173a8109c418d7b39bda1935f839fe978181a54d31e781d3f49194ce0ed0f64b9a02ebc926ac45eff113cfcc SHA512 01a455e5728780118c3a2c88510cec877447198d3addbdeee9aaea3a886a24b22dc7e153a5d7d24ee97dac3950a8157fedce3df97099bb2710b77ea54ca7d71e
EBUILD pubnub-5.1.3.ebuild 865 BLAKE2B 3029b8d3294a01c69551cd02976c4a9f463494fecc06574f9d2ec55bed9e1ff14ea0fe913cbb069718c253715b7e4899d0bd3e4ee8b427cb0a1980abdd851a5d SHA512 ecea87c919883e49f63311b5e11edda6c85974b5199127f9e0af15828445dd4713cc59ea39ba6c520f06f5e330c8ee7a757e87352a98d645a8f29c57daf795e8
MISC metadata.xml 443 BLAKE2B 29a927e1f63bbff8c24f05b1f83ce30b24a320596505cbc3a28d5af2980fbf1feeec291f34cd6cf70c9713f63748a1bf29424854ec402bf723c4c57b104e6ff5 SHA512 d427462adbc1e89205abb1bfe1b4795fb44092a51e89ac2a5c154ca0c344a95ec2f79e57d66b3e218bbf7b727a7932d2fbce24c28836b39a7b0711df4ef25270

View File

@ -0,0 +1,35 @@
# 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="PubNub Real-time push service in the cloud"
HOMEPAGE="http://pubnub.com https://github.com/pubnub/python/ https://pypi.org/project/pubnub/"
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=""
RDEPEND=">=dev-python/pycryptodomex-3.3[${PYTHON_USEDEP}]
>=dev-python/requests-2.4[${PYTHON_USEDEP}]
dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/cbor2[${PYTHON_USEDEP}]"
BDEPEND="
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
}