dev-python/VL53L1X2: VariableShadowed, but still broken

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-01-07 12:28:37 +01:00
parent e832c03782
commit 980abf2aa8
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 7 additions and 16 deletions

View File

@ -899,7 +899,7 @@
|watson_iot|link Home Assistant with an IBM Watson IoT Platform instance|N|N|Y|0.72|
|watson_tts|text-to-speech platform that works with IBM Watson Cloud|N|N|Y|0.94|
|watttime|Cloud based Climate Trace Service|N|N|Y|2021.10.0b2|
|waze_travel_time|waze_travel_time sensor provides travel time from the Waze|N|Y|Y|0.67|
|waze_travel_time|waze_travel_time sensor provides travel time from the Waze|Y|Y|Y|0.67|
|weatherflow|reads weather data from all WeatherFlow Tempest compatible weather station|N|N|Y|2023.10.1|
|weatherkit|obtains current weather and forecasts (hourly and daily) from Apple Weather|N|N|Y|2023.10.1|
|webostv|allows you to control a LG webOS Smart TV|N|Y|Y|0.18|

View File

@ -116,7 +116,7 @@ Since homeassistant-0.115.3 the **Main Ebuild** is released in three different s
[![emerge ha-min](https://github.com/onkelbeh/HomeAssistantRepository/actions/workflows/emerge-min.yml/badge.svg)](https://github.com/onkelbeh/HomeAssistantRepository/actions/workflows/emerge-min.yml)
These are the USE Flags I use in production myself. All will compile fine and are extensively tested in every release, a daily compilation test is run at Github, big thanks to @antonfischl1980, it currently holds **101** USE Flags.
These are the USE Flags I use in production myself. All will compile fine and are extensively tested in every release, a daily compilation test is run at Github, big thanks to @antonfischl1980, it currently holds **102** USE Flags.
### `app-misc/homeassistant`
@ -664,9 +664,9 @@ There are 1657 Ebuilds in total, 1646 of them have in total 1665 (42 different)
|GPL-2+|1|
|GPL-2-with-linking-exception|1|
(Last counted: 06/01/2024)
(Last counted: 07/01/2024)
I did my best to keep these clean. If a valid license was published on PyPI, it has been automatically merged. Otherwise I took it from GitHub or alternatively from comments/files in the source. Sometimes these differed and have been not unique. All license strings are adjusted to the list in `/usr/portage/gentoo/licenses/`. Some packages do not have any license published. In this case, Authors have been asked for clarification, some did not respond. Following the [official Gentoo Guide](https://devmanual.gentoo.org/general-concepts/licenses/index.html), these then were added with an `all-rights-reserved` license and `RESTRICT="mirror"` was set. Find the appropriate licenses referenced in the Ebuild files and in the corresponding homepages or sources.
A big thanks goes to Iris for reviewing this README.
Last updated: 06/01/2024
Last updated: 07/01/2024

View File

@ -1,3 +1,3 @@
DIST VL53L1X2-0.1.5.tar.gz 80255 BLAKE2B 39ee9bade4fb2f95e711502941b7874a073bcb4726e2545ff59a5392ccf79a1932a6de485df2370363db0a71554bfdd25526e6324495818f36b517426667d186 SHA512 85fd403462af3f9288ac0986e6ea28381bb92fce5aa90466e570f37548582be69adf223b745e6d52c3fe6cc61fcaa439a98bf1a8a9eefd2e5c68a82cee72f5ea
EBUILD VL53L1X2-0.1.5.ebuild 704 BLAKE2B 651f394058dbce8ee20d933b16cabe42997260a5b8140bb6969c2f91b2e83f2359ce0c28b5303756b40aa405ac62ef14186af87a0f558940b7566bd949bc33de SHA512 d4016efa334082b38b6e5aacedc72fbb97a38857ac2ff31badeac077597ca759d577c5fd2aa87c48b271fe64296a9b8000c4a84e5f785fe565035c4b201d59b3
EBUILD VL53L1X2-0.1.5.ebuild 591 BLAKE2B 1a5d65e82c0381accd4d5ab58a6e6a1c6935e78dc5f4416eab37568064b992a8bc43be0e7e8fb01ff53ba2545b7dd9f068d8617ed122efc07105917c95909c22 SHA512 afa272b76b7243252c5df3ced4298ce306bcb8e53a04f787b1136152ead8733173eefbc7985bc6ccfb7cdaebd412b98444bf3170291f1e9ebf9231b3f5b36d10
MISC metadata.xml 538 BLAKE2B b5b66ada6f10eca74751dd375fafe43b3317c6ed46bf0860676df1e0de63371d9d431353bcd2e73b360707b2f7e08bd2fb48771fb7ddd5ee280c96d5ca2a545d SHA512 193ef18bc76607dfedd5ccd6268be9f552d95214861c616c2773bdc64d638fba004e50f91725f32d5345c92296ccb870038e4faf158e194203e79bcf2de2d80b

View File

@ -1,4 +1,4 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@ -11,22 +11,13 @@ DESCRIPTION="vl53l1x distance sensor driver for Raspberry Pi"
HOMEPAGE="https://github.com/josemotta/vl53l1x-python https://pypi.org/project/VL53L1X2/"
LICENSE="all-rights-reserved"
RESTRICT="mirror"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
RESTRICT="!test? ( test ) mirror"
DOCS="README.md"
RDEPEND="dev-python/smbus2[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest