bump aiokef-0.2.5

This commit is contained in:
Andreas Billmeier 2020-01-14 22:44:28 +01:00
parent 56c2fa57d9
commit 41b43bd162
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 34 additions and 0 deletions

View File

@ -1,6 +1,7 @@
2020-01-14
* bump fritzconnection-1.2.0
* bump teslajsonpy-0.2.3
* bump aiokef-0.2.5
2020-01-13
* bump aiopylgtv-0.2.5

View File

@ -1,3 +1,5 @@
DIST aiokef-0.2.2.tar.gz 11897 BLAKE2B 893f2373dd2d389921c80ae68d2c9b09cb17c214aab409445181bcf3cb6c0cbac4c91cc354c81e72d35d8221f17bf16834a93888d23ccd68ac03409cdcd737c5 SHA512 8071f04703757c55ae3f51198cd1891cc18407e43ea894fdedabbeabd354795567d4796152acdd77f790cab11e826417f2e8b860ca1dffb86dc802a50dfaf87e
DIST aiokef-0.2.5.tar.gz 12300 BLAKE2B 5339dcdd3ca651c0bdd1bfcd1448e81742c876c7b438d3a4f4ac1ba14e12367decece564ebcebcc8901bea9a8f57cfa74a0ecfe305d63557347b0014ba613e5d SHA512 3f28aff0689d2a7f0fd25610a909aed5a5a8691b832a7f3b5aad5b55f3774868624149cdf1a8c5d4bd76b25842084141c15105993b0f0160547a8d9870fc7ee4
EBUILD aiokef-0.2.2.ebuild 770 BLAKE2B 16c847067e05d4c0785925177a884c076148e07492dba9cf219054841f9495d71bfccb8939649bbf8d4bb43e102578d61e5f255bd1e52073ffab502e6a7c4f10 SHA512 1620319496ab30de5f207c53dee0dab79cc69f32f8ca957c5688d79bf2ed33f28a62daadb8102fcc84dba4467783177dd1dfc0b2c0b0ac34b092bdbefc2a471c
EBUILD aiokef-0.2.5.ebuild 770 BLAKE2B 16c847067e05d4c0785925177a884c076148e07492dba9cf219054841f9495d71bfccb8939649bbf8d4bb43e102578d61e5f255bd1e52073ffab502e6a7c4f10 SHA512 1620319496ab30de5f207c53dee0dab79cc69f32f8ca957c5688d79bf2ed33f28a62daadb8102fcc84dba4467783177dd1dfc0b2c0b0ac34b092bdbefc2a471c
MISC metadata.xml 427 BLAKE2B c4f95427643bcbcd91b8a83aa6b863de4513e9c9aa9021b2fef30ca13532bd40d8c9bc0dc6e9c9b53fd81e2c7756905e0af11d8ffecc08ea70ba5d0133a1e377 SHA512 aaf4dbb56648772573faf99c676fb4fbf50b0c67d788ee65bd0d0717e110bbfb49912dd50c36d4567f787b700e582757dea780bb5115ee199a34923b16389e72

View File

@ -0,0 +1,31 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="A module for asynchronously interacting with KEF wireless speakers."
HOMEPAGE="https://github.com/basnijholt/aiokef https://pypi.org/project/aiokef/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/tenacity[${PYTHON_USEDEP}]
dev-python/typing[${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
}