bump python-join-api-0.0.6

This commit is contained in:
Andreas Billmeier 2020-07-11 11:13:47 +02:00 committed by Andreas Billmeier
parent e5d2be9fb3
commit 7782134d00
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 33 additions and 0 deletions

View File

@ -17,6 +17,7 @@
* bump pyps4-2ndscreen-1.1.1
* bump teslajsonpy-0.9.2
* bump python-miio-0.5.2.1
* bump python-join-api-0.0.6
2020-06-29
* bump aioguardian-1.0.0

View File

@ -1,3 +1,5 @@
DIST python-join-api-0.0.4.tar.gz 2358 BLAKE2B 483e6e424006fa5ce93b3310cca107aa1feef0590f042ca56836c7a143057b84222ceebada418f7ff4f113b841ebe5582690844845746a7b071f8991e08966b4 SHA512 895b65f75a416b4d282323e5faa0e7dc08d7d1fa4e6c532e99f051266e5b74d1d05a0b2eede8f9a7dd53ce7e3b1db1865ef64bdea0a3235b08b98241f7dba86a
DIST python-join-api-0.0.6.tar.gz 2876 BLAKE2B c4d64dcda614dda887c246f2a02ea26c92048329c8d770672a1005072907e59075c05aff9a13c2e13e14b180e4223eb38989f1958fc6d2a5298a11b64ba1cb02 SHA512 d4c98b4a708e4dbf574da80f36b9b0db04a32443555753992bb94a67bd3cce43322fe87b236c432217bec5e2615646165aadd56d014e7f4f425a2dc4fa64ee74
EBUILD python-join-api-0.0.4.ebuild 746 BLAKE2B 879ce52a683c473f218b8e77cd5bcd8a2a41b851ce0532f93ac409591fea851e13f7269c0dc2a5d949610ec3887b787874d4151a37de2fb84ba9f25bfa7cb25f SHA512 004eff0d52331282d60543b02fb5667cce1e3e77bb2c16201ee62b1b19a6ff0df56ff762e3f155ffb14597057059fd1a57d38db3b7be30a48d557ff112921a74
EBUILD python-join-api-0.0.6.ebuild 746 BLAKE2B 879ce52a683c473f218b8e77cd5bcd8a2a41b851ce0532f93ac409591fea851e13f7269c0dc2a5d949610ec3887b787874d4151a37de2fb84ba9f25bfa7cb25f SHA512 004eff0d52331282d60543b02fb5667cce1e3e77bb2c16201ee62b1b19a6ff0df56ff762e3f155ffb14597057059fd1a57d38db3b7be30a48d557ff112921a74
MISC metadata.xml 458 BLAKE2B ced6e1176b862fed126b9697e43160477eb9e7d3462440b88047f9bc8f8f6e03984ef27ea0920d386b62a3d786bd7ef7e663d754c109c8fc472c736d98a6a0ed SHA512 fd7ce8574b1f9124bb340c637a28540a9fb659056b5c08a713ba0470aca2ad68a93d3a7b27431db51f7d850792ce17e71d7f92525f81e2f2c8a550f94fb8790e

View File

@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Python API for interacting with Join by joaoapps."
HOMEPAGE="https://github.com/nkgilley/python-join-api https://pypi.org/project/python-join-api/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/requests-2.0[${PYTHON_USEDEP}]"
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
}