dev-python/rapt-ble: add 0.1.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-10-21 16:51:51 +02:00 committed by Andreas Billmeier
parent addc36f3a0
commit 2bf7ae53df
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 36 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST rapt_ble-0.1.0.tar.gz 6344 BLAKE2B e69f7d7c502715d2d3b3618e9f5c755dd787de14a4494b8dba4fc171f4258a83d47013020f7b00972b41604fc40e2ad1d149cc9a81b84f2f5802b83696bb54e3 SHA512 20b04cf2ad46abbab5f4c13f217cc2037f14a7c8fb259e8cd35724f02ffa9d496f5fc0e9476a3f5870a538fad8870903ecd1aaed599e061331b0f9905563a1c0
DIST rapt_ble-0.1.2.tar.gz 5891 BLAKE2B 23dbea22ba68a60c92fa8bc2c89b7fcf7d6403e94a0b535c5de6750403edbcffa4cafa08c2a4cd58a9e09e3ec3230d5a7fcba416a0288d20c7b70d7805afa35c SHA512 4fce95ac925429bb6300115fdca0095a84273387d3ffc54aebd24e16cbbdba36083d36ad269abb8944787bbc4faf707f45e1c0826949706666616d5558dd4557
EBUILD rapt-ble-0.1.0.ebuild 888 BLAKE2B 0e3590723bc5ea32bd6d4478361ff259486a20c9b09d774f6e423d9770215620f59f6e38f792dbdf8faf18c9fa2224d42e799d07edfabc8ab386f03043ce0cec SHA512 64f0483226bbe1816cc74afc4073015718f67dffd9a604a85c6dafdc693c8407ee5f67887466979411a13e1fedb9e34bcd5f104232926168d2d94a19cb5b699a
EBUILD rapt-ble-0.1.2.ebuild 847 BLAKE2B ec8088de4c17e9419f2148e1bad7c03f21d407e904dc7d6104bb2e77384acf3a3337fd6b7516f8486f748f38d9b75549a6f299450a192f4b5d36f6d9fd9fe562 SHA512 5279243bcaf441bf31b199be82a0cebc93302381f0bc9ad3d6c6a5ab22023f6d25cf0072bbe7402f3fd443aa1239fdd8f17e7be6f13f93b5980e7669f6a029ac
MISC metadata.xml 506 BLAKE2B 691e39cf206eb619b12d7ecf0ae21fbf653620419e8244ca9762cf1c75d423f549d032fdbd164bd749629da375e11bba6e586f09ecbcf979c253c3b022e2f90c SHA512 27f67c8bceb3d34a22e1e3a52a0c8671bdfc6ee4ccdf48ca2459503eafe9b0d61cbbd5699fbf348a2a592cc3e5cbad7582fbdedb7fd970df917f8ac22b552d68

View File

@ -0,0 +1,34 @@
# 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=poetry
inherit distutils-r1 pypi
DESCRIPTION="Parser for the RAPT Pill hydrometer BLE packets."
HOMEPAGE="https://github.com/sairon/rapt-ble https://pypi.org/project/rapt-ble/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/bluetooth-sensor-state-data-1.6.1[${PYTHON_USEDEP}]
>=dev-python/home-assistant-bluetooth-1.9.2[${PYTHON_USEDEP}]
>=dev-python/sensor-state-data-2.13.0[${PYTHON_USEDEP}]
>=dev-python/bluetooth-data-tools-0.3.1[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest