dev-python/rapt-ble: new package, add 0.1.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-05-29 13:40:01 +02:00 committed by Andreas Billmeier
parent 0a7b873460
commit 919bebf162
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST rapt_ble-0.1.0.tar.gz 6344 BLAKE2B e69f7d7c502715d2d3b3618e9f5c755dd787de14a4494b8dba4fc171f4258a83d47013020f7b00972b41604fc40e2ad1d149cc9a81b84f2f5802b83696bb54e3 SHA512 20b04cf2ad46abbab5f4c13f217cc2037f14a7c8fb259e8cd35724f02ffa9d496f5fc0e9476a3f5870a538fad8870903ecd1aaed599e061331b0f9905563a1c0
EBUILD rapt-ble-0.1.0.ebuild 888 BLAKE2B 0e3590723bc5ea32bd6d4478361ff259486a20c9b09d774f6e423d9770215620f59f6e38f792dbdf8faf18c9fa2224d42e799d07edfabc8ab386f03043ce0cec SHA512 64f0483226bbe1816cc74afc4073015718f67dffd9a604a85c6dafdc693c8407ee5f67887466979411a13e1fedb9e34bcd5f104232926168d2d94a19cb5b699a
MISC metadata.xml 506 BLAKE2B 691e39cf206eb619b12d7ecf0ae21fbf653620419e8244ca9762cf1c75d423f549d032fdbd164bd749629da375e11bba6e586f09ecbcf979c253c3b022e2f90c SHA512 27f67c8bceb3d34a22e1e3a52a0c8671bdfc6ee4ccdf48ca2459503eafe9b0d61cbbd5699fbf348a2a592cc3e5cbad7582fbdedb7fd970df917f8ac22b552d68

View File

@ -0,0 +1,16 @@
<?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">rapt-ble</remote-id>
<remote-id type="github">sairon/rapt-ble</remote-id>
<maintainer status="unknown">
<email>sairon@sairon.cz</email>
<name>Jan Čermák</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,35 @@
# 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="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest