add pubnub-4.8.0

This commit is contained in:
Andreas Billmeier 2021-01-09 11:11:24 +01:00 committed by Andreas Billmeier
parent 241ddd7ce8
commit b56b439236
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 56 additions and 0 deletions

View File

@ -32,6 +32,9 @@
* update py-canary-0.5.1
* update pytradfri-7.0.6
* bump zha-quirks-0.0.51
* update zigpy-deconz-0.11.1
* bump zigpy-0.29.0
* add pubnub-4.8.0
2020-12-21
* update meteofrance-api-1.0.1

View File

@ -0,0 +1,3 @@
DIST pubnub-4.8.0.tar.gz 59592 BLAKE2B 50381913b23faad3bb41d31f4a88c94b5dfc98bc180ea6d63521076d1baef068d34c093cdada76dd89f04b5cf24ad059963b6e724ab4ac926060960738b33290 SHA512 8670cf3505d3f794c05ae22cd261d7489174a1d40c401182d547483dbe89ef1392c9a45a4a45d3f959312a45843818d68805e5a87a669f24dc122206ca425aca
EBUILD pubnub-4.8.0.ebuild 834 BLAKE2B 43c0b9d094bee20334e18a634b7916948689c795173a8109c418d7b39bda1935f839fe978181a54d31e781d3f49194ce0ed0f64b9a02ebc926ac45eff113cfcc SHA512 01a455e5728780118c3a2c88510cec877447198d3addbdeee9aaea3a886a24b22dc7e153a5d7d24ee97dac3950a8157fedce3df97099bb2710b77ea54ca7d71e
MISC metadata.xml 443 BLAKE2B 29a927e1f63bbff8c24f05b1f83ce30b24a320596505cbc3a28d5af2980fbf1feeec291f34cd6cf70c9713f63748a1bf29424854ec402bf723c4c57b104e6ff5 SHA512 d427462adbc1e89205abb1bfe1b4795fb44092a51e89ac2a5c154ca0c344a95ec2f79e57d66b3e218bbf7b727a7932d2fbce24c28836b39a7b0711df4ef25270

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">pubnub</remote-id>
<maintainer status="unknown">
<email>support@pubnub.com</email>
<name>PubNub</name>
</maintainer>
</upstream>
</pkgmetadata>

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_{6..9} )
inherit distutils-r1
DESCRIPTION="PubNub Real-time push service in the cloud"
HOMEPAGE="http://pubnub.com 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/six-1.10[${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
}