dev-python/pysnooz: new package, add 0.8.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2022-10-30 17:45:17 +01:00 committed by Andreas Billmeier
parent 7d99226fa7
commit d83c6229e1
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST pysnooz-0.8.2.tar.gz 15931 BLAKE2B 07502655f03522d2c45a279a15fa5332b0be0f91f261f05838a68eb42b0e894fb807fb5b69a1572c2be458304df3d670c8a68ef6437f1db64b2fcc61a0c00b25 SHA512 c264d37f94349493417f31d1b351541cc4792d34462cd04c4212b72b1d493e4980c74b148424a80afa2536f78840014493466275b00543f782aced40a011de74
EBUILD pysnooz-0.8.2.ebuild 1012 BLAKE2B 31189b89e88683c48a4774c215f6e51832353eac357fa52e80f75e4e0fdff61151c8e80c0fc5c4eab351eb345ffb4336dad892fa4fde5cf855fbf3ba37333ef4 SHA512 a3d6d43fc91050eeb24ed9eb5f60038c3291883c28a0321c98820ea4470bab853a9dbaca7752ec43ba2c01c6ce164fa7ede503ddb1a26eb54d00265b9c0a1e37
MISC metadata.xml 452 BLAKE2B b83d0ae2734e72c51520dd12edc9f840a70ab6d8065e8fb7fb69088f5fec155ef7d308657aaafb19c9251bc659b2ce67665d4ba014568d5bf06c70a024ee50d4 SHA512 6d254378e16654299397f98cc26a2cbe00559467166c2c4d8e1ce943f2a9aa14c0a86e04803ea04ba2aef796aede23db2e3fcdaba1a9d205936b4f575f931f55

View File

@ -0,0 +1,15 @@
<?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">pysnooz</remote-id>
<maintainer status="unknown">
<email>pysnooz@alb.dev</email>
<name>Austin Brunkhorst</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,39 @@
# Copyright 1999-2022 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="Control SNOOZ white noise machines."
HOMEPAGE="https://github.com/AustinBrunkhorst/pysnooz https://pypi.org/project/pysnooz/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/home-assistant-bluetooth-1.3.0[${PYTHON_USEDEP}]
>=dev-python/bluetooth-sensor-state-data-1.5.0[${PYTHON_USEDEP}]
>=dev-python/bleak-retry-connector-2.1.3[${PYTHON_USEDEP}]
>=dev-python/bleak-0.18.1[${PYTHON_USEDEP}]
>=dev-python/Events-0.4[${PYTHON_USEDEP}]
>=dev-python/transitions-0.8.11[${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