-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-python/sensorpush-ble: add 1.7.1
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/4098 Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
3 changed files
with
29 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
DIST sensorpush_ble-1.6.2.tar.gz 6411 BLAKE2B 66fc270b1b94ce7cd8db91bc3b0b9741fb25e5f9c47784bd92ae62f3f1ac4247edeccac7b51af6b9f1aa8cb7b9fe03ded959ac81e74f45fb23e341b58f63685f SHA512 c8a87ec65473e7c419666c29ac0eb5ddfeca9443185cd5f091f976f56d2229cb189dd08536025b7cd47cc191183877d829f830d4c0f147eca7680a999ad7df98 | ||
DIST sensorpush_ble-1.7.0.tar.gz 6443 BLAKE2B 41793350ce6037cff6c8fc8f606220a957e4f58bcfce16255938a8e850a1297328e0193818e5c9f23751fc70093c8042474846c2c31be9227c8370db5827d9f8 SHA512 83c94c937688d7d5a6b88696830f7e4c60a3e29bb07c3e4fe9988e61009415af461a7a531511857de8e73acb8479c1af48be8e00d368b396ddd07d6abfac3a81 | ||
DIST sensorpush_ble-1.7.1.tar.gz 6483 BLAKE2B 4429f48f529532c1d38419f7bd19364be5cb797888e95daa267f40f7d8ed6459af27f61f27d35c8992ac4af37bfe18a1007d261b250f624dde2e056ed5c1a992 SHA512 b4b3ec455c1a22b93fe3a0b6b80f64c3b38b2fda0bebe9375f6ad197be30700152239075774a5de0ba3822dfc2523763818c7f0789e4970810047da15c6d8014 | ||
EBUILD sensorpush-ble-1.6.2.ebuild 690 BLAKE2B d88ce86128a5e9010688f179489a4c98b119f138d35a9bc6594032be0aebc3ee68536cfa31a49beba840ceb62aec3befc1a6f3fb5c801bdc833780a2c05adce2 SHA512 b5de915741b255f456a587f7247025107fd336b7e2f7c8696e5f7973ef7714fefd24d1154b923e234853e533c06cdc6d1d8024c8bc3997f2f31bfac014ba4568 | ||
EBUILD sensorpush-ble-1.7.0.ebuild 690 BLAKE2B d88ce86128a5e9010688f179489a4c98b119f138d35a9bc6594032be0aebc3ee68536cfa31a49beba840ceb62aec3befc1a6f3fb5c801bdc833780a2c05adce2 SHA512 b5de915741b255f456a587f7247025107fd336b7e2f7c8696e5f7973ef7714fefd24d1154b923e234853e533c06cdc6d1d8024c8bc3997f2f31bfac014ba4568 | ||
EBUILD sensorpush-ble-1.7.1.ebuild 690 BLAKE2B d88ce86128a5e9010688f179489a4c98b119f138d35a9bc6594032be0aebc3ee68536cfa31a49beba840ceb62aec3befc1a6f3fb5c801bdc833780a2c05adce2 SHA512 b5de915741b255f456a587f7247025107fd336b7e2f7c8696e5f7973ef7714fefd24d1154b923e234853e533c06cdc6d1d8024c8bc3997f2f31bfac014ba4568 | ||
MISC metadata.xml 530 BLAKE2B 7168724a43516919b1c85ae569abc58f3fe904a9e2e983c48fb72f8787da4f9dc9173b4a29be9013c7641db33a608024057b65bd9d61739fa220807b48d93439 SHA512 a2851c8823652f3fee47977a31311f2086643df9da5d1c8f9140ce305a3b20d1441a7eabb7b10cbbb4c0a5e911027a1fd07e49760ba54fa487e1691a60c1de4e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{11..13} ) | ||
DISTUTILS_USE_PEP517=poetry | ||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="Parser for SensorPush BLE devices" | ||
HOMEPAGE="https://github.com/bluetooth-devices/sensorpush-ble https://pypi.org/project/sensorpush-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/sensor-state-data-2.0.2[${PYTHON_USEDEP}] | ||
>=dev-python/bluetooth-data-tools-1.19.0[${PYTHON_USEDEP}]" | ||
|
||
distutils_enable_tests pytest |