dev-python/roonapi: add 0.1.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-01-08 13:55:38 +01:00 committed by Andreas Billmeier
parent a8caf17d4e
commit d54180bc5b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 38 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST roonapi-0.1.1.tar.gz 18443 BLAKE2B 9debe6a8c55e10113c5afec3f3ddf74724d4ec3152a03ff32a47a7a7a05946a456855a349ebfd3eba2e498b99df95d4df3ea5d75e0d261dd26bdfe72a5060206 SHA512 739bb74db5cbcca2915b3c99a6a8b87da2da9086163e82beefbef2c8e3b98b1e0a63e2dfdded84006554fc5fcb419c7a084ebb4c25300c7177f3b53ec3b83324
DIST roonapi-0.1.2.tar.gz 18360 BLAKE2B 9d69bbb53042600d7c571f8685e8d311da7b6ad760fea26dba7843e8eb4ef44629d6eb29f3b1ab5370527887020865adba1dbed4dcf3d9639a9c0fc4a2bd4e26 SHA512 66fb01abbe68215ca73170a6535df2a58f86e06cfe96e7943049f63300aaa3f580938b0732b4ce3cc089ab61a83ace1bddae69207edfa5d3f17837f61a0625ba
EBUILD roonapi-0.1.1.ebuild 855 BLAKE2B 99db2a6e3b0f9546758325c438ada8ffb4dc672f96f74f9503951a417001d4ec9f0326885f1943392782f7f0fdbf710287ad9ed046fc58228da52de2f72b0414 SHA512 e25a9e47644269c86586913089a8091a58b1b901c8d247a8da19cd8b730fa62f996c524b017270d43fc5051375254dfdbb03c2158b7aee52847de3596c140ea8
EBUILD roonapi-0.1.2.ebuild 881 BLAKE2B cb7ebba38fece7cc53605ef80633f4ad3a436aba3aea4eba7bd8af643a6a668ad2a8837792d0dd6727c37fac663b76561b6a01e4c346984ae1e6c9ec59a79b4a SHA512 8684bab0ff6fc8e0c3800b9366953a34228b3296fe1572032fe7b2c1b430194f07ba791c051dd321a1fbe2c860cef65a8878a5e3f4094d7f15c4c988a3b41241
MISC metadata.xml 381 BLAKE2B 2e72d5ce9cbfe1b660eb47d809f71933a6d44f888e0c14d88b17379a52827211c951dd87b5a1768d3c5a97be40fce6f3957f96a5b89806ee1a6d5a7f347b6568 SHA512 965a54e3e95c867e45207633a2767f4986560834358807843de8e3d85f37c2f5e0002a79fceec7b02df402ba254e4d5970631f347a7ba5ce67d06213ad6d8a8a

View File

@ -0,0 +1,36 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1
DESCRIPTION="Provides a python interface to interact with Roon"
HOMEPAGE="https://github.com/pavoni/pyroon https://pypi.org/project/roonapi/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/ifaddr-0.1.0[${PYTHON_USEDEP}]
>=dev-python/requests-2.0[${PYTHON_USEDEP}]
>=dev-python/six-1.10.0[${PYTHON_USEDEP}]
>=dev-python/websocket-client-1.4.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest