update directv-0.4.0

This commit is contained in:
Andreas Billmeier 2020-11-17 20:13:55 +01:00 committed by Andreas Billmeier
parent 2c3f3fc20f
commit 12c7396d53
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 0 deletions

View File

@ -11,6 +11,7 @@
* bump home-assistant-frontend-20201111.1, remove unused
* bump aioguardian-1.0.4
* bump bimmer_connected-0.7.13
* update directv-0.4.0
2020-11-15 homeassistant-0.118.0_beta2
* update env-canada-0.2.2, env-canada-0.2.4, fix env-canada-0.2.0 deps

View File

@ -1,3 +1,5 @@
DIST directv-0.3.0.tar.gz 19111 BLAKE2B 63340a12fb08ed49367be7bed6171ae768409dedf244959c554619f889745a87d762043a0b085d24d38e8e1d0c4ad01796d737bef099c27aded900deaf5c5c17 SHA512 88badd331829998b39c3b666ec6b4b66c5c5ceeb203a6a80c8b94be522753530a5272d290f7b306c44cecade32ade77f9c1e28f1926608879d70f6c84a21199f
DIST directv-0.4.0.tar.gz 7153 BLAKE2B 0f6d3c1fe8c1d9428780001c5895c6ae8b4d9a7968492407f223de860ffd8146f9c10cdab641980366e72eb83c1d8be0a2d4c384f5bced8c1d933cec0f77b6d7 SHA512 e8c16675bcba3e5b0f7278f2272b6e5cf47b3a211de80616d326da5bdedeba1f8ef629d8227d9e343f008f2675ac225faf89d0faec9dd3b3e34c2003c79bcff1
EBUILD directv-0.3.0.ebuild 971 BLAKE2B 6d6089db745906e8c7a85bc2cfa247673ed3307677e2add78be9f7276ae9a77a3da4738d1bad44171b46fa45c283b0c9f75c8ece41e42fbd69d8a5e2c0eefe61 SHA512 2db2e3170876969a9185629fded5e5f1d8b633fb1f7d0fef324855c74096ce717883608266060ef25f6611c599721f6093f03edbde18a7ddf76fd34db80eaec1
EBUILD directv-0.4.0.ebuild 804 BLAKE2B 4d0a109660137e8978e8ebb029343f0fb3d6129129b9688baf1de1dfd82c170e2b88bc13a42a967493c4418213b0d046eb7367644e559ec48f5c01fa63f290eb SHA512 1fd1d5a385bc7267eaf47e32386900056bad192152ce2aa2e42751398242626033d59a63e9ba9d538637134148a930fa2e45daec221fb67440ab67bf04a37f52
MISC metadata.xml 460 BLAKE2B 784527ea7b0319a1da5f3cc0986835643d2dd610f98fa558a1ac9eae7d537f8ccf8a12217e3f5eb16da0ed1cc8e5d0aa722a81d885fed4eea72139b7735d4d48 SHA512 dfed4fd4f44af156780c1b4231ef5a1cc7362051a82fbd77db5ffbd9a429cc244223732ed416f688edde107b28ce9c11ff4eb67584f368cca0d911cab1fe0fc2

View File

@ -0,0 +1,33 @@
# 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="Asynchronous Python client for DirecTV (SHEF)."
HOMEPAGE="https://github.com/ctalkington/python-directv https://pypi.org/project/directv/"
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.md"
RDEPEND=">=dev-python/aiohttp-3.6.2[${PYTHON_USEDEP}]
>=dev-python/yarl-1.4.2[${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
}