dev-python/py-improv-ble-client: new package, add 1.0.3

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-10-31 07:20:39 +01:00 committed by Andreas Billmeier
parent 7440c399ef
commit 7a6cba7c2a
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST py-improv-ble-client-1.0.3.tar.gz 10020 BLAKE2B 98f6f90a978227774e292a50d29eb8230d5496868bf862618088750b0b7f2f8c2492224572888e4d907d16db8d27f716909d324582b99a567c8ea680dfc9a704 SHA512 991790c8d1668ba8887b75f63978c58706f11f3376ee2e5e26c6b40759750ab8012e19f7dec44b4338c6b8b1c419de0815325ab0886cf3283d9779ffed5d2123
EBUILD py-improv-ble-client-1.0.3.ebuild 758 BLAKE2B 37b6d51370ae3d5e66559edad05de77cd1b0816a11a75f85bbbc8a4835691aee069c027d1b5f14553e7127a3637fc643a69336673f6a83d0740c47c988b066f0 SHA512 8696c1b1e1829b7cc6e5007f1c74a9a45e3fd01b33141ffbbcc685003a0f4234019402408e3b58bec7bb0b6d94a07406e891c6c349335c426b4f57e70592b80b
MISC metadata.xml 420 BLAKE2B e7002e5caa323b8b400e60170e2d703b9264e21809978084203080335944037f03eba4fe28f6854ae0adb80e43f111b37c4e4c383157565dded72e7419197f2a SHA512 49dd30e318cf5ece25865187e70f2ad5c5b2170368eb2293492ca2dbea975757ef8c6457a62c211f4a9445db02e081886662d9cb2efe3b56397ab65c5c8a5136

View File

@ -0,0 +1,12 @@
<?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">py-improv-ble-client</remote-id>
<remote-id type="github">homeassistant-libs/py-improv-ble-client</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,33 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1
inherit distutils-r1 pypi
DESCRIPTION="API to provision devices which implement Improv via BLE"
HOMEPAGE="https://github.com/home-assistant-libs/py-improv-ble-client https://pypi.org/project/py-improv-ble-client/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/bleak[${PYTHON_USEDEP}]
dev-python/bleak-retry-connector[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest