feature/upgrade Home Assistant to version 2024.8.3

This commit is contained in:
Xavier FORESTIER 2024-09-02 08:49:04 +02:00
parent 48c6698b85
commit e4cb751d19
32 changed files with 3846 additions and 12 deletions

View File

@ -12,6 +12,9 @@ DIST homeassistant-2024.5.5.gh.tar.gz 17013825 BLAKE2B 03eba1e79d9c1c2ff8a751c84
DIST homeassistant-2024.5.5.tar.gz 21077969 BLAKE2B c08563c79974d99bb124d33f2deeee693a4c0b92fb1a17b9c937d8a1a125d1c4c5723e469305a6597c7aae7629713b1f1935608b4c3d29176098fb0a645513c0 SHA512 1bfab28f86ceb64d7b4c84b418811d57990a45b730b361d603a22bd8ccb64a6531cd79f5bfb1e282aaf49e3b711d74b1f94fc25915619c0a6a5fb2ef9b4c4796
DIST homeassistant-2024.6.4.gh.tar.gz 17252383 BLAKE2B cfaed713f67347e66bc54318b50fd1220aaa3cbf03517ff4be7d91f69ab701ad7899eee000182c1e1af5c2c209908c3ad325ddd05ce5b07576684ae00084015c SHA512 9bc7635b4e307ec46490681a3ea9e136fa73ecc02d7198116805d3084bd3ba634c69f67063bf1e8c3661142f06234c077662543f897c5937141bd04e6484b8ed
DIST homeassistant-2024.6.4.tar.gz 21383376 BLAKE2B 65baca42425c8a9aa0eb48b722d2a373d711d3a02913e5e4cef551fb8ba1d743fb9f1358918939ac941e6c6ccf504f27b712dcae9f58a2f76c4337f686d7bd1a SHA512 494eea1020fc4752dba6aa03f351acf965ad1457a2929c5f4d520494ee23b75892fce0abc9c5eb7b608d7897ad5f629e67cca034085ea916cc1a688193610ff3
DIST homeassistant-2024.8.3.gh.tar.gz 17753086 BLAKE2B 342aaa50d7ecb398edda44d5775934fe5b91da8465ca759f8f47f5fe05a8299b7adfff57b89b14003cdaae7ade438ff8d22afd9818b7fe8e5effaca10cbf4090 SHA512 0337090ac109446849c44327f494d6ced783aa270a49941178bce091c8621499b7bba442642ff99e5e6ca2490f0736e7ed16a437ff5da83363fd4abb767fc120
DIST homeassistant-2024.8.3.tar.gz 22278165 BLAKE2B e799883637e21f5425960d76feec5dfe4ddc2fd31d0feda85f4460b32ff2162018c52a5ac1ffdeba768ee6f05e477fe90dcc358582df00a015561e5bc95c4f52 SHA512 f55e67f7d0a8faf438afd0f9d1a01c5b6b04db20382eac7e2c942ac981dd09db7ed53e43eab6febcf09db6bfe6bb89b1cb8671929413c7aae933491d4072ecb6
EBUILD homeassistant-2024.5.5.ebuild 34380 BLAKE2B f4c2514212925ee3aaaef7224fd0c39b5fb1c274243813efb332b420bfbf62f8100ee33a249baa901f868e3d38cefbe9ddb16c479a82abfffa77374dd6dde0dd SHA512 45e1e398d00ee019fbc223c214ec8246665cd87ee8da3c5ddc6063f742fb4d81f14b098db59d8caa1f2bd28f2609c401e22b4deb2ea698ef3f68f71b2fa3c680
EBUILD homeassistant-2024.6.4.ebuild 34440 BLAKE2B 3df3359d75c411b4b364f78b5ce00abfb24583f821bb6ecbf0bc386f775fa668a3323bd8e27ee4a0d4dfca7eba41bcecd6ad348ad7cde6a4a887235c81b01c80 SHA512 adca2850deeadaf268c5b4e22191ea707e3344085264422e8837a8cda753ea7a470c0816f598c696837b4621d91c067fb675d0db79f6433cca275b19a963fa12
EBUILD homeassistant-2024.8.3.ebuild 35197 BLAKE2B aa6526dd3171a7e792310369c901e0fcd92899f849b4bea20c8e10f3517ca5c6b427be120db203753df3b208794f747e076d420e910280fef90c59260bdb9940 SHA512 0c3e2454b861be37d62e7daabe803084345bdec9e6517682629beda148480c7aa8cea0d0840751dbc219bfe50a85b594402715e20d7fb8b998ecb49d38ac8c6f
MISC metadata.xml 27465 BLAKE2B 1af3996bc2b0ec02ff639b28c127d9bc0f6c480cb89a1b4368bbabd7207da41b02dc8f2c2ac8da01d7ab870dd567ecf80d78f64baea8551970544bd2028595be SHA512 44110155ecebab1564c971bf431145a6dc535e87404c87933d8a68a123e64025d3aa0316d56483d26a7e66d9bf93dafec8b7c7e9d796239342db429a1eafef3d

View File

@ -0,0 +1,551 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_12 )
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1
PYPI_PN="homeassistant"
inherit distutils-r1 pypi readme.gentoo-r1 systemd
MY_PN=homeassistant
if [[ ${PV} == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/home-assistant/core.git"
EGIT_BRANCH="dev"
S="${WORKDIR}/homeassistant-full-9999/"
else
MY_PV=${PV/_beta/b}
MY_P=${MY_PN}-${MY_PV}
SRC_URI="$(pypi_sdist_url)
https://github.com/home-assistant/core/archive/${MY_PV}.tar.gz -> ${MY_P}.gh.tar.gz"
fi
DESCRIPTION="Open-source home automation platform running on Python."
HOMEPAGE="https://home-assistant.io/ https://git.edevau.net/onkelbeh/HomeAssistantRepository/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="abode accuweather acer_projector acmeda adguard ads aftership agent_dvr airly airvisual aladdin_connect alarmdecoder almond alpha_vantage ambiclimate ambient_station amcrest ampio analytics_insights androidtv androidtv_remote android_ip_webcam anthemav apache_kafka apcupsd apple_tv apprise aquostv arcam_fmj aruba asuswrt aten_pe atome august aurora_abb_powerone avea avion awair axis +backup baidu beewi_smartclim bh1750 bitcoin bizkaibus blackbird blebox blink blinksticklight blinkt blockchain +bluetooth bluetooth_le_tracker bluetooth_tracker bme280 bme680 bmw_connected_drive bond braviatv bring broadlink brottsplatskartan brunt bsblan bt_home_hub_5 bt_smarthub buienradar +caldav camera canary cast cisco_mobility_express cli co2signal compensation coronavirus daikin deconz delijn denonavr deutsche_bahn devolo_home_control dexcom dhcp dht discogs discord discovery dlna_dmr dlna_dms doorbird dunehd dwd_weather_warnings dynalite dyson ecobee ecowitt emulated_roku enigma2 enocean enphase_envoy environment_canada esphome everlights evohome ffmpeg fibaro file flume flunearyou flux_led foobot forecast_solar fortios freebox fritz fritzbox fritzbox_callmonitor fronius garmin_connect gios github glances gogogate2 greeneye_monitor growatt_server guardian harman_kardon_avr harmony heos here_travel_time holiday +homekit homekit_controller homematic homematicip_cloud hp_ilo http hue hydrawise iaqualink ibeacon ihc image_upload imap incomfort influxdb insteon intesishome ipma ipp isal islamic_prayer_times jewish_calendar joaoapps_join kef knx kodi kraken lifx linode litterrobot local_calendar local_todo loopenergy luci luftdaten +mariadb +matter maxcube media_extractor met meteo_france mfi mikrotik +mobile_app modbus +mosquitto +mqtt mysql nad nederlandse_spoorwegen netatmo netdata nextcloud nfandroidtv nmap_tracker +notify_events nuki nut nws nx584 octoprint onkyo onvif opengarage opensensemap openweathermap opnsense +otp owntracks panasonic_viera philips_js pilight +ping pi_hole +plex plugwise poolsense powerwall ps4 +python_script qnap qvr_pro rachio radio_browser rainbird rainmachine +recorder rejseplanen +rest ring roku roomba roon samsungtv +scrape season shelly shodan signal_messenger simplisafe skybell sma smappee smarthab smartthings +snmp socat solax somfy sonos speedtestdotnet +spotify +sql squeezebox +ssl statsd synology_dsm systemd systemmonitor tankerkoenig tasmota tellduslive tesla test tile tomorrowio toon totalconnect tplink tts tuya unifi unifi_direct +upnp usb utility_meter vallox velbus velux vera +version vicare vizio +wake_on_lan waqi waze_travel_time webostv wemo whois wink withings wled workday xbox_live xiaomi_aqara xiaomi_miio xiaomi_tv xs1 yamaha yamaha_musiccast yeelight yi zeroconf zerproc zha zhong_hong zoneminder zwave_js"
RESTRICT="!test? ( test )"
# external deps
RDEPEND="${PYTHON_DEPS} acct-group/${MY_PN} acct-user/${MY_PN}
|| ( dev-lang/python:3.12 dev-lang/python:3.13 )
app-admin/logrotate
dev-db/sqlite
dev-libs/libfastjson
dev-libs/xerces-c"
# make sure no conflicting main Ebuild is installed
RDEPEND="${RDEPEND}
!app-misc/homeassistant-min
!app-misc/homeassistant-full"
RDEPEND="${RDEPEND}
test? (
dev-python/pytest
dev-python/pytest-socket
dev-python/sqlalchemy
dev-python/freezegun
dev-python/requests-mock
dev-python/syrup
dev-python/voluptuous
dev-python/python-slugify
dev-python/aiozoneinfo
dev-python/ciso8601
dev-python/orjson
dev-python/ulid-transform
dev-python/respx
)"
# Home Assistant Core dependencies
# from package_constraints.txt
RDEPEND="${RDEPEND}
~dev-python/aiodhcpwatcher-1.0.2[${PYTHON_USEDEP}]
>=dev-python/aiodiscover-2.1.0[${PYTHON_USEDEP}]
>=dev-python/aiodns-3.2.0[${PYTHON_USEDEP}]
>=dev-python/aiohttp-fast-url-dispatcher-0.3.0[${PYTHON_USEDEP}]
>=dev-python/aiohttp-fast-zlib-0.1.0[${PYTHON_USEDEP}]
>=dev-python/aiohttp-3.9.5[${PYTHON_USEDEP}]
>=dev-python/aiohttp-cors-0.7.0[${PYTHON_USEDEP}]
>=dev-python/aiozoneinfo-0.2.0[${PYTHON_USEDEP}]
>=dev-python/anyio-4.3.0[${PYTHON_USEDEP}]
>=dev-python/astral-2.2[${PYTHON_USEDEP}]
>=dev-python/async-interrupt-1.1.1[${PYTHON_USEDEP}]
~dev-python/async-upnp-client-0.40.0[${PYTHON_USEDEP}]
>=dev-python/atomicwrites-1.4.1[${PYTHON_USEDEP}]
>=dev-python/attrs-23.2.0[${PYTHON_USEDEP}]
>=dev-python/awesomeversion-24.2.0[${PYTHON_USEDEP}]
>=dev-python/backoff-2.0[${PYTHON_USEDEP}]
>=dev-python/bcrypt-4.1.2[${PYTHON_USEDEP}]
>=dev-python/bleak-retry-connector-3.5.0[${PYTHON_USEDEP}]
~dev-python/bleak-0.22.2[${PYTHON_USEDEP}]
~dev-python/bluetooth-adapters-0.19.4[${PYTHON_USEDEP}]
>=dev-python/bluetooth-auto-recovery-1.4.2[${PYTHON_USEDEP}]
~dev-python/bluetooth-data-tools-1.19.4[${PYTHON_USEDEP}]
>=dev-python/btlewrap-0.0.10[${PYTHON_USEDEP}]
>=dev-python/cached-ipaddress-0.3.0[${PYTHON_USEDEP}]
>=dev-python/certifi-2021.5.30[${PYTHON_USEDEP}]
>=dev-python/chacha20poly1305-reuseable-0.12.1[${PYTHON_USEDEP}]
>=dev-python/charset-normalizer-3.2.0[${PYTHON_USEDEP}]
>=dev-python/ciso8601-2.3.1[${PYTHON_USEDEP}]
>=dev-python/cryptography-42.0.5[${PYTHON_USEDEP}]
>=dev-python/dacite-1.7.0[${PYTHON_USEDEP}]
~dev-python/dbus-fast-2.22.1[${PYTHON_USEDEP}]
>=dev-python/faust-cchardet-2.1.18[${PYTHON_USEDEP}]
>=dev-python/fnv-hash-fast-0.5.0[${PYTHON_USEDEP}]
>=dev-python/grpcio-reflection-1.59.0[${PYTHON_USEDEP}]
>=dev-python/grpcio-status-1.59.0[${PYTHON_USEDEP}]
>=dev-python/grpcio-1.59.0[${PYTHON_USEDEP}]
>=dev-python/h11-0.14.0[${PYTHON_USEDEP}]
>=dev-python/ha-av-10.1.1[${PYTHON_USEDEP}]
>=dev-python/ha-ffmpeg-3.2.0[${PYTHON_USEDEP}]
~dev-python/habluetooth-3.1.3[${PYTHON_USEDEP}]
>=dev-python/hass-nabucasa-0.81.1[${PYTHON_USEDEP}]
~dev-python/hassil-1.7.4[${PYTHON_USEDEP}]
>=dev-python/home-assistant-bluetooth-1.12.0[${PYTHON_USEDEP}]
~dev-python/home-assistant-frontend-20240809.0[${PYTHON_USEDEP}]
~dev-python/home-assistant-intents-2024.8.7[${PYTHON_USEDEP}]
>=dev-python/httpcore-1.0.5[${PYTHON_USEDEP}]
>=dev-python/httplib2-0.19.0[${PYTHON_USEDEP}]
>=dev-python/httpx-0.27.0[${PYTHON_USEDEP}]
>=dev-python/hyperframe-5.2.0[${PYTHON_USEDEP}]
>=dev-python/ifaddr-0.2.0[${PYTHON_USEDEP}]
>=dev-python/jinja-3.1.4[${PYTHON_USEDEP}]
>=dev-python/libcst-0.3.23[${PYTHON_USEDEP}]
>=dev-python/lru-dict-1.3.0[${PYTHON_USEDEP}]
>=dev-python/multidict-6.0.2[${PYTHON_USEDEP}]
>=media-libs/mutagen-1.47.0[${PYTHON_USEDEP}]
~dev-python/numpy-1.26.0[${PYTHON_USEDEP}]
>=dev-python/orjson-3.9.15[${PYTHON_USEDEP}]
>=dev-python/packaging-23.1[${PYTHON_USEDEP}]
~dev-python/paho-mqtt-1.6.1[${PYTHON_USEDEP}]
~dev-python/pandas-2.1.4[${PYTHON_USEDEP}]
>=dev-python/pillow-10.3.0[${PYTHON_USEDEP}]
>=dev-python/pip-21.3.1[${PYTHON_USEDEP}]
>=dev-python/protobuf-python-4.25.1[${PYTHON_USEDEP}]
>=dev-python/psutil-home-assistant-0.0.1[${PYTHON_USEDEP}]
>=dev-python/pycountry-23.12.11[${PYTHON_USEDEP}]
>=dev-python/pycryptodome-3.6.6[${PYTHON_USEDEP}]
>=dev-python/pydantic-1.10.15[${PYTHON_USEDEP}]
>=dev-python/pyjwt-2.8.0[${PYTHON_USEDEP}]
>=dev-python/pynacl-1.5.0[${PYTHON_USEDEP}]
>=dev-python/pyopenssl-24.1.0[${PYTHON_USEDEP}]
>=dev-python/pyserial-3.5[${PYTHON_USEDEP}]
>=dev-python/python-engineio-3.13.1[${PYTHON_USEDEP}]
<dev-python/python-engineio-4[${PYTHON_USEDEP}]
>=dev-python/python-slugify-8.0.4[${PYTHON_USEDEP}]
>=dev-python/python-socketio-4.6.0[${PYTHON_USEDEP}]
<dev-python/python-socketio-5.0[${PYTHON_USEDEP}]
>=dev-python/PyTurboJPEG-1.7.1[${PYTHON_USEDEP}]
~dev-python/pyudev-0.24.1[${PYTHON_USEDEP}]
>=dev-python/pyyaml-6.0.1[${PYTHON_USEDEP}]
>=dev-python/regex-2023.12.25[${PYTHON_USEDEP}]
>=dev-python/requests-2.32.3[${PYTHON_USEDEP}]
>=net-analyzer/scapy-2.5.0[${PYTHON_USEDEP}]
~dev-python/sqlalchemy-2.0.31[${PYTHON_USEDEP}]
<dev-python/tenacity-8.4.0[${PYTHON_USEDEP}]
>=dev-python/tuf-4.0.0[${PYTHON_USEDEP}]
>=dev-python/typing-extensions-4.12.0[${PYTHON_USEDEP}]
<dev-python/typing-extensions-5.0[${PYTHON_USEDEP}]
>=dev-python/ulid-transform-0.9.0[${PYTHON_USEDEP}]
dev-python/urllib3[${PYTHON_USEDEP}]
>=dev-python/voluptuous-serialize-2.6.0[${PYTHON_USEDEP}]
>=dev-python/voluptuous-0.13.1[${PYTHON_USEDEP}]
>=dev-python/webrtc-noise-gain-1.2.3[${PYTHON_USEDEP}]
>=dev-python/websockets-11.0.1[${PYTHON_USEDEP}]
>=dev-python/yarl-1.9.4[${PYTHON_USEDEP}]
~dev-python/zeroconf-0.132.2[${PYTHON_USEDEP}]"
# unknown origin, still something to clean up here
RDEPEND="${RDEPEND}
>=dev-python/colorlog-6.8.2[${PYTHON_USEDEP}]
>=dev-python/pyotp-2.8.0[${PYTHON_USEDEP}]
>=dev-python/pyqrcode-1.2.1[${PYTHON_USEDEP}]"
# Module requirements from useflags
RDEPEND="${RDEPEND}
abode? ( >=dev-python/jaraco-abode-3.3.0[${PYTHON_USEDEP}] >=dev-python/jaraco-functools-3.9.0[${PYTHON_USEDEP}] )
accuweather? ( >=dev-python/accuweather-3.0.0[${PYTHON_USEDEP}] )
acer_projector? ( >=dev-python/pyserial-3.5[${PYTHON_USEDEP}] )
acmeda? ( >=dev-python/aiopulse-0.4.4[${PYTHON_USEDEP}] )
adguard? ( >=dev-python/adguardhome-0.6.3[${PYTHON_USEDEP}] )
ads? ( >=dev-python/pyads-3.4.0[${PYTHON_USEDEP}] )
aftership? ( >=dev-python/pyaftership-21.11.0[${PYTHON_USEDEP}] )
agent_dvr? ( >=dev-python/agent-py-0.0.23[${PYTHON_USEDEP}] )
airly? ( >=dev-python/airly-1.1.0[${PYTHON_USEDEP}] )
airvisual? ( >=dev-python/pyairvisual-2023.8.1[${PYTHON_USEDEP}] )
aladdin_connect? ( >=dev-python/genie-partner-sdk-1.0.2[${PYTHON_USEDEP}] )
alarmdecoder? ( >=dev-python/adext-0.4.3[${PYTHON_USEDEP}] )
almond? ( >=dev-python/pyalmond-0.0.2[${PYTHON_USEDEP}] )
alpha_vantage? ( >=dev-python/alpha-vantage-2.3.1[${PYTHON_USEDEP}] )
ambiclimate? ( >=dev-python/Ambiclimate-0.2.1[${PYTHON_USEDEP}] )
ambient_station? ( >=dev-python/aioambient-2024.1.0[${PYTHON_USEDEP}] )
amcrest? ( >=dev-python/amcrest-1.9.8[${PYTHON_USEDEP}] )
ampio? ( >=dev-python/asmog-0.0.6[${PYTHON_USEDEP}] )
analytics_insights? ( >=dev-python/python-homeassistant-analytics-0.6.0[${PYTHON_USEDEP}] )
androidtv? ( >=dev-python/adb-shell-0.4.4[async,${PYTHON_USEDEP}] >=dev-python/androidtv-0.0.73[async,${PYTHON_USEDEP}] >=dev-python/pure-python-adb-0.3.0[async,${PYTHON_USEDEP}] )
androidtv_remote? ( >=dev-python/androidtvremote2-0.1.1[${PYTHON_USEDEP}] )
android_ip_webcam? ( >=dev-python/pydroid-ipcam-2.0.0[${PYTHON_USEDEP}] )
anthemav? ( >=dev-python/anthemav-1.4.1[${PYTHON_USEDEP}] )
apache_kafka? ( >=dev-python/aiokafka-0.10.0[${PYTHON_USEDEP}] )
apcupsd? ( >=dev-python/aioapcaccess-0.4.2[${PYTHON_USEDEP}] )
apple_tv? ( >=dev-python/pyatv-0.14.3[${PYTHON_USEDEP}] )
apprise? ( >=dev-python/apprise-1.8.0[${PYTHON_USEDEP}] )
aquostv? ( >=dev-python/sharp_aquos_rc-0.3.2[${PYTHON_USEDEP}] )
arcam_fmj? ( >=dev-python/arcam-fmj-1.5.2[${PYTHON_USEDEP}] )
aruba? ( >=dev-python/pexpect-4.6.0[${PYTHON_USEDEP}] )
asuswrt? ( >=dev-python/aioasuswrt-1.4.0[${PYTHON_USEDEP}] >=dev-python/pyasuswrt-0.1.21[${PYTHON_USEDEP}] )
aten_pe? ( >=dev-python/atenpdu-0.3.2[${PYTHON_USEDEP}] )
atome? ( >=dev-python/pyAtome-0.1.1[${PYTHON_USEDEP}] )
august? ( >=dev-python/yalexs-3.1.0[${PYTHON_USEDEP}] >=dev-python/yalexs-ble-2.4.2[${PYTHON_USEDEP}] )
aurora_abb_powerone? ( >=dev-python/aurorapy-0.2.7[${PYTHON_USEDEP}] )
avea? ( >=dev-python/avea-1.5.1[${PYTHON_USEDEP}] )
avion? ( >=dev-python/avion-0.10[${PYTHON_USEDEP}] )
awair? ( >=dev-python/python-awair-0.2.4[${PYTHON_USEDEP}] )
axis? ( >=dev-python/axis-61[${PYTHON_USEDEP}] )
backup? ( >=dev-python/securetar-2024.2.1[${PYTHON_USEDEP}] )
baidu? ( >=dev-python/baidu-aip-1.6.6.0[${PYTHON_USEDEP}] )
beewi_smartclim? ( >=dev-python/beewi-smartclim-0.0.10[${PYTHON_USEDEP}] )
bh1750? ( >=dev-python/i2csense-0.0.4[${PYTHON_USEDEP}] >=dev-python/smbus-cffi-0.5.1[${PYTHON_USEDEP}] )
bitcoin? ( >=dev-python/blockchain-1.4.4[${PYTHON_USEDEP}] )
bizkaibus? ( >=dev-python/bizkaibus-0.1.1[${PYTHON_USEDEP}] )
blackbird? ( >=dev-python/pyblackbird-0.6[${PYTHON_USEDEP}] )
blebox? ( >=dev-python/blebox-uniapi-2.2.2[${PYTHON_USEDEP}] )
blink? ( >=dev-python/blinkpy-0.22.6[${PYTHON_USEDEP}] )
blinksticklight? ( >=dev-python/BlinkStick-1.2.0[${PYTHON_USEDEP}] )
blinkt? ( >=dev-python/blinkt-0.1.0[${PYTHON_USEDEP}] )
blockchain? ( >=dev-python/python-blockchain-api-0.0.2[${PYTHON_USEDEP}] )
bluetooth? ( ~dev-python/bleak-0.22.2[${PYTHON_USEDEP}] >=dev-python/bleak-retry-connector-3.5.0[${PYTHON_USEDEP}] ~dev-python/bluetooth-adapters-0.19.4[${PYTHON_USEDEP}] >=dev-python/bluetooth-auto-recovery-1.4.2[${PYTHON_USEDEP}] ~dev-python/bluetooth-data-tools-1.19.4[${PYTHON_USEDEP}] ~dev-python/dbus-fast-2.22.1[${PYTHON_USEDEP}] ~dev-python/habluetooth-3.1.3[${PYTHON_USEDEP}] )
bluetooth_le_tracker? ( >=dev-python/pygatt-4.0.5[${PYTHON_USEDEP}] )
bluetooth_tracker? ( >=dev-python/bt-proximity-0.2.1[${PYTHON_USEDEP}] >=dev-python/pybluez-0.22[${PYTHON_USEDEP}] )
bme280? ( >=dev-python/i2csense-0.0.4[${PYTHON_USEDEP}] >=dev-python/smbus-cffi-0.5.1[${PYTHON_USEDEP}] >=dev-python/bme280spi-0.2.0[${PYTHON_USEDEP}] )
bme680? ( >=dev-python/bme680-1.0.5[${PYTHON_USEDEP}] >=dev-python/smbus-cffi-0.5.1[${PYTHON_USEDEP}] )
bmw_connected_drive? ( >=dev-python/bimmer-connected-0.15.3[china,${PYTHON_USEDEP}] )
bond? ( >=dev-python/bond-async-0.2.1[${PYTHON_USEDEP}] )
braviatv? ( >=dev-python/pybravia-0.3.3[${PYTHON_USEDEP}] )
bring? ( >=dev-python/bring-api-0.7.1[${PYTHON_USEDEP}] )
broadlink? ( >=dev-python/broadlink-0.19.0[${PYTHON_USEDEP}] )
brottsplatskartan? ( >=dev-python/brottsplatskartan-1.0.5[${PYTHON_USEDEP}] )
brunt? ( >=dev-python/brunt-1.2.0[${PYTHON_USEDEP}] )
bsblan? ( >=dev-python/python-bsblan-0.5.18[${PYTHON_USEDEP}] )
bt_home_hub_5? ( >=dev-python/bthomehub5-devicelist-0.1.1[${PYTHON_USEDEP}] )
bt_smarthub? ( >=dev-python/btsmarthub-devicelist-0.2.3[${PYTHON_USEDEP}] )
buienradar? ( >=dev-python/buienradar-1.0.6[${PYTHON_USEDEP}] )
caldav? ( >=dev-python/caldav-1.3.9[${PYTHON_USEDEP}] )
camera? ( >=dev-python/PyTurboJPEG-1.7.1[${PYTHON_USEDEP}] )
canary? ( >=dev-python/py-canary-0.5.4[${PYTHON_USEDEP}] )
cast? ( >=dev-python/pychromecast-14.0.1[${PYTHON_USEDEP}] )
cisco_mobility_express? ( >=dev-python/ciscomobilityexpress-0.3.9[${PYTHON_USEDEP}] )
cli? ( app-misc/home-assistant-cli )
co2signal? ( >=dev-python/aioelectricitymaps-0.4.0[${PYTHON_USEDEP}] )
compensation? ( ~dev-python/numpy-1.26.0[${PYTHON_USEDEP}] )
coronavirus? ( >=dev-python/coronavirus-1.1.1[${PYTHON_USEDEP}] )
daikin? ( >=dev-python/pydaikin-2.11.1[${PYTHON_USEDEP}] )
deconz? ( >=dev-python/pydeconz-116[${PYTHON_USEDEP}] )
delijn? ( >=dev-python/pydelijn-1.1.0[${PYTHON_USEDEP}] )
denonavr? ( >=dev-python/denonavr-0.11.6[${PYTHON_USEDEP}] )
deutsche_bahn? ( >=dev-python/schiene-0.23[${PYTHON_USEDEP}] )
devolo_home_control? ( >=dev-python/devolo-home-control-api-0.18.3[${PYTHON_USEDEP}] )
dexcom? ( >=dev-python/pydexcom-0.2.3[${PYTHON_USEDEP}] )
dhcp? ( ~dev-python/aiodhcpwatcher-1.0.2[${PYTHON_USEDEP}] >=dev-python/aiodiscover-2.1.0[${PYTHON_USEDEP}] >=dev-python/cached-ipaddress-0.3.0[${PYTHON_USEDEP}] )
dht? ( >=dev-python/adafruit-circuitpython-dht-3.7.0[${PYTHON_USEDEP}] >=dev-python/RPi-GPIO-0.7.1_alpha4[${PYTHON_USEDEP}] )
discogs? ( >=dev-python/discogs-client-2.3.0[${PYTHON_USEDEP}] )
discord? ( >=dev-python/nextcord-2.6.0[${PYTHON_USEDEP}] )
discovery? ( >=dev-python/netdisco-3.0.0[${PYTHON_USEDEP}] )
dlna_dmr? ( ~dev-python/async-upnp-client-0.40.0[${PYTHON_USEDEP}] >=dev-python/getmac-0.9.4[${PYTHON_USEDEP}] )
dlna_dms? ( ~dev-python/async-upnp-client-0.40.0[${PYTHON_USEDEP}] )
doorbird? ( >=dev-python/DoorBirdPy-2.1.0[${PYTHON_USEDEP}] )
dunehd? ( >=dev-python/pdunehd-1.3.2[${PYTHON_USEDEP}] )
dwd_weather_warnings? ( >=dev-python/dwdwfsapi-1.0.7[${PYTHON_USEDEP}] )
dynalite? ( >=dev-python/dynalite-devices-0.1.47[${PYTHON_USEDEP}] >=dev-python/dynalite-panel-0.0.4[${PYTHON_USEDEP}] )
dyson? ( >=dev-python/libpurecool-0.6.4[${PYTHON_USEDEP}] )
ecobee? ( >=dev-python/python-ecobee-api-0.2.18[${PYTHON_USEDEP}] )
ecowitt? ( >=dev-python/aioecowitt-2024.2.1[${PYTHON_USEDEP}] )
emulated_roku? ( >=dev-python/emulated-roku-0.3.0[${PYTHON_USEDEP}] )
enigma2? ( >=dev-python/openwebifpy-4.2.4[${PYTHON_USEDEP}] )
enocean? ( >=dev-python/enocean-0.50.1[${PYTHON_USEDEP}] )
enphase_envoy? ( >=dev-python/pyenphase-1.20.3[${PYTHON_USEDEP}] )
environment_canada? ( >=dev-python/env-canada-0.6.3[${PYTHON_USEDEP}] )
esphome? ( ~dev-python/aioesphomeapi-25.0.0[${PYTHON_USEDEP}] ~dev-python/esphome-dashboard-api-1.2.3[${PYTHON_USEDEP}] >=dev-python/bleak-esphome-1.0.0[${PYTHON_USEDEP}] )
everlights? ( >=dev-python/pyeverlights-0.1.0[${PYTHON_USEDEP}] )
evohome? ( >=dev-python/evohome-async-0.4.19[${PYTHON_USEDEP}] )
ffmpeg? ( >=dev-python/ha-ffmpeg-3.2.0[${PYTHON_USEDEP}] )
fibaro? ( >=dev-python/pyfibaro-0.7.8[${PYTHON_USEDEP}] )
file? ( >=dev-python/file-read-backwards-2.0.0[${PYTHON_USEDEP}] )
flume? ( >=dev-python/PyFlume-0.6.5[${PYTHON_USEDEP}] )
flunearyou? ( >=dev-python/pyflunearyou-2.0.2[${PYTHON_USEDEP}] )
flux_led? ( >=dev-python/flux-led-1.0.4[${PYTHON_USEDEP}] )
foobot? ( >=dev-python/foobot_async-1.0.0[${PYTHON_USEDEP}] )
forecast_solar? ( >=dev-python/forecast-solar-3.1.0[${PYTHON_USEDEP}] )
fortios? ( >=dev-python/fortiosapi-1.0.5[${PYTHON_USEDEP}] )
freebox? ( >=dev-python/freebox-api-1.1.0[${PYTHON_USEDEP}] )
fritz? ( >=dev-python/fritzconnection-1.13.2[qrcode,${PYTHON_USEDEP}] >=dev-python/xmltodict-0.13.0[${PYTHON_USEDEP}] )
fritzbox? ( >=dev-python/pyfritzhome-0.6.11[${PYTHON_USEDEP}] )
fritzbox_callmonitor? ( >=dev-python/fritzconnection-1.13.2[qrcode,${PYTHON_USEDEP}] )
fronius? ( >=dev-python/PyFronius-0.7.3[${PYTHON_USEDEP}] )
garmin_connect? ( >=dev-python/garminconnect-ha-0.1.6[${PYTHON_USEDEP}] )
gios? ( >=dev-python/gios-4.0.0[${PYTHON_USEDEP}] )
github? ( >=dev-python/aiogithubapi-23.11.0[${PYTHON_USEDEP}] )
glances? ( >=dev-python/glances-api-0.8.0[${PYTHON_USEDEP}] )
gogogate2? ( >=dev-python/ismartgate-5.0.1[${PYTHON_USEDEP}] )
greeneye_monitor? ( >=dev-python/greeneye-monitor-3.0.3[${PYTHON_USEDEP}] )
growatt_server? ( >=dev-python/growattServer-1.5.0[${PYTHON_USEDEP}] )
guardian? ( >=dev-python/aioguardian-2022.7.0[${PYTHON_USEDEP}] )
harman_kardon_avr? ( >=dev-python/hkavr-0.0.5[${PYTHON_USEDEP}] )
harmony? ( >=dev-python/aioharmony-0.2.10[${PYTHON_USEDEP}] )
heos? ( >=dev-python/pyheos-0.7.2[${PYTHON_USEDEP}] )
here_travel_time? ( >=dev-python/here-routing-0.2.0[${PYTHON_USEDEP}] >=dev-python/here-transit-1.2.0[${PYTHON_USEDEP}] )
holiday? ( >=dev-python/holidays-0.51[${PYTHON_USEDEP}] >=dev-python/Babel-2.15.0[${PYTHON_USEDEP}] )
homekit? ( >=dev-python/HAP-python-4.9.1[${PYTHON_USEDEP}] >=dev-python/fnv-hash-fast-0.5.0[${PYTHON_USEDEP}] >=dev-python/pyqrcode-1.2.1[${PYTHON_USEDEP}] >=dev-python/base36-0.1.1[${PYTHON_USEDEP}] )
homekit_controller? ( >=dev-python/aiohomekit-3.1.5[${PYTHON_USEDEP}] )
homematic? ( >=dev-python/pyhomematic-0.1.77[${PYTHON_USEDEP}] )
homematicip_cloud? ( >=dev-python/homematicip-1.1.1[${PYTHON_USEDEP}] )
hp_ilo? ( >=dev-python/python-hpilo-4.4.3[${PYTHON_USEDEP}] )
http? ( >=dev-python/aiohttp-cors-0.7.0[${PYTHON_USEDEP}] >=dev-python/aiohttp-fast-url-dispatcher-0.3.0[${PYTHON_USEDEP}] >=dev-python/aiohttp-zlib-ng-0.3.1[${PYTHON_USEDEP}] )
hue? ( >=dev-python/aiohue-4.7.1[${PYTHON_USEDEP}] )
hydrawise? ( >=dev-python/pydrawise-2024.6.4[${PYTHON_USEDEP}] )
iaqualink? ( >=dev-python/iaqualink-0.5.0[${PYTHON_USEDEP}] >=dev-python/h2-4.1.0[${PYTHON_USEDEP}] )
ibeacon? ( >=dev-python/ibeacon-ble-1.2.0[${PYTHON_USEDEP}] )
ihc? ( >=dev-python/defusedxml-0.7.1[${PYTHON_USEDEP}] >=dev-python/ihcsdk-2.8.5[${PYTHON_USEDEP}] )
image_upload? ( >=dev-python/pillow-10.3.0[${PYTHON_USEDEP}] )
imap? ( >=dev-python/aioimaplib-1.1.0[${PYTHON_USEDEP}] )
incomfort? ( >=dev-python/incomfort-client-0.5.0[${PYTHON_USEDEP}] )
influxdb? ( >=dev-python/influxdb-5.3.1[${PYTHON_USEDEP}] >=dev-python/influxdb-client-1.24.0[${PYTHON_USEDEP}] )
insteon? ( >=dev-python/pyinsteon-1.6.1[${PYTHON_USEDEP}] >=dev-python/insteon-frontend-home-assistant-0.5.0[${PYTHON_USEDEP}] )
intesishome? ( >=dev-python/pyintesishome-1.8.0[${PYTHON_USEDEP}] )
ipma? ( >=dev-python/pyipma-3.0.7[${PYTHON_USEDEP}] )
ipp? ( >=dev-python/pyipp-0.16.0[${PYTHON_USEDEP}] )
isal? ( >=dev-python/isal-1.6.1[${PYTHON_USEDEP}] )
islamic_prayer_times? ( >=dev-python/prayer-times-calculator-offline-1.0.3[${PYTHON_USEDEP}] )
jewish_calendar? ( >=dev-python/hdate-0.10.9[${PYTHON_USEDEP}] )
joaoapps_join? ( >=dev-python/python-join-api-0.0.9[${PYTHON_USEDEP}] )
kef? ( >=dev-python/aiokef-0.2.16[${PYTHON_USEDEP}] >=dev-python/getmac-0.9.4[${PYTHON_USEDEP}] )
knx? ( >=dev-python/xknx-2.12.2[${PYTHON_USEDEP}] >=dev-python/xknxproject-3.7.1[${PYTHON_USEDEP}] >=dev-python/knx-frontend-2024.1.20.105944[${PYTHON_USEDEP}] )
kodi? ( >=dev-python/pykodi-0.2.7[${PYTHON_USEDEP}] )
kraken? ( >=dev-python/krakenex-2.1.0[${PYTHON_USEDEP}] >=dev-python/pykrakenapi-0.1.8[${PYTHON_USEDEP}] )
lifx? ( >=dev-python/aiolifx-1.0.2[${PYTHON_USEDEP}] >=dev-python/aiolifx-effects-0.3.2[${PYTHON_USEDEP}] >=dev-python/aiolifx-themes-0.4.15[${PYTHON_USEDEP}] )
linode? ( >=dev-python/linode-api-4.1.9_beta1[${PYTHON_USEDEP}] )
litterrobot? ( >=dev-python/pylitterbot-2023.5.0[${PYTHON_USEDEP}] )
local_calendar? ( >=dev-python/ical-8.0.1[${PYTHON_USEDEP}] )
local_todo? ( >=dev-python/ical-8.0.1[${PYTHON_USEDEP}] )
loopenergy? ( >=dev-python/pyloopenergy-0.2.1[${PYTHON_USEDEP}] )
luci? ( >=dev-python/openwrt-luci-rpc-1.1.17[${PYTHON_USEDEP}] )
luftdaten? ( >=dev-python/luftdaten-0.7.4[${PYTHON_USEDEP}] )
mariadb? ( dev-python/mysqlclient[${PYTHON_USEDEP}] )
matter? ( ~dev-python/python-matter-server-6.3.0[${PYTHON_USEDEP}] )
maxcube? ( >=dev-python/maxcube-api-0.4.3[${PYTHON_USEDEP}] )
media_extractor? ( ~net-misc/yt-dlp-2024.05.27 )
met? ( >=dev-python/PyMetno-0.12.0[${PYTHON_USEDEP}] )
meteo_france? ( >=dev-python/meteofrance-api-1.3.0[${PYTHON_USEDEP}] )
mfi? ( >=dev-python/mficlient-0.3.0[${PYTHON_USEDEP}] )
mikrotik? ( >=dev-python/librouteros-3.2.0[${PYTHON_USEDEP}] )
mobile_app? ( >=dev-python/pynacl-1.5.0[${PYTHON_USEDEP}] )
modbus? ( >=dev-python/pymodbus-3.6.8[${PYTHON_USEDEP}] )
mosquitto? ( app-misc/mosquitto )
mqtt? ( ~dev-python/paho-mqtt-1.6.1[${PYTHON_USEDEP}] )
mysql? ( dev-python/mysqlclient[${PYTHON_USEDEP}] )
nad? ( >=dev-python/nad-receiver-0.3.0[${PYTHON_USEDEP}] )
nederlandse_spoorwegen? ( >=dev-python/nsapi-3.0.5[${PYTHON_USEDEP}] )
netatmo? ( >=dev-python/pyatmo-8.0.3[${PYTHON_USEDEP}] )
netdata? ( >=dev-python/netdata-1.1.0[${PYTHON_USEDEP}] )
nextcloud? ( >=dev-python/nextcloudmonitor-1.5.0[${PYTHON_USEDEP}] )
nfandroidtv? ( >=dev-python/notifications-android-tv-0.1.5[${PYTHON_USEDEP}] )
nmap_tracker? ( >=dev-python/netmap-0.7.0.2[${PYTHON_USEDEP}] >=dev-python/getmac-0.9.4[${PYTHON_USEDEP}] >=dev-python/aiooui-0.1.5[${PYTHON_USEDEP}] )
notify_events? ( >=dev-python/notify-events-1.0.4[${PYTHON_USEDEP}] )
nuki? ( >=dev-python/pynuki-1.6.3[${PYTHON_USEDEP}] )
nut? ( >=dev-python/aionut-4.3.2[${PYTHON_USEDEP}] )
nws? ( >=dev-python/pynws-1.8.1[${PYTHON_USEDEP}] )
nx584? ( >=dev-python/pynx584-0.5[${PYTHON_USEDEP}] )
octoprint? ( >=dev-python/pyoctoprintapi-0.1.12[${PYTHON_USEDEP}] )
onkyo? ( >=dev-python/onkyo-eiscp-1.2.7[${PYTHON_USEDEP}] )
onvif? ( >=dev-python/onvif-zeep-async-3.1.12[${PYTHON_USEDEP}] >=dev-python/WSDiscovery-2.0.0[${PYTHON_USEDEP}] )
opengarage? ( >=dev-python/open-garage-0.2.0[${PYTHON_USEDEP}] )
opensensemap? ( >=dev-python/opensensemap-api-0.2.0[${PYTHON_USEDEP}] )
openweathermap? ( >=dev-python/pyopenweathermap-0.0.9[${PYTHON_USEDEP}] )
opnsense? ( >=dev-python/pyopnsense-0.4.0[${PYTHON_USEDEP}] )
otp? ( ~dev-python/pyotp-2.8.0[${PYTHON_USEDEP}] )
owntracks? ( >=dev-python/pynacl-1.5.0[${PYTHON_USEDEP}] )
panasonic_viera? ( >=dev-python/panasonic-viera-0.3.6[${PYTHON_USEDEP}] )
philips_js? ( >=dev-python/ha-philipsjs-3.2.2[${PYTHON_USEDEP}] )
pilight? ( >=dev-python/pilight-0.1.1[${PYTHON_USEDEP}] )
ping? ( >=dev-python/icmplib-3.0[${PYTHON_USEDEP}] )
pi_hole? ( >=dev-python/hole-0.8.0[${PYTHON_USEDEP}] )
plex? ( >=dev-python/PlexAPI-4.15.13[${PYTHON_USEDEP}] >=dev-python/plexauth-0.0.6[${PYTHON_USEDEP}] >=dev-python/plexwebsocket-0.0.14[${PYTHON_USEDEP}] )
plugwise? ( >=dev-python/plugwise-0.37.4.1[${PYTHON_USEDEP}] )
poolsense? ( >=dev-python/poolsense-0.0.8[${PYTHON_USEDEP}] )
powerwall? ( >=dev-python/tesla-powerwall-0.5.2[${PYTHON_USEDEP}] )
ps4? ( >=dev-python/pyps4-2ndscreen-1.3.1[${PYTHON_USEDEP}] )
python_script? ( >=dev-python/RestrictedPython-7.0_alpha1[${PYTHON_USEDEP}] )
qnap? ( >=dev-python/qnapstats-0.4.0[${PYTHON_USEDEP}] )
qvr_pro? ( >=dev-python/pyqvrpro-0.52[${PYTHON_USEDEP}] )
rachio? ( >=dev-python/RachioPy-1.1.0[${PYTHON_USEDEP}] )
radio_browser? ( >=dev-python/radios-0.3.1[${PYTHON_USEDEP}] )
rainbird? ( >=dev-python/pyrainbird-6.0.1[${PYTHON_USEDEP}] )
rainmachine? ( >=dev-python/regenmaschine-2024.3.0[${PYTHON_USEDEP}] )
recorder? ( >=dev-python/sqlalchemy-2.0.30[${PYTHON_USEDEP}] >=dev-python/fnv-hash-fast-0.5.0[${PYTHON_USEDEP}] >=dev-python/psutil-home-assistant-0.0.1[${PYTHON_USEDEP}] )
rejseplanen? ( >=dev-python/rjpl-0.3.6[${PYTHON_USEDEP}] )
rest? ( >=dev-python/jsonpath-0.82.2[${PYTHON_USEDEP}] >=dev-python/xmltodict-0.13.0[${PYTHON_USEDEP}] )
ring? ( >=dev-python/ring-doorbell-0.8.11[listen,${PYTHON_USEDEP}] )
roku? ( >=dev-python/rokuecp-0.19.3[${PYTHON_USEDEP}] )
roomba? ( >=dev-python/roombapy-1.8.1[${PYTHON_USEDEP}] )
roon? ( >=dev-python/roonapi-0.1.6[${PYTHON_USEDEP}] )
samsungtv? ( >=dev-python/getmac-0.9.4[${PYTHON_USEDEP}] >=dev-python/samsungctl-0.7.1[${PYTHON_USEDEP}] >=dev-python/samsungtvws-2.6.0[async,encrypted,${PYTHON_USEDEP}] >=dev-python/wakeonlan-2.1.0[${PYTHON_USEDEP}] ~dev-python/async-upnp-client-0.40.0[${PYTHON_USEDEP}] )
scrape? ( >=dev-python/beautifulsoup4-4.12.3[${PYTHON_USEDEP}] >=dev-python/lxml-5.1.0[${PYTHON_USEDEP}] )
season? ( >=dev-python/ephem-4.1.5[${PYTHON_USEDEP}] )
shelly? ( ~dev-python/aioshelly-11.2.4[${PYTHON_USEDEP}] )
shodan? ( >=dev-python/shodan-1.28.0[${PYTHON_USEDEP}] )
signal_messenger? ( >=dev-python/pysignalclirestapi-0.3.23[${PYTHON_USEDEP}] )
simplisafe? ( >=dev-python/simplisafe-python-2024.1.0[${PYTHON_USEDEP}] )
skybell? ( >=dev-python/aioskybell-22.7.0[${PYTHON_USEDEP}] )
sma? ( >=dev-python/pysma-0.7.3[${PYTHON_USEDEP}] )
smappee? ( >=dev-python/pysmappee-0.2.29[${PYTHON_USEDEP}] )
smarthab? ( >=dev-python/SmartHab-0.21[${PYTHON_USEDEP}] )
smartthings? ( >=dev-python/pysmartapp-0.3.5[${PYTHON_USEDEP}] >=dev-python/pysmartthings-0.7.8[${PYTHON_USEDEP}] )
snmp? ( >=dev-python/pysnmp-lextudio-6.0.11[${PYTHON_USEDEP}] )
socat? ( net-misc/socat )
solax? ( >=dev-python/solax-3.1.0[${PYTHON_USEDEP}] )
somfy? ( >=dev-python/pymfy-0.11.0[${PYTHON_USEDEP}] )
sonos? ( >=dev-python/soco-0.30.4[${PYTHON_USEDEP}] >=dev-python/sonos-websocket-0.1.3[${PYTHON_USEDEP}] )
speedtestdotnet? ( ~net-analyzer/speedtest-cli-2.1.3[${PYTHON_USEDEP}] )
spotify? ( >=dev-python/spotipy-2.23.0[${PYTHON_USEDEP}] )
sql? ( >=dev-python/sqlalchemy-2.0.30[${PYTHON_USEDEP}] >=dev-python/sqlparse-0.5.0[${PYTHON_USEDEP}] )
squeezebox? ( >=dev-python/pysqueezebox-0.7.1[${PYTHON_USEDEP}] )
ssl? ( dev-libs/openssl app-crypt/certbot net-proxy/haproxy )
statsd? ( >=dev-python/statsd-3.2.1[${PYTHON_USEDEP}] )
synology_dsm? ( >=dev-python/py-synologydsm-api-2.4.4[${PYTHON_USEDEP}] )
systemmonitor? ( >=dev-python/psutil-home-assistant-0.0.1[${PYTHON_USEDEP}] >=dev-python/psutil-5.9.8[${PYTHON_USEDEP}] )
tankerkoenig? ( >=dev-python/aiotankerkoenig-0.4.1[${PYTHON_USEDEP}] )
tasmota? ( >=dev-python/HATasmota-0.8.0[${PYTHON_USEDEP}] )
tellduslive? ( >=dev-python/tellduslive-0.10.11[${PYTHON_USEDEP}] )
tesla? ( >=dev-python/teslajsonpy-0.18.3[${PYTHON_USEDEP}] )
tile? ( >=dev-python/pytile-2023.12.0[${PYTHON_USEDEP}] )
tomorrowio? ( >=dev-python/pytomorrowio-0.3.6[${PYTHON_USEDEP}] )
toon? ( >=dev-python/toonapi-0.3.0[${PYTHON_USEDEP}] )
totalconnect? ( >=dev-python/total-connect-client-2024.5[${PYTHON_USEDEP}] )
tplink? ( >=dev-python/python-kasa-0.6.2.1[${PYTHON_USEDEP}] )
tts? ( ~media-libs/mutagen-1.47.0[${PYTHON_USEDEP}] )
tuya? ( >=dev-python/tuya-device-sharing-sdk-0.1.9[${PYTHON_USEDEP}] )
unifi? ( >=dev-python/aiounifi-77[${PYTHON_USEDEP}] )
unifi_direct? ( >=dev-python/unifi-ap-0.0.1[${PYTHON_USEDEP}] )
upnp? ( ~dev-python/async-upnp-client-0.40.0[${PYTHON_USEDEP}] >=dev-python/getmac-0.9.4[${PYTHON_USEDEP}] )
usb? ( ~dev-python/pyudev-0.24.1[${PYTHON_USEDEP}] >=dev-python/pyserial-3.5[${PYTHON_USEDEP}] )
utility_meter? ( >=dev-python/croniter-2.0.2[${PYTHON_USEDEP}] )
vallox? ( >=dev-python/vallox-websocket-api-5.1.1[${PYTHON_USEDEP}] )
velbus? ( >=dev-python/velbus-aio-2024.5.1[${PYTHON_USEDEP}] )
velux? ( >=dev-python/pyvlx-0.2.21[${PYTHON_USEDEP}] )
vera? ( >=dev-python/pyvera-0.3.13[${PYTHON_USEDEP}] )
version? ( >=dev-python/pyhaversion-22.8.0[${PYTHON_USEDEP}] )
vicare? ( >=dev-python/PyViCare-2.32.0[${PYTHON_USEDEP}] )
vizio? ( >=dev-python/pyvizio-0.1.61[${PYTHON_USEDEP}] )
wake_on_lan? ( >=dev-python/wakeonlan-2.1.0[${PYTHON_USEDEP}] )
waqi? ( >=dev-python/aiowaqi-3.1.0[${PYTHON_USEDEP}] )
waze_travel_time? ( >=dev-python/pywaze-1.0.1[${PYTHON_USEDEP}] )
webostv? ( >=dev-python/aiowebostv-0.4.0[${PYTHON_USEDEP}] )
wemo? ( >=dev-python/pywemo-1.4.0[${PYTHON_USEDEP}] )
whois? ( >=dev-python/whois-0.9.27[${PYTHON_USEDEP}] )
wink? ( >=dev-python/pubnubsub-handler-1.0.9[${PYTHON_USEDEP}] >=dev-python/python-wink-1.10.5[${PYTHON_USEDEP}] )
withings? ( >=dev-python/aiowithings-2.1.0[${PYTHON_USEDEP}] )
wled? ( >=dev-python/wled-0.18.0[${PYTHON_USEDEP}] )
workday? ( >=dev-python/holidays-0.51[${PYTHON_USEDEP}] )
xbox_live? ( >=dev-python/xboxapi-2.0.1[${PYTHON_USEDEP}] )
xiaomi_aqara? ( >=dev-python/PyXiaomiGateway-0.14.3[${PYTHON_USEDEP}] )
xiaomi_miio? ( >=dev-python/construct-2.10.68[${PYTHON_USEDEP}] >=dev-python/micloud-0.5[${PYTHON_USEDEP}] >=dev-python/python-miio-0.5.12[${PYTHON_USEDEP}] )
xiaomi_tv? ( >=dev-python/pymitv-1.4.3[${PYTHON_USEDEP}] )
xs1? ( >=dev-python/xs1-api-client-3.0.0[${PYTHON_USEDEP}] )
yamaha? ( >=dev-python/rxv-0.7.0[${PYTHON_USEDEP}] )
yamaha_musiccast? ( >=dev-python/aiomusiccast-0.14.8[${PYTHON_USEDEP}] )
yeelight? ( >=dev-python/yeelight-0.7.14[${PYTHON_USEDEP}] ~dev-python/async-upnp-client-0.40.0[${PYTHON_USEDEP}] )
yi? ( >=dev-python/aioftp-0.21.3[${PYTHON_USEDEP}] )
zeroconf? ( >=dev-python/zeroconf-0.132.2[${PYTHON_USEDEP}] )
zerproc? ( >=dev-python/pyzerproc-0.4.8[${PYTHON_USEDEP}] )
zha? ( >=dev-python/bellows-0.39.1[${PYTHON_USEDEP}] >=dev-python/pyserial-3.5[${PYTHON_USEDEP}] >=dev-python/zha-quirks-0.0.116[${PYTHON_USEDEP}] >=dev-python/zigpy-deconz-0.23.1[${PYTHON_USEDEP}] >=dev-python/zigpy-0.64.1[${PYTHON_USEDEP}] >=dev-python/zigpy-xbee-0.20.1[${PYTHON_USEDEP}] >=dev-python/zigpy-zigate-0.12.0[${PYTHON_USEDEP}] >=dev-python/zigpy-znp-0.12.1[${PYTHON_USEDEP}] >=dev-python/universal-silabs-flasher-0.0.20[${PYTHON_USEDEP}] >=dev-python/pyserial-asyncio-fast-0.11[${PYTHON_USEDEP}] )
zhong_hong? ( >=dev-python/zhong-hong-hvac-1.0.12[${PYTHON_USEDEP}] )
zoneminder? ( >=dev-python/zm-py-0.5.4[${PYTHON_USEDEP}] )
zwave_js? ( >=dev-python/pyserial-3.5[${PYTHON_USEDEP}] >=dev-python/zwave-js-server-python-0.56.0[${PYTHON_USEDEP}] )"
BDEPEND="${RDEPEND}
test? (
>=dev-python/astroid-3.2.2[${PYTHON_USEDEP}]
>=dev-python/coverage-7.5.0[${PYTHON_USEDEP}]
>=dev-python/freezegun-1.5.0[${PYTHON_USEDEP}]
>=dev-python/mock-open-1.4.0[${PYTHON_USEDEP}]
>=dev-python/mypy-dev-1.11.0_alpha3[${PYTHON_USEDEP}]
>=dev-python/pipdeptree-2.19.0[${PYTHON_USEDEP}]
>=dev-vcs/pre-commit-3.7.1
>=dev-python/pydantic-1.10.15[${PYTHON_USEDEP}]
>=dev-python/pylint-per-file-ignores-1.3.2[${PYTHON_USEDEP}]
>=dev-python/pylint-3.2.2[${PYTHON_USEDEP}]
>=dev-python/pytest-asyncio-0.23.6[${PYTHON_USEDEP}]
>=dev-python/pytest-cov-5.0.0[${PYTHON_USEDEP}]
>=dev-python/pytest-freezer-0.4.8[${PYTHON_USEDEP}]
>=dev-python/pytest-github-actions-annotate-failures-0.2.0[${PYTHON_USEDEP}]
>=dev-python/pytest-picked-0.5.0[${PYTHON_USEDEP}]
>=dev-python/pytest-socket-0.7.0[${PYTHON_USEDEP}]
>=dev-python/pytest-sugar-1.0.0[${PYTHON_USEDEP}]
>=dev-python/pytest-timeout-2.3.1[${PYTHON_USEDEP}]
>=dev-python/pytest-unordered-0.6.0[${PYTHON_USEDEP}]
>=dev-python/pytest-xdist-3.6.1[${PYTHON_USEDEP}]
>=dev-python/pytest-8.2.0[${PYTHON_USEDEP}]
>=dev-python/requests-mock-1.12.1[${PYTHON_USEDEP}]
>=dev-python/respx-0.21.1[${PYTHON_USEDEP}]
>=dev-python/syrupy-4.6.1[${PYTHON_USEDEP}]
>=dev-python/tqdm-4.66.4[${PYTHON_USEDEP}]
>=dev-python/uv-0.1.43
)
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]"
src_prepare() {
if use test ; then
cp --no-preserve=mode --recursive ${WORKDIR}/core-${MY_PV}/tests ${S}
chmod u+x ${S}/tests/auth/providers/test_command_line_cmd.sh
fi
sed -E -i "s/regex==[^ ]*/regex/g" -i homeassistant/package_constraints.txt || die
distutils-r1_src_prepare
}
INSTALL_DIR="/opt/${MY_PN}"
DISABLE_AUTOFORMATTING=1
DOC_CONTENTS="
The HA interface listens on port 8123
hass configuration is in: /etc/${MY_PN}
daemon command line arguments are configured in: /etc/conf.d/${MY_PN}
logging is to: /var/log/${MY_PN}/{server,errors,stdout}.log
The sqlite db is by default in: /etc/${MY_PN}
support at https://git.edevau.net/onkelbeh/HomeAssistantRepository
"
DOCS="README.rst"
python_install_all() {
dodoc ${DOCS}
distutils-r1_python_install_all
keepdir "$INSTALL_DIR"
keepdir "/etc/${MY_PN}"
fowners -R "${MY_PN}:${MY_PN}" "/etc/${MY_PN}"
keepdir "/var/log/${MY_PN}"
fowners -R "${MY_PN}:${MY_PN}" "/var/log/${MY_PN}"
newconfd "${FILESDIR}/${MY_PN}.conf.d" "${MY_PN}"
newinitd "${FILESDIR}/${MY_PN}.init.d" "${MY_PN}"
use systemd && systemd_dounit "${FILESDIR}/${MY_PN}.service"
dobin "${FILESDIR}/hasstest"
if use socat ; then
newinitd "${FILESDIR}/socat-zwave.init.d" "socat-zwave"
sed -i -e 's/# need socat-zwave/need socat-zwave/g' "${D}/etc/init.d/${MY_PN}" || die
fi
if use mqtt ; then
sed -i -e 's/# need mosquitto/need mosquitto/g' "${D}/etc/init.d/${MY_PN}" || die
fi
insinto /etc/logrotate.d
newins "${FILESDIR}/${MY_PN}.logrotate" "${MY_PN}"
readme.gentoo_create_doc
}
pkg_postinst() {
readme.gentoo_print_elog
}
distutils_enable_tests pytest

View File

@ -3,5 +3,8 @@ AUX zigbee2mqtt.conf 176 BLAKE2B f1003f37135e10a32c3fe7b387da9f4194cae82339edf77
AUX zigbee2mqtt.service 881 BLAKE2B d506772a2254aea2f1ac92db43ff1fdb842002b0afb5dc2ee71952474a58f5070c62546d216398c1f3b5951f84e4e27f3c53c0983a0851f1f7e20600f2291cff SHA512 4c13c70379c6c52146491720d523b114e59e1b4a830402ee91b93a34f6c811153780cba8e58690685895eb47c30457a5087824451bfca6eeee7c2461169be562
DIST zigbee2mqtt-1.35.2-node_modules.tar.xz 16119144 BLAKE2B 467c9424f59b935a1e66ba365e5d7bdc4811729e0baf933ba365f6b904414d8975408beaed189a9bc00d83271fc35e15a52b7765f36e65cda00deb9480005e45 SHA512 765e1730d898627f603e3faf7fb67012a159b19f6b648f3d3ba7d0751b4e1c4cc5acf618ecf4697817f48cbc6bcfaa8878df5c8b10235ae65157ed80e4536904
DIST zigbee2mqtt-1.35.2.tar.gz 510837 BLAKE2B 869b3a8bd081e63f4f2d5157752e39c05ecc0e51f6b8baaa15e38462ecf3674ba98eb0ba5466a2aa13e6e6d17b19ede25b0aae19e0c3117e493cfd03d195c5a6 SHA512 6f719868350ded46f0b4596c887fc2be55a316f549dd6cc26f358bd7260a250da6d9ed1a3305340327e627e0ceeda7216ba555bc39c31bc1284d6fb0142c4aac
DIST zigbee2mqtt-1.39.1-node_modules.tar.xz 17467408 BLAKE2B 463a38cae2f509bea16a7ceb3567df1a9857c69ef25747dcb56a2f787c5b0eae5d27c28694c724745d49240c8b926184088f5358ef340679e2d5080aac86e695 SHA512 f6dc277bac8aab6d084416539ea722e8344d1a55d400e88f29e4d5217d7097649c73e684f33d5fabbe60289dd9dddf59fccb6df3dbf895bac1ae680cb7b11741
DIST zigbee2mqtt-1.39.1.tar.gz 548291 BLAKE2B 352d3f9895c19d7bac2dc5f9c680bc1e5751738b97bf4d98a655a5adbcae86bcb41f2a24511bf03f6532ece1f773529b38cdfa91f0d2770692652bc572478e4a SHA512 2926a1ee047a4f4578727086e3b180b6ee8f922a52e4678128ac1a7241a649f9641cebcf068f22a3ab256efa15ad210ac71c38608af42696971d5483541fa3e0
EBUILD zigbee2mqtt-1.35.2.ebuild 1807 BLAKE2B 6d6650fc10ad27450465b8278ef9ab114fdc6b92ebf0ab89b51de0675bae3d0ee628a7568f48a77fe9fde0d82e034d1a11e25e95df6456aa4e95ab1926521269 SHA512 166259ea2a28556d009258dbb714079dba6e0bd8ce986f854c8dc3b95a789f45746d94a4641a7cd60341f6b803b0befa05f407e5fc090491ddfc47ca0fcaf084
EBUILD zigbee2mqtt-1.39.1.ebuild 1807 BLAKE2B 6d6650fc10ad27450465b8278ef9ab114fdc6b92ebf0ab89b51de0675bae3d0ee628a7568f48a77fe9fde0d82e034d1a11e25e95df6456aa4e95ab1926521269 SHA512 166259ea2a28556d009258dbb714079dba6e0bd8ce986f854c8dc3b95a789f45746d94a4641a7cd60341f6b803b0befa05f407e5fc090491ddfc47ca0fcaf084
MISC metadata.xml 480 BLAKE2B dc80fdb17a73b1f63ef970674d5bb1a950b14d6d318276ad3303157dd93fbba9165a9e2b70a0380cbf70b77ecf31ed856698f7887ae0bc09a5d71c66ff7d4b42 SHA512 e7cbfb9fb939af0066a1a779af9af60df9a45d7b42b16706f6dcd321e4bd5b9b432120321b9cfe0d28809cd207f8aba36f9119c07b6adefe109acd207a15e51d

View File

@ -0,0 +1,68 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI="https://github.com/Koenkk/zigbee2mqtt"
EGIT_BRANCH="dev"
inherit git-r3
else
SRC_URI="https://github.com/Koenkk/zigbee2mqtt/archive/${PV}.tar.gz -> ${P}.tar.gz
https://raw.githubusercontent.com/inode64/inode64-overlay/main/dist/${P}-node_modules.tar.xz"
fi
inherit nodejs-mod systemd tmpfiles
DESCRIPTION="It bridges events and allows you to control your Zigbee devices via MQTT"
HOMEPAGE="https://www.zigbee2mqtt.io/"
COMMIT="06b3395cff4fa938aa29a55112605becfafc83b1"
LICENSE="0BSD Apache-2.0 BSD-2 CC-BY-4.0 GPL-3 ISC MIT PYTHON"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
acct-group/zigbee2mqtt
acct-user/zigbee2mqtt
app-misc/mosquitto
"
pkg_pretend() {
if [[ -e "${EROOT}/etc/env.d/90${PN}" ]] && \
! grep -q "CONFIG_PROTECT=\"/var/lib/${PN}\"" "${EROOT}/etc/env.d/90${PN}" 2>/dev/null; then
eerror "Bad CONFIG_PROTECT"
eerror "update ${EROOT}/etc/env.d/90${PN} to include CONFIG_PROTECT=\"/var/lib/${PN}\""
eerror ""
eerror ""
die "Bad CONFIG_PROTECT"
fi
}
src_install() {
echo "${COMMIT}" > dist/.hash
echo -e "\nadvanced:" >>data/configuration.yaml
echo -e " network_key: GENERATE" >>data/configuration.yaml
echo -e " pan_id: GENERATE" >>data/configuration.yaml
echo -e " log_directory: /var/log/${PN}" >>data/configuration.yaml
nodejs-mod_src_install
keepdir /var/log/${PN}
insinto /var/lib/${PN}
doins data/configuration.yaml
dotmpfiles "${FILESDIR}"/zigbee2mqtt.conf
doinitd "${FILESDIR}"/${PN}
systemd_dounit "${FILESDIR}/${PN}.service"
dodir /etc/env.d
echo "CONFIG_PROTECT=\"/var/lib/${PN}"\" >>"${ED}"/etc/env.d/90${PN} || die
}
pkg_postinst() {
tmpfiles_process zigbee2mqtt.conf
}

View File

@ -2,8 +2,10 @@ DIST aioesphomeapi-23.0.0.tar.gz 95662 BLAKE2B 2ccca7363be3a1afa4bdbb84f95932b8e
DIST aioesphomeapi-23.2.0.tar.gz 97151 BLAKE2B 69259663f9b683904f9769740612930d2c44d9557bf446d250effd3104f5edd52aab167ba4714e8fa9c77c481eb66b946209c946655a316547aa509c570e7908 SHA512 b22b7ed90c60b73168c007e576ffe2c590d5e176fa7083a7c8a75c3c602132b8e03ad7943bd7c5f01b5129b403e7d4a1ad9f16283fcd15fd91374f58f83ac71e
DIST aioesphomeapi-24.3.0.tar.gz 99402 BLAKE2B a605d1d8ab2ca0a174a4977ba6d8c21204f68534ad18eb81e100573d44cc54d633653e66bce53f8057fe756b1af8f181baee6fbdb4c8db7e2c21c9146b2b16e9 SHA512 7726465a0e137c8f6cab897fbc4e66b35e2ee833b6549f485536a068f88e8c06c752485ebd9e5cdfe52adf100c7b02701700dc6e1326f823275a918ffca428da
DIST aioesphomeapi-24.5.0.tar.gz 100067 BLAKE2B 2005e2f401b05a121b49eb3b15e46d98ed8f4792ca3330cf4b7013ad832f799ce5d3e61a9dd429605ff6926462672a9ec2cc482b430cb1d6da570944505b1bec SHA512 7f4103247511fcd557230cac7d1891d98a31b41abba31275c57912b72243ec5bec91b50e453867f8dd9d855de19608e13c995756dbed8625d19a57e05d702ce5
DIST aioesphomeapi-25.0.0.tar.gz 101135 BLAKE2B ad32a8a6b0b36fd3d5ea564d01695aa2071e596f2da9fe3e6d73e44c46f1ed5f2de6ac8f54f4618a602affa138f63541edebfa9ebbcc64189ffd41eff9610936 SHA512 95a0a3265b8ecf2552551cc7edb9160195bf1cf6b134fb7f6dc1c280b85b2ecb3daa0b3218652bde229c86d1e463a61b85cf6105aeac649663e5106560410601
EBUILD aioesphomeapi-23.0.0.ebuild 1141 BLAKE2B 5e61dd900e1a398754278cc85c93554bbaa12a4974584e8ac6418409e13529279b291c9dfe570d09dcf348d15da92bc06cd9a60ec6606704a49c89914018d6d8 SHA512 153bcd37d7b2bed773dae5d02af1d61523101d69f917c9463b5113ac5c4372adba0128af35a03964441cf831cef27285e335f1525c8d900d247ff0753bff668b
EBUILD aioesphomeapi-23.2.0.ebuild 1103 BLAKE2B 06ccb6465df3d8367ccbe993c4b3a1de9249a60a20dda5bb555f063056bdee415f8bd6f8bd9746c2c4e4e4f2b47e09cee5192494d5f45401361fee0da1c282c0 SHA512 8ed76d7281d900165ec83b6ecffd947a250e0d0b1612eeb19c68ffa003f3764add947d5a4db4c17d403cdf2eaddd1533e265c78161ef0abfd5e61ec93ae14a10
EBUILD aioesphomeapi-24.3.0.ebuild 1103 BLAKE2B 99809bfa2ea2667637c09727a5df06beda28a88c3023f0f164dd5d939289982a2a7c21a3338276ff9d7c0d5345b9de0274bd6ba4a7e412a89a7321ecc1c9db6d SHA512 1ff7c4bf9d51f5e68a4e1c3e5c58f102234c5a2548d3cab1a591f83d823c46b14e822b8433260ef71406da698dd8085ce09cb48a9235c21647019b5c5b4d22d3
EBUILD aioesphomeapi-24.5.0.ebuild 1103 BLAKE2B 99809bfa2ea2667637c09727a5df06beda28a88c3023f0f164dd5d939289982a2a7c21a3338276ff9d7c0d5345b9de0274bd6ba4a7e412a89a7321ecc1c9db6d SHA512 1ff7c4bf9d51f5e68a4e1c3e5c58f102234c5a2548d3cab1a591f83d823c46b14e822b8433260ef71406da698dd8085ce09cb48a9235c21647019b5c5b4d22d3
EBUILD aioesphomeapi-25.0.0.ebuild 1103 BLAKE2B 99809bfa2ea2667637c09727a5df06beda28a88c3023f0f164dd5d939289982a2a7c21a3338276ff9d7c0d5345b9de0274bd6ba4a7e412a89a7321ecc1c9db6d SHA512 1ff7c4bf9d51f5e68a4e1c3e5c58f102234c5a2548d3cab1a591f83d823c46b14e822b8433260ef71406da698dd8085ce09cb48a9235c21647019b5c5b4d22d3
MISC metadata.xml 520 BLAKE2B 06f0b9632f9daeb7662061dd7277de8f2a517afb329d669d5e65b7b529620e649104183c8cac30c8529a4de1fab162ba67b34c92a922ac716e823b539ebddc0b SHA512 9a21c2ffdb8630b4f594170537a56e9d74996b2c5ddd28df7f98c17802913205b98658863be4721b343e30de692aaa90162c51268d52c07fbdacb415f2efa6c6

View File

@ -0,0 +1,35 @@
# 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=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Python API for interacting with ESPHome devices."
HOMEPAGE="https://github.com/esphome/aioesphomeapi https://esphome.io/ https://pypi.org/project/aioesphomeapi/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/aiohappyeyeballs-2.3.0[${PYTHON_USEDEP}]
>=dev-python/async-interrupt-1.1.1[${PYTHON_USEDEP}]
>=dev-python/protobuf-python-3.19.0[${PYTHON_USEDEP}]
>=dev-python/zeroconf-0.132.2[${PYTHON_USEDEP}]
>=dev-python/chacha20poly1305-reuseable-0.12.1[${PYTHON_USEDEP}]
>=dev-python/cryptography-42.0.2[${PYTHON_USEDEP}]
>=dev-python/noiseprotocol-0.3.1[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/mock[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/pylint[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest

View File

@ -1,8 +1,10 @@
DIST aioshelly-10.0.1.tar.gz 35807 BLAKE2B e05b8816a2d3e30a164bc337f5e6ba1c558e6482ba1e0a33fe646fbd08b2e21068463353a15e7b894f04fbb53aefcb54edb9ecb711efc1c0654b425527699c8d SHA512 18b5ffd99891e0d9e0f4b0f520bd498009fa9cbed59349dc6e512176b88cda1ef5fb12d1993b5845639c494badb4b4fd030d75196e8595fc21dc993e4f40c943
DIST aioshelly-11.2.4.tar.gz 36647 BLAKE2B 9d61ff195913f857e9e85e2570d1e17d66b87a47147fe00b5c710ddb9346b813e9298389787bfb54146de924dc18e1aa38f235f01870a5a116a66381f514b78a SHA512 23e770ade827e3860b3d2620eb8befe34fea37c88a3c1d571b62dc706b6f80df06ed2728eb7b144edbeb624b56cde2db80ab5b97aeb1f383a7757a8d5776a432
DIST aioshelly-8.1.1.tar.gz 29377 BLAKE2B 10dd116efc28cb49e123271346531dbb8ec8ae1331e7ce1f3e6eb3773303d1efdcb476a32c2cc3c7552b056405761b2248955bf4e8fb6a87c55f4976c0e3d75e SHA512 719f755b72e9e7c664188eb2762e421ebd5752084c9b4124a2a8e7eb19bbd0291fd49b7bb7988b9c5e4e843d5ca532c3440b2a9da59409de2193aaf18483516a
DIST aioshelly-8.2.0.tar.gz 35668 BLAKE2B b897947ae1576b95a1c80ed28d13337b7d8f800a861e3643b8e8e53987c6f908c8cadfcbadbfa11b336c07273ffac98bdc5f1d4519d5d726ea7455f82344ad95 SHA512 ac892806f0fb8717c09fc099dc3d02df08668957137c6655e202d115dda2f01f34efc8798649b2614325e8c2ad8d000801d6e12567e35cb1a688466636a99e66
DIST aioshelly-9.0.0.tar.gz 35489 BLAKE2B 70045f179a05b2b5e15d29f04703384ad21a3ff3b0f4432f7a8a30333de85c25890c651364b542cf69285e033cfcb04d463a066cd1f8f195a95bcac6bfdcd0e4 SHA512 c1ad108c9aac34369f53c1811ca71f3c2592b6f3057585590cc6b34f8336ceb26150773d35d2ea273e0e7ef4814208e9b1fe2a0c2cac0e261454f5fdd06f2082
EBUILD aioshelly-10.0.1.ebuild 815 BLAKE2B 88fa9d841f3bf2b696e2455a04897ff432bc013ad3dded5298f6029338605edbb31a9ac41d6cb5cee9e1c69528680f343ac4f94fca79c515ee8f56c15154667f SHA512 8c97321a921890f3fb5e5f68508cbdee216348081cf2963e38df20a9f25be76bc7cb55aa7a597c70c9424b1aaac702d6e617d56be10e2d57bf6274076790ade9
EBUILD aioshelly-11.2.4.ebuild 785 BLAKE2B 2f6324903683abb1d76088a2078beb435f18709534dcf92835c0e36afc241dc74ac1413f790bffd23191cb0a32637ef9d8ab6e7e8cabaaf9b602c4f82c3d911b SHA512 cface0b51618740449f6c3b7f93eb727c4a9b0d0e6477034df3adb016036a62567504638e36b7b0aae48b7caad4c6ac0b7f6115bddbcad8009bffd1958bf66ab
EBUILD aioshelly-8.1.1.ebuild 815 BLAKE2B 88fa9d841f3bf2b696e2455a04897ff432bc013ad3dded5298f6029338605edbb31a9ac41d6cb5cee9e1c69528680f343ac4f94fca79c515ee8f56c15154667f SHA512 8c97321a921890f3fb5e5f68508cbdee216348081cf2963e38df20a9f25be76bc7cb55aa7a597c70c9424b1aaac702d6e617d56be10e2d57bf6274076790ade9
EBUILD aioshelly-8.2.0.ebuild 815 BLAKE2B 88fa9d841f3bf2b696e2455a04897ff432bc013ad3dded5298f6029338605edbb31a9ac41d6cb5cee9e1c69528680f343ac4f94fca79c515ee8f56c15154667f SHA512 8c97321a921890f3fb5e5f68508cbdee216348081cf2963e38df20a9f25be76bc7cb55aa7a597c70c9424b1aaac702d6e617d56be10e2d57bf6274076790ade9
EBUILD aioshelly-9.0.0.ebuild 815 BLAKE2B 88fa9d841f3bf2b696e2455a04897ff432bc013ad3dded5298f6029338605edbb31a9ac41d6cb5cee9e1c69528680f343ac4f94fca79c515ee8f56c15154667f SHA512 8c97321a921890f3fb5e5f68508cbdee216348081cf2963e38df20a9f25be76bc7cb55aa7a597c70c9424b1aaac702d6e617d56be10e2d57bf6274076790ade9

View File

@ -0,0 +1,29 @@
# 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=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Asynchronous library to control Shelly devices."
HOMEPAGE="https://github.com/home-assistant-libs/aioshelly https://pypi.org/project/aioshelly/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
>=dev-python/bluetooth-data-tools-1.19.0[${PYTHON_USEDEP}]
>=dev-python/habluetooth-2.1.0[${PYTHON_USEDEP}]
dev-python/yarl[${PYTHON_USEDEP}]
>=dev-python/orjson-3.8.1[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/requests[${PYTHON_USEDEP}]
)"

View File

@ -1,5 +1,7 @@
DIST bluetooth_data_tools-1.19.0.tar.gz 15860 BLAKE2B 863027495bbaea670aa117dea919230d2975cf4d6c578193023e36ba135adfca60bd59fbbaf2f8642382c2615975af2d300b00ab6bff3ffd58145a350366fc54 SHA512 1a913ebb3bc45dfc613446cd9bd3221d198fcd00f0c87e83833e82b08f418fc84b913ad514cb0dbcce8cbf38a02dafec3cb14ef11b13911f4d5b0adf3db9ce68
DIST bluetooth_data_tools-1.19.4.tar.gz 16040 BLAKE2B 41d89265a7f9c3a50401dcbc874d2211f59176879f7db060606b6a7fcca81bfd5ae93815dae425c941a789279d073dec17baeca5792dc8b96e0c7e165f185fcd SHA512 de2a911fa66735c73fbb8c7c75b54a560cb4bb75f73bc80fa35b179d8df2b6d88bd86e15cd8c775a1b2dc5aaae67925462c40697535eb6859bcae30f18c79016
DIST bluetooth_data_tools-1.20.0.tar.gz 16093 BLAKE2B 5ff7f56f35b8fa72bb17fd82d4ae821b9bb811b5f14156a1191b9f25895ecb1dd650ebd0b08070e22754f4c6c2e620b34799e1220e74d7d857cc7bae5e4e19f5 SHA512 d70e00e4dcf8f2b8ad71ac587995b2db31b3ec4d8beece84ff80c895cf2605155f804ee8dde9adc953e156b133f88a8be6e86d885a03dd56878a78f357028e70
EBUILD bluetooth-data-tools-1.19.0.ebuild 719 BLAKE2B 402c118d9d703b8e8977d6ca0f41eb3b810ee1f44c63a7421937f66c0964b462f36e315db2889e9a956b63aa6004855de17fb001d94a70c60f65040ed0d1ac66 SHA512 3b68d983c85513483779bd70dff50b276df5f3b63dc8ef1e3ba7fbc26ae69bc345fc0be2e024f5aac51c9527f726cc77daaf05d1411b16eb5cec59fe06f39906
EBUILD bluetooth-data-tools-1.19.4.ebuild 719 BLAKE2B 3a23bf9f943b0147fc15606b774eefa1e6814e818af3fa05c99ae5fbdadfbb291360ae137315765ee550be2f67b2e87e95dc2794993f79a37bfd1969337f3213 SHA512 91efa8b63093f7c9b927191471615de252929b4217ec6196869f7c871e329371ada4d4ac99e1325644336ccea0640b01204439d5d296aa552d897a2a5e3d13a5
EBUILD bluetooth-data-tools-1.20.0.ebuild 681 BLAKE2B ea11d1e7ac934326c515cdc2628adf07b06ae68861e912a140df1b2fec1701c859bec3621825f71d5b2cb146493be86fa9265847e8e611da2af1139427ca4378 SHA512 5d51f08dd1ce4ab486ec6629d9bf3081c8402682978a38a1e31b7db5d95a848773957f409e07f50c107a68f15e700116c289513e474763d5527507b3a92260fd
MISC metadata.xml 531 BLAKE2B dfe73f41530273a0247cd87f68280675e0667b36d5bbbfea05e1dc4b485d923d96547ff0551864ebbaa991122235e0b13150aff148092d8d8dcb544a95a49c5d SHA512 88002e357b71f089566f5db4e514fdc6d072088e0bb67f2d7943759f9b2d8cfb9a7874d3fd56b315871ff060af3459053e522cd1bf152423bbf35f38c1e9efc1

View File

@ -0,0 +1,27 @@
# Copyright 1999-2024 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="Tools for converting bluetooth data and packets"
HOMEPAGE="https://github.com/bdraco/bluetooth-data-tools https://pypi.org/project/bluetooth-data-tools/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
BDEPEND="
>=dev-python/cryptography-41.0.3[${PYTHON_USEDEP}]
>=dev-python/cython-3.0.2[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest

View File

@ -1,7 +1,9 @@
DIST dbus_fast-2.21.1.tar.gz 69413 BLAKE2B 65f83b2b78fcc042000f0723768a2f405e43d2c7eaefe2097719e6b6c5a259edcfa3f84359bd39e9889f79559cde1b904b2aa3e814e6c833bbf42c485058fc78 SHA512 100e848c2da713fefdaab8eabdcda83828116eb7ea48332bdd61b870b859c06e5a57c9ff95a4347fd087ca222c0f7cd0ab9e6059c37c29e8c57f64848c7e7da6
DIST dbus_fast-2.21.3.tar.gz 69591 BLAKE2B 7f1f5a4021a49b22037cb54d51447f41e9ae61b3e17456321deaf19c4b1fffe44ee784b6dca0fbf1b61849c14ad15dacf007b8578f2eb56cb2eb627c9466dc01 SHA512 d98bcb34b62021d9832c65e8642b24dc5b3c1e5f636ffa8751255cb9d02992eacea720cd46d762b251974174e0e85976cf5f385aef466b5436fb0db5bc03c426
DIST dbus_fast-2.22.1.tar.gz 69596 BLAKE2B baecb7d57c37b5f1479c24de0402c9830fc09acfeecf671ba2c25b5060c24e3451c6d2cbcd83b1aba2145976ae9a2fb30c76d51775729011850e8b03c464599d SHA512 f4ee8bb4a22421cc4478d1886578ef76651accb21a6a8ac178c125f6e587d7f33b0f1368f5633d38abef9d6468e0a2f3f49df35234d83c4294b2f34be2de8183
DIST dbus_fast-2.24.0.tar.gz 69650 BLAKE2B 348254c282f8bfbc382ab27e910a093ee0bff10df41855e268da4f5892bcce206815a328a441dcb22a21f12a73b1e770bfabc5e205c12ae96aeae284c702ec8e SHA512 c3a4721e5adaba6f150a14cf6c800464f6942cffb796107b7640ed9b8c36432f7c2bcb9b4d21f891e7c77c9d6dbecd536d451486b7a3524abf5772aad922db10
EBUILD dbus-fast-2.21.1.ebuild 636 BLAKE2B 1a027e1f9ef26231a00134a41d495b08039328df6621bacfd49522f4873745219048d649e5b0e1e00dae73236190c849f6883f1d9cc4a2a735f5958f7930a376 SHA512 10241fb5605e60ff247b5fe839c784b3e5bae5a8f273104048f7ae06e1dcc86b592b8b9ed7ef13f6bc65b87dada980dda492158675de4e9b99c9313f5fcc19d3
EBUILD dbus-fast-2.21.3.ebuild 682 BLAKE2B 7288e77838b7a09df8f585a1a12c163460642f3b66ed58a514a638e092de02bf905c755a3e70c9c469d80bf1fe33318d629a31db39ffc442980f619184cf50fa SHA512 4ff0a6a0f6103a1761b2c3fc698688b4eca38e65d41e5386c02f72c93162389a3be05ffc2a2d8a2b118d5d08182aa45593f2c817b83d9aceb850798ab285b556
EBUILD dbus-fast-2.22.1.ebuild 682 BLAKE2B 7288e77838b7a09df8f585a1a12c163460642f3b66ed58a514a638e092de02bf905c755a3e70c9c469d80bf1fe33318d629a31db39ffc442980f619184cf50fa SHA512 4ff0a6a0f6103a1761b2c3fc698688b4eca38e65d41e5386c02f72c93162389a3be05ffc2a2d8a2b118d5d08182aa45593f2c817b83d9aceb850798ab285b556
EBUILD dbus-fast-2.24.0.ebuild 682 BLAKE2B 7288e77838b7a09df8f585a1a12c163460642f3b66ed58a514a638e092de02bf905c755a3e70c9c469d80bf1fe33318d629a31db39ffc442980f619184cf50fa SHA512 4ff0a6a0f6103a1761b2c3fc698688b4eca38e65d41e5386c02f72c93162389a3be05ffc2a2d8a2b118d5d08182aa45593f2c817b83d9aceb850798ab285b556
MISC metadata.xml 536 BLAKE2B a40db9bdf197d24d699a8bd057de139bd22e971e7c65d63761158a2a2ffc7c609925d93a4a4249d09e5290a2102fde9e8d72569ebf163a78aa108a3221d14d25 SHA512 957a46de989121f016a5c78ae73569e420b030265e1bc8568452171374c6727a5f1fc93c6c97ac95976d1541907c5676b4032d3f0fcd1b9dad1c57e4c72f50b7

View File

@ -0,0 +1,28 @@
# 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="A faster version of dbus-next"
HOMEPAGE="https://github.com/bluetooth-devices/dbus-fast https://pypi.org/project/dbus-fast/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
BDEPEND="
>=dev-python/cython-3[${PYTHON_USEDEP}]
test? (
dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-timeout[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest

View File

@ -1,7 +1,9 @@
DIST habluetooth-2.8.1.tar.gz 33429 BLAKE2B 1c2a81596d91a4be98b4f771becc80cfd0f2bd8f94d340c7bab4baeffd9c564f067e8e63e526144df0f1ebbc3ba2f6bbd8ad8feb055fc1d3b61ef2edf7748a36 SHA512 f0c2c313250d2d8737edefef9d9f1680699ce31b61ea9187146d3a9b18c13bb0771f33781a7569d4194fb5ffc86190c8667dc5dbb699b8b35a4ce70d3ffec064
DIST habluetooth-3.1.1.tar.gz 33640 BLAKE2B c848a8881d07dfe6da7da44a45bf2803278faf8c4b8da6d63fee416d97ba89b9eac48d40d4c587da29a16a714e39bce7677370f00df217104b305e970168ac2f SHA512 0f25fa5cc4ee4e7b57e7c6704537f920e42d6b81e79dbac6f3d649d28e1c485fe97033467c4ccb2cf32b5a5edef26b40cd8cbe0479749678007edd4217e0e841
DIST habluetooth-3.1.3.tar.gz 33648 BLAKE2B 6beb3dd2096afd49a618c3cf4f08a4fc9cccfa5292c4fbc9d1b311eee3e6366aedb1139952856be1e032d4854097eefdea3d81808d2d04fba4438413e6d6dd65 SHA512 2cce0474f97b9b75b50f1ce167264c2a07431c2288b536382f22fc404c49ea6b36964c366e92f6a84f095c292fc696f8adfbbfcca6ab76a12e43c9e09fcb6230
DIST habluetooth-3.4.0.tar.gz 33978 BLAKE2B 9dbe67a410c83d33c0730d892171332fe8d9bebb9d436d6bd2f2f93e661cf475d35e1cb93b696589b6893fd0051aaf2e2b1fbcb8890291ac7ee634b801b102b1 SHA512 92aa91da882aef0469320a3c8c365b356fc4df0b26bbe1de1dd8d76f5270518e5979d4349b11e3bcdd8ebe958ebdb4958e9c06520beb52ed0c38176cc4558194
EBUILD habluetooth-2.8.1.ebuild 944 BLAKE2B 4ec6efb62f2ec1747702be4bdadf5ae104663ed03dfd1c5bd5582acd2447106166e35cbd5582660a85e92b999da0c4c77b6e5cff31b14ff4a7c17e6a1f6cdfca SHA512 f751415b3b56ebe99274ed3639accf7370172d467cc5d8b00b9a0974a07eeb9f69aeaa815553907d75a367fc17f23c1bee2cfec1d733a3de459bcaecb3da8e11
EBUILD habluetooth-3.1.1.ebuild 944 BLAKE2B 4ec6efb62f2ec1747702be4bdadf5ae104663ed03dfd1c5bd5582acd2447106166e35cbd5582660a85e92b999da0c4c77b6e5cff31b14ff4a7c17e6a1f6cdfca SHA512 f751415b3b56ebe99274ed3639accf7370172d467cc5d8b00b9a0974a07eeb9f69aeaa815553907d75a367fc17f23c1bee2cfec1d733a3de459bcaecb3da8e11
EBUILD habluetooth-3.1.3.ebuild 944 BLAKE2B 4ec6efb62f2ec1747702be4bdadf5ae104663ed03dfd1c5bd5582acd2447106166e35cbd5582660a85e92b999da0c4c77b6e5cff31b14ff4a7c17e6a1f6cdfca SHA512 f751415b3b56ebe99274ed3639accf7370172d467cc5d8b00b9a0974a07eeb9f69aeaa815553907d75a367fc17f23c1bee2cfec1d733a3de459bcaecb3da8e11
EBUILD habluetooth-3.4.0.ebuild 990 BLAKE2B 68f6922abf2db59928406c3256c9ca34d520fe1829bd65213441ddcdb43129103bc2e21fba8ceba61a297da3339d531a1701fe331d2a11ae22755449bdfca2b2 SHA512 51a5ba11da44a1ef8e8d9b7daf29cbd997c0874ff93fc7edbaa08e64791f22406832caa0e2b24c2ee5a6225b81c92e6626c8052098cbbd56d3307aef1c76fd4b
MISC metadata.xml 529 BLAKE2B d5b1105a3535ac5fa41482f130d3f2bcdadedb14878cda087b258bf683ed68114eb4da36c9c42bf65545cfb75ec2295498c6f0ffe4fbc8016befcba4c6d9afd6 SHA512 e5a8681a4bfaa8d1fdbaf72543550b4620b22e0eba693505e552e932f8b42d4d63738ad1e2b0205332c409f5230b50cd75426978b7dc4acc11e786897cd87945

View File

@ -0,0 +1,33 @@
# 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="High availability Bluetooth"
HOMEPAGE="https://github.com/bluetooth-devices/habluetooth https://pypi.org/project/habluetooth/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/bleak-0.21.1[${PYTHON_USEDEP}]
>=dev-python/bleak-retry-connector-3.3.0[${PYTHON_USEDEP}]
>=dev-python/bluetooth-data-tools-1.16.0[${PYTHON_USEDEP}]
>=dev-python/bluetooth-adapters-0.16.1[${PYTHON_USEDEP}]
>=dev-python/bluetooth-auto-recovery-1.2.3[${PYTHON_USEDEP}]
>=dev-python/async-interrupt-1.1.1[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/cython[${PYTHON_USEDEP}]
test? (
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest

View File

@ -1,5 +1,5 @@
DIST hass-nabucasa-0.78.0.tar.gz 58397 BLAKE2B 30b0cc599bcfbc98297036c3d5c529cb2d93dac41bcc62f4dbeaf2bdf3a3cdbc2a994b268f64c425de79498e8a89b33b0d8aa182f0c5b90dde119b9a5052e80f SHA512 10aef0b5bddb7f1040a214dc71faf9877731a3148b39b82182b5504b449afc93225cfcd30e179f1defb8630ce8b65e116e0359dc8e7a569eea3c472a057af288
DIST hass_nabucasa-0.81.1.tar.gz 62710 BLAKE2B 81235c215837ae9220343cd2663261b702103e06eb673b644d312e226842284ad36cb57f1e176ed50a5d587294bd09f8c4fdefdf037d2b66ad4c8d61c1d29f67 SHA512 0cec3e807dbdcbc526c88a7eb30bcf5259485fe93e0428c3223a4f1008f7a2121d6dffb87c4ce1dff910ed69e1e99d478f133731e959ea6215f3651bed95fbd9
EBUILD hass-nabucasa-0.78.0-r1.ebuild 1120 BLAKE2B 0039710ed98bc85d090dcbe6c394cb39a76c48e9beadcd7bd637477897311113525ddbd2b015cd348b546ec0f97cc45fda22527cb06ec10926fd0b7f800c7baf SHA512 e64084a67681a1e08eddde4a02acb3c839e85f43a71b9a932f2827cd3439c109c898341e9a81f1be42b4d62cb88e24b9d0f40ca987c6c796eb03eeffe2ed4098
EBUILD hass-nabucasa-0.81.1.ebuild 1101 BLAKE2B cfcfa5b9ee1c470ce0119be64eb26f8e6349bae9dab384c35d5d065041e2f724cd9a47464172b0f04581edefe4bf91651c1157164c76b9650bde8558c1841303 SHA512 ec929b8d938a0aaac60171ec90c6bae9e8bb2c0937a3e305db5670c54975726b43e30a9eb5838882ac497611a86ca585f1244fb1b56e02608ef0f6d96b593012
EBUILD hass-nabucasa-0.81.1.ebuild 1091 BLAKE2B d9935d2f9d215eadbe242d7ea2fac68b2ae306fb11a450cd7f2091b633c070333b2c9c45a99bdcec68c955387824f3e6e827bc241fceac7edf459f744328f6ca SHA512 32d1ca73a7c37de0c49391b76c5756d2024d95b2068f5aef622dee06437e4da845e72113ee3b6f23b21758cfdcd4d5d5880a264c1a8a3d8617d7cd0640bfd910
MISC metadata.xml 530 BLAKE2B 3edd2c4f6e47e8ca75b68d54712fdf6a04ea53a2654e4658bfa00dc4b08ed5501a9e453513c7f21e9e75057b990715f8694c0f143bdaa795bcff9e25a8cd19a1 SHA512 f780c19d9403d846f778a81d557089e6a16243b4aa7e8861d6a2883959c23e7865bd405cf20113fb9c8e1c1d7e315b53efbd72663fe500da4e6769dcac9c1523

View File

@ -21,13 +21,13 @@ DOCS="README.md"
RDEPEND="
>=app-crypt/acme-2.10.0[${PYTHON_USEDEP}]
>=dev-python/aiohttp-3.6.1[${PYTHON_USEDEP}]
~dev-python/atomicwrites-homeassistant-1.4.1[${PYTHON_USEDEP}]
>=dev-python/atomicwrites-1.4.1[${PYTHON_USEDEP}]
>=dev-python/attrs-19.3.0[${PYTHON_USEDEP}]
>=dev-python/ciso8601-2.3.0[${PYTHON_USEDEP}]
>=dev-python/cryptography-42.0.0[${PYTHON_USEDEP}]
~dev-python/pycognito-2024.5.1[${PYTHON_USEDEP}]
~dev-python/pyjwt-2.8.0[${PYTHON_USEDEP}]
~dev-python/snitun-0.39.1[${PYTHON_USEDEP}]"
>=dev-python/pycognito-2024.5.1[${PYTHON_USEDEP}]
>=dev-python/pyjwt-2.8.0[${PYTHON_USEDEP}]
>=dev-python/snitun-0.39.1[${PYTHON_USEDEP}]"
BDEPEND="
test? (

View File

@ -1,3 +1,5 @@
DIST -20240809.0.gh.tar.gz 57473270 BLAKE2B a705d0eb266c2f5bcbfd9382f76e68be8bc48cae09dfab6b6d470b1608170ad1f2cb64677daebc1b8a5e0814e721969ec26f6bd9e1bee52ab5d9a91d6e79a59e SHA512 7c44083a2d9c7c0e6274625cb24710e8ba042dbe17e073df0dae6d857ddbe68f5f820dd38dbd567f59c1b62dfa7697ba0940289825cd2950529e1503e7cd421c
DIST -20240829.0.gh.tar.gz 57274663 BLAKE2B 11b1c8b2237ca1f691a809c28a632ba4db99f16870d7c02636f27a2c7430da880ed40044b785819af297050d407a009d74be41fba00db68043d08cd437928a0e SHA512 38c9bc0f6b50f0e949ab9ba0b587e1ae635f5d02e5b82791dc50b72738ba3986760ca9c1110c0c14be24bae0d826c11eb527268d524fee9b01804fafe418a7f1
DIST home-assistant-frontend-20240307.0.tar.xz 36140960 BLAKE2B ba5a22c51d93332a4aca670fa52fc4a3338ac9dff5ebc994d06ff7c69d3167edb4f3d18817eebab3f8689bc06ea8de79c1128e32606ab9350b0b923fa0d2e6af SHA512 18112285ab031d2d4878a581bb87e09f57dccd078dfc5963c0ba0da9e1e4edc22976aff8164768073983520675f305e9651291b6558c834e71b140c2058f4eda
DIST home-assistant-frontend-20240404.2.tar.xz 37236492 BLAKE2B 50f3e60ffa2c3a7b6be183709f792b010ec2ddfd0af4c21762f287f2a3b81c568d4e0dfade78aee86f0630b10a2d8fdba9e087535b62dcb67f75f40abc2e46c8 SHA512 21d61b1e9be2556329712bc05e420d98b307bfd92c037423e40519ad08d169f065c427b6aa984a9cace4f562a0b525c7b2d40e10aeb50afbcd483d71084de241
DIST home-assistant-frontend-20240501.1.tar.xz 37657688 BLAKE2B 29a4c03ef9b0b8bfe78cd9ab8336abb2542f046ff8c84c53079215bd0e25127c07e82d450b9b86ded9e24a28cd2a2bd05afed833c297cfca7a89271691d9f713 SHA512 3b359d40ec845b9b7b6166ed0eb505d149b81c6c584b20ff295e6720efba7a4628ab796f3e58ce7563106e7e60f132f267888ee86d9b2839600eed87418a2904
@ -6,4 +8,6 @@ EBUILD home-assistant-frontend-20240307.0.ebuild 583 BLAKE2B c8965888d57a0c93ead
EBUILD home-assistant-frontend-20240404.2.ebuild 583 BLAKE2B c8965888d57a0c93eadc661d48c70c594595b96c13474bacba91beb7d873c330b97f562d6f73295d8334166d227b638221cf715ca192a20f8c7551d8a6bf2646 SHA512 b6a36d6ad4c550b7b0f0fcce53f248d1c62c8f1e355b3b27af6454fd40bc71d163fd54ad1bad1b4de9778039706163c268ce056f489a9a57c71837934fc9c06a
EBUILD home-assistant-frontend-20240501.1.ebuild 583 BLAKE2B c8965888d57a0c93eadc661d48c70c594595b96c13474bacba91beb7d873c330b97f562d6f73295d8334166d227b638221cf715ca192a20f8c7551d8a6bf2646 SHA512 b6a36d6ad4c550b7b0f0fcce53f248d1c62c8f1e355b3b27af6454fd40bc71d163fd54ad1bad1b4de9778039706163c268ce056f489a9a57c71837934fc9c06a
EBUILD home-assistant-frontend-20240610.1.ebuild 583 BLAKE2B c8965888d57a0c93eadc661d48c70c594595b96c13474bacba91beb7d873c330b97f562d6f73295d8334166d227b638221cf715ca192a20f8c7551d8a6bf2646 SHA512 b6a36d6ad4c550b7b0f0fcce53f248d1c62c8f1e355b3b27af6454fd40bc71d163fd54ad1bad1b4de9778039706163c268ce056f489a9a57c71837934fc9c06a
EBUILD home-assistant-frontend-20240809.0.ebuild 897 BLAKE2B 01c9070183c2b6e3b0c5c536e8e64ff9d3028c8114d509228f9c3b91dc16ebff7a1b43b1cd7fee4f78a1e990ecea0750e6e234fd5d5ddec0589eb5bedaee4936 SHA512 a6bf3e5a5e2ad0cc095f2b8609b5b95ab15601490b8768f782584f50cd4e18b14ea7f6fcbe7eb6514001c9dbf6db8cc514cd17bf104fa82a6b95dd0853ec9c3c
EBUILD home-assistant-frontend-20240829.0.ebuild 897 BLAKE2B 01c9070183c2b6e3b0c5c536e8e64ff9d3028c8114d509228f9c3b91dc16ebff7a1b43b1cd7fee4f78a1e990ecea0750e6e234fd5d5ddec0589eb5bedaee4936 SHA512 a6bf3e5a5e2ad0cc095f2b8609b5b95ab15601490b8768f782584f50cd4e18b14ea7f6fcbe7eb6514001c9dbf6db8cc514cd17bf104fa82a6b95dd0853ec9c3c
MISC metadata.xml 550 BLAKE2B 461f5d7c4accab9d538b87f77af0a3b6a830d8cc920093817ff508424bf63ee8c027471657b70d59be7948705962687a0a696bc18b83b5d3ca21c882ddc92676 SHA512 274ddc53c052eb894e47267b0a44e7890c1739b1abc80a6c553237808e72415aaa8a1e4ebb256414f1928bf32b2500623f0528193a1bc1e39acc224d10c5c4f3

View File

@ -0,0 +1,30 @@
# 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=setuptools
inherit distutils-r1
if [[ ${PV} == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/home-assistant/frontend.git"
EGIT_BRANCH="dev"
S="${WORKDIR}/home-assistant-frontend-9999/"
else
MY_PV=${PV/_beta/b}
MY_P=${MY_PN}-${MY_PV}
SRC_URI="https://github.com/home-assistant/frontend/releases/download/${MY_PV}/home-assistant-frontend-${MY_PV}.tar.gz -> ${MY_P}.gh.tar.gz"
fi
DESCRIPTION="The Home Assistant frontend"
HOMEPAGE="https://github.com/home-assistant/frontend https://pypi.org/project/home-assistant-frontend/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="~dev-python/user-agents-2.0[${PYTHON_USEDEP}]"

View File

@ -0,0 +1,30 @@
# 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=setuptools
inherit distutils-r1
if [[ ${PV} == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/home-assistant/frontend.git"
EGIT_BRANCH="dev"
S="${WORKDIR}/home-assistant-frontend-9999/"
else
MY_PV=${PV/_beta/b}
MY_P=${MY_PN}-${MY_PV}
SRC_URI="https://github.com/home-assistant/frontend/releases/download/${MY_PV}/home-assistant-frontend-${MY_PV}.tar.gz -> ${MY_P}.gh.tar.gz"
fi
DESCRIPTION="The Home Assistant frontend"
HOMEPAGE="https://github.com/home-assistant/frontend https://pypi.org/project/home-assistant-frontend/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="~dev-python/user-agents-2.0[${PYTHON_USEDEP}]"

View File

@ -1,7 +1,9 @@
DIST home_assistant_intents-2024.4.24-py3-none-any.whl 282480 BLAKE2B 424f43e2822d9061dae9924be2396aa45704ea33ce6a6a126ec36e542227b2e6550480b4fcd26ae3ac3ff3d2f93e800e566926ff1995d5000bde48aa1749e02c SHA512 7d9c6c0ee18a5279acdd4ec9c8c7d2ed6ddaaf34d0fa8e9c7ce57dfb23088033394530994438e9b3041f4cd41293d81a71c22a3576e13118a969599ac62d1331
DIST home_assistant_intents-2024.6.21-py3-none-any.whl 296615 BLAKE2B 46a9e90f4f1f8e6fbda649391d00c0ea3271a23b62bf4aa2c2eb6a5c7ca8c3c5ad9538047c5b256308cbf7d45f4753c3ecb5bd16ff4dca8502190fe736c9b077 SHA512 4d61a9cbcf97b343fbd884541bf090cd395671d745e60f515c2def4dc889336c7bff5f6dc500758bf38638ddb61b76470c6f7b1ad39525f6ad647ae8ad0d7f93
DIST home_assistant_intents-2024.8.7-py3-none-any.whl 316072 BLAKE2B 973c48fcb51145b5e82ae97cc43f953255c139d982f7dd80a5a68c9cddd4e99de2950643fe9ec2f5e9a4e38ff9cb3c6afb082df4c7b7b925441f907ae5a4cb92 SHA512 b419b05975d30c28d7c0c6c25f7f35197cadf380c8719f4794ee65817a279cd41b3fb81b4b9997221860d856fd968769af3828222faab61fd6217c3386d9d0e2
DIST home_assistant_intents-2024.9.4-py3-none-any.whl 319053 BLAKE2B 397b1e533ddcb63176e3bd5b316466655a8ba9c6ac7bd4aebd1ac32d4a1f821dc7ee577ac154da4158b65aa061457e7e144690c7ee9585746467de01f0a18ae1 SHA512 4ea661cc49f2a100ab5af948cda68d956df3d1025f8cb5901d35c14ab2f6da69b4bbc63b3f0eccabcee70e61e01b771006bcf3d706bb1be392805bc786bd7d22
EBUILD home-assistant-intents-2024.4.24.ebuild 865 BLAKE2B 9b03c3e8efec0e7d8c2fe7bcb3113a56693e306c7a2155ff9c2e0417e6604bf6bd5dd464e1a7adbf531245b47ed9e6ac176deec0066f91358f8d999b43b23a91 SHA512 6c1c85120b27ef2694b4e588716de39b578566c0a5f86d12df0e033c2fbb650098996eb05701e34267374529d796b732dbc6570933da35cecdd063bd472a7832
EBUILD home-assistant-intents-2024.6.21.ebuild 865 BLAKE2B 9b03c3e8efec0e7d8c2fe7bcb3113a56693e306c7a2155ff9c2e0417e6604bf6bd5dd464e1a7adbf531245b47ed9e6ac176deec0066f91358f8d999b43b23a91 SHA512 6c1c85120b27ef2694b4e588716de39b578566c0a5f86d12df0e033c2fbb650098996eb05701e34267374529d796b732dbc6570933da35cecdd063bd472a7832
EBUILD home-assistant-intents-2024.8.7.ebuild 865 BLAKE2B 9b03c3e8efec0e7d8c2fe7bcb3113a56693e306c7a2155ff9c2e0417e6604bf6bd5dd464e1a7adbf531245b47ed9e6ac176deec0066f91358f8d999b43b23a91 SHA512 6c1c85120b27ef2694b4e588716de39b578566c0a5f86d12df0e033c2fbb650098996eb05701e34267374529d796b732dbc6570933da35cecdd063bd472a7832
EBUILD home-assistant-intents-2024.9.4.ebuild 865 BLAKE2B 9b03c3e8efec0e7d8c2fe7bcb3113a56693e306c7a2155ff9c2e0417e6604bf6bd5dd464e1a7adbf531245b47ed9e6ac176deec0066f91358f8d999b43b23a91 SHA512 6c1c85120b27ef2694b4e588716de39b578566c0a5f86d12df0e033c2fbb650098996eb05701e34267374529d796b732dbc6570933da35cecdd063bd472a7832
MISC metadata.xml 548 BLAKE2B beb76c5ba7562b43d406087c616788d11428a56bdaea3fb1eb32134675ad0444802f897babc60fe101a34d1f95e5d5b0ca4684a38f48d8686b574d2279afa296 SHA512 5e4cd71f3e0f46a3b1bc1f1ebc94f5c46ed5ac859f63d4f213ed2101ca4998dffabac68d9f3f4d71f50a82f7757fd4e62d116216854d23cbb67d183ad2e7f66c

View File

@ -0,0 +1,32 @@
# 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=setuptools
PYPI_NO_NORMALIZE=1
inherit distutils-r1 pypi
DESCRIPTION="Intents for Home Assistant"
HOMEPAGE="https://github.com/home-assistant/intents https://pypi.org/project/home-assistant-intents/"
SRC_URI="$(pypi_wheel_url home_assistant_intents)"
S=${WORKDIR}
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="dev-python/hassil[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/voluptuous[${PYTHON_USEDEP}]
dev-python/regex[${PYTHON_USEDEP}]
dev-python/jinja[${PYTHON_USEDEP}]"
distutils_enable_tests pytest
python_compile() {
distutils_wheel_install "${BUILD_DIR}/install" "${DISTDIR}/$(pypi_wheel_name)"
}

View File

@ -1,3 +1,3 @@
DIST pymicro_vad-1.0.1.tar.gz 135575 BLAKE2B 12e560d4379507cf96f5a8b79c61bff4b10d20e7fb59a7326be954eddaf3f8830f1ea8d6bc710cf6b951d325a0a40762fee5d2b368c5ded6bec7cc44d2d02fc8 SHA512 336e4b772b43d0973b8f3a68ad64ba2b4c64a1bdcf210b5d25518c54a7f8c11c7b03c0dc8fa5b668cef31e9011dfb573ccca178a6845404bc6fe04fc18633f7d
EBUILD pymicro-vad-1.0.1.ebuild 498 BLAKE2B 4724311056a37ff700928fe8f9187b05f027a3446953e07eac55a50615013681b33039c9c9894e9b9a2ba5d5bda0f3278f10b4622fd8588b891878654788a2d2 SHA512 408d6f6237ce89c06eea2bf16030361840403fe3dcafa45c8e714bb8f8916922395cef31f1b1d0bd60c0e499b7b1cdf56181b7c76569e772f9475a03a0148e01
DIST 1.0.1.tar.gz 756636 BLAKE2B c473efafe5baaa45ef4d34f5643eaf9bde99a87a41863dbce6e5a3ad0b06819688d3269d6bcb69e5069acec3fc38699a6cd36251639ed07c7fa1df06bbb89e4e SHA512 432602c6b5f592563214400799ac897b3ee393b42bd973e7d7fe0d0c9abbc67258034a36b4a3c5a973223f04c43ded73c0ff8f730dc5cae65e898c8b1fa6d832
EBUILD pymicro-vad-1.0.1.ebuild 570 BLAKE2B 020282eff698bfaeb4812e060f754783b1610ded021113b05c2a6e406f06a10ab19e1ed36f3424528e0f5a3f29aceae698ae2afc2fd822eef805e7f01156dcca SHA512 bd0b41bf7c0969e31ab69eb41fc0e8d4192f35e45881ba00d90d7bebdadb7c79393afe27b1fe7bec9e9b4ff4e0a7b7d3492f24cd73bfe62e5fcc1b91152da110
MISC metadata.xml 515 BLAKE2B d557f276b9101d58fe06e023d995f00761880012ab2222b8c55d8b5bb41ca09ad4f384fedb3c697b60e6683a5fbe52b294021d19146318ec188406cb8a23fa9b SHA512 371cb04beca031a1b71cab06b3c7fd8a314fc75aeda6d1f4cf7a56b8aeb9d7c0df45fff6d58748a6c290ad5a5193c237a051e89ce92d053f0f797097bd101cdf

View File

@ -8,14 +8,21 @@ DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Self-contained voice activity detector"
HOMEPAGE="https://github.com/rhasspy/pymicro-vad https://pypi.org/project/pymicro-vad/"
HOMEPAGE="https://github.com/rhasspy/pymicro-vad"
LICENSE="Apache-2.0"
LICENSE="Apache"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
distutils_enable_tests pytest
SRC_URI="https://github.com/rhasspy/pymicro-vad/archive/${PV}.tar.gz"
RDEPEND=""
BDEPEND=""
src_unpack() {
unpack ${A}
echo ${P}
mv ${P} pymicro_vad-${PV}
}

View File

@ -1,7 +1,9 @@
DIST python-matter-server-5.7.0.tar.gz 92064 BLAKE2B 40155f62a09fe88c4395fb1186041155b66d87c15b6a6082893d4d9667c8158932d8cebabbb4dbc0d4653653de345f2b1d41ff398804017962076f23aba6e5a3 SHA512 f73d4a2d5e57bcba45e3fc24672adf9e682e7425b101736f3b12b38cc42793b4da0bf496c7df30290b0eaea36aaf2424fe4e616b311513dc1c85199679a5cc56
DIST python_matter_server-5.10.0.tar.gz 115465 BLAKE2B ffba807a60f98aa57fdf91138aa5f701d0295a70b1d2829181775f29aeee01f73ea735f39d3160265523a99aea7cf6daf7e9caa0183b05044cc7bc0e32c2ef38 SHA512 df248fc67a34266213fab74e7a097e911ff69b20a01c1faa4c2a68e1f15ae93d8af8ece444b8992fd89cdad9a882d32d2e7af06d1ce4a5723c9bb5f21b161d0e
DIST python_matter_server-6.1.0.tar.gz 122725 BLAKE2B b08fc706e72dda5160d2153661e01a96bbd488d069674f7809f120ae85d2b924a2be07f52a3d96bbb57442ec50717f4f224db31cdbb5f1ac979d080d3683dfd7 SHA512 f46bb0f9b5c9855ade142a8dec52f97a2f1b93df66ac6a52e40ba72bf43015115f767869f76c2d629a9cd7f354d934c1e2653688efff0db8f57dc458a58c333c
DIST python_matter_server-6.3.0.tar.gz 133543 BLAKE2B 56e383a362ae05908d87f489aae09568ba7c487047599b14f155dd8cc0000a4ed2fa13218bca6873cd45d769d8735265274a3f81839ed177a7f2b4490a1ca16d SHA512 8168dfd3452c8dd05a29bc121820e14055127f05e835e1e239a0674a2958f42341079f93996e6c1c213fb45fb32c05fe0c5815cc35dff632dc6e7cd9045a55f6
EBUILD python-matter-server-5.10.0.ebuild 922 BLAKE2B c6021a185a24de20340e87a457c6c1c1237ce890c47bc22fed17356904b9a72588a973f84f126ed61cdfea940f0aaa99563ae4d5fab497e5a5c6aa1c91fb2d87 SHA512 1aa3ead2b1709d0adaab6aad92ba885b91b2bf704148c07a008b6649295e4160b3201d82188854a95910a6f38ec87f0b9d84979af918b1e4b240a7ebf70d7f0e
EBUILD python-matter-server-5.7.0.ebuild 980 BLAKE2B 8f2fd9569c58de1ab857d46d0072b73da8fd72b59c35617fe2330e400c06e0dc4c7f9bb51c2f4c97d6c510bf5ceba85aaed1b7e7130e880d56eb2fa981e49f89 SHA512 53b9916d54c886ff2d98ec884f9ccda33180bd17665167e34818a46e4df223ec648d90d03a44d0a8cb7ce073c2586d63fa9953706a0048f9db8717af8b8a34dc
EBUILD python-matter-server-6.1.0.ebuild 805 BLAKE2B 420c040f62c173fe9bdf02d0f3c18c1cfda58fe84f453b795073410f47d2c913cef5de5cd29c0e8ffb4586c2a098544d3ba952d68dd2adcbf15ced5dc1a0c1b5 SHA512 c36d8dbf743cb6798f8c9c536c7df5d6ab9a022a6e7dd55947680663784438daf484e441606f7bbc49f1a46a39e08661dbd5b2c6b1bd4457387283787802cce1
EBUILD python-matter-server-6.3.0.ebuild 805 BLAKE2B 420c040f62c173fe9bdf02d0f3c18c1cfda58fe84f453b795073410f47d2c913cef5de5cd29c0e8ffb4586c2a098544d3ba952d68dd2adcbf15ced5dc1a0c1b5 SHA512 c36d8dbf743cb6798f8c9c536c7df5d6ab9a022a6e7dd55947680663784438daf484e441606f7bbc49f1a46a39e08661dbd5b2c6b1bd4457387283787802cce1
MISC metadata.xml 482 BLAKE2B 31ea0a316b03c93d165de83281c9ada7fe0013637fc1246ecdfeec1190af43c41da6ee642edeb34305066d958720966c2113a02de47cd2d9c31cba2a44737a06 SHA512 55b3371f636a7a4f6c925844465e9e517b26ede3048713f04ba8afa0e3c3390d11ea15e706577822ae0185ebaf2c2e969a658d77b9689e58574acbe6da74ed16

View File

@ -0,0 +1,32 @@
# 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=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Python Matter WebSocket Server"
HOMEPAGE=" https://pypi.org/project/python-matter-server/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/aiorun[${PYTHON_USEDEP}]
dev-python/coloredlogs[${PYTHON_USEDEP}]
dev-python/orjson[${PYTHON_USEDEP}]
~dev-python/home-assistant-chip-clusters-2024.5.2[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest

View File

@ -1,5 +1,5 @@
DIST ulid_transform-0.9.0.tar.gz 14399 BLAKE2B 871a33485b5cb9e96922fbde49ed121f3fa201a41e9643fd7021f5d71fbac3412393a7ff6d0f92951d2fda3795d37e1376f083d2ffbdf0c5dc63a9fbc91e07b0 SHA512 d94fe8867502abd54b8dea48c89dc824ca6e9d3e05b04bbb7a23ec194c42912709879928b234832dc2ddeeb99b13d6b6951f0cb8484b911a4e0917f770b2734b
DIST ulid_transform-1.0.2.tar.gz 15743 BLAKE2B 9676e970ba4e76ad0c9426aab758adfb86652c779885942ae492a3759685f5bd70282029aa98350835b990da25dc1ce318b3224dbf2a054a825c046a684b571e SHA512 d151e5300be895c30c5c8e4adb2ef6139b9326578361b2ee20d1f220be45c4334a653477ebb72af3cfced9cc0caf042292a56c6ad9b6288d760a2954df13d062
EBUILD ulid-transform-0.9.0.ebuild 625 BLAKE2B b804480d46479e1fd75f26e9e563a545b6aed7550d1ccad59fe92525f06f91f0d0ad4e94ceff07579a90c9e01a63a2685dafc5cffb43a318188072a927a63f73 SHA512 23ccd313281e1335b9aa757d2179d28015928bd33c12584753a5f090f9a83d16393c12a0b7dadfdc2becd22e184c0c818fffd0b974fd348c7b57ba513351fa76
EBUILD ulid-transform-1.0.2.ebuild 546 BLAKE2B aaef32ade16a7d4a470f2440fe3c3bdde4e25135ba428eb62a1f8bf191b19d7a5a00ccd75a591a57225192960dc776f990ec99126b461a80d6957981e3031e98 SHA512 f997a0505ff1ddd1a663faa52a50ed3ff0cfecec6f58c05cf24e3cf2c54a91e7331c72c66a3d21f31cbe6ee753bfd8d4d16508b5c572ab9dbbefc79b7ea42a6e
EBUILD ulid-transform-1.0.2.ebuild 625 BLAKE2B b804480d46479e1fd75f26e9e563a545b6aed7550d1ccad59fe92525f06f91f0d0ad4e94ceff07579a90c9e01a63a2685dafc5cffb43a318188072a927a63f73 SHA512 23ccd313281e1335b9aa757d2179d28015928bd33c12584753a5f090f9a83d16393c12a0b7dadfdc2becd22e184c0c818fffd0b974fd348c7b57ba513351fa76
MISC metadata.xml 519 BLAKE2B 2e9c970aa16f2d123a1dad277257d0c7034f89547ff9c3c263b2c6f4cb3688d6d351facd5bd1802685b16a1d1283ff4b30620d6f38f822939e2fa03fa69e4a69 SHA512 35e848b0ce8aeac9f8762774744f6e1dc28c08a69ef066b09dd47a2935a0d2a2f2b23280feb2855c75cf06834bebee0620366d8aa1f5285efa66497ac511b4bd

View File

@ -20,7 +20,12 @@ DOCS="README.md"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest

View File

@ -1,5 +1,7 @@
DIST universal-silabs-flasher-0.0.18.tar.gz 43361 BLAKE2B 045d520381407fd643aebb1a153b5e1ef8292043a91ea6f8381f95ef70fbc134b0509b6da8d3b1fed4422e18fdabf2bb7bbb3f7ff315a815eb7869a2c0568a8d SHA512 d234822ba55df10264ddd276c33c713bb9d27c9cbe69fb866a79627257916771d2380f80a4313ee5cab217c2fe41eb2c10c5ea20eb2a880d8d16bdd7812c6715
DIST universal_silabs_flasher-0.0.20.tar.gz 43822 BLAKE2B da4c8e8d3b50d1bcbbd4c7e15b72435f8993bca64ded2313bf27355df6f9a6ea7fe29d8266f09ec3d8432336c49e8d57e89242ccc3953e7228a2128d74d63a78 SHA512 5dd6587963c03ab9ab4135996587f29336b7057235552017b5fd143b6451604435773d4343707820c94a33cf384c463ca9118901f38ba3ec909cc5aa21dced3c
DIST universal_silabs_flasher-0.0.22.tar.gz 43823 BLAKE2B bf07d972054c9bf15fdd50b7b9eb906b69b5d1bf16e427bc9fc2d734288f4e6a08453ade7e5ab6abbd3e0c228714ab5e6689bd64e5e27696bef521b68ca84700 SHA512 51a68c5d8387dc4e673bc7b0250cba0a29a33cac6c468b30a9b1af0b52c07fa02dcc214cae5e26cc755558067b7bd298e02fd5c6b0a00585a8852a7d72c842a4
EBUILD universal-silabs-flasher-0.0.18.ebuild 1270 BLAKE2B 7edbfedde2be5b59b6045f131f2555f2d0bdd4d8743e77d220f8e971b86ca25e1dd4fe969a9074bedbc5e03cdf27ff3e56fd1dc9ad8c32891827a7e05ab1824d SHA512 72b4d1da87be27c3e1b98e42f2d5533da9dd7a871e878d2cf6d1e2178383d212b2bda228ec84fe492c9f4b542768a9f4e3d851e2f2afceea73eec6cf94480f48
EBUILD universal-silabs-flasher-0.0.20.ebuild 1258 BLAKE2B 392ac0e856bd83cfb370f9305190c9e05c50a03ad501558377b85d3e99e76795e5197dd7b35169d73345e816259611e104e637fe207a40c249b0915302964fa4 SHA512 85a435e12ea88e41d8a69959ea1fcc7fefb2962bb0f78a13b84801e5aef7a3f90b823c73f058af50e7cdabe4e71625a2e44b84d2a923e5a66b46620017a149bd
EBUILD universal-silabs-flasher-0.0.22.ebuild 1258 BLAKE2B 392ac0e856bd83cfb370f9305190c9e05c50a03ad501558377b85d3e99e76795e5197dd7b35169d73345e816259611e104e637fe207a40c249b0915302964fa4 SHA512 85a435e12ea88e41d8a69959ea1fcc7fefb2962bb0f78a13b84801e5aef7a3f90b823c73f058af50e7cdabe4e71625a2e44b84d2a923e5a66b46620017a149bd
MISC metadata.xml 535 BLAKE2B 1650b3f07f503521c5e8d67155769d1dc6731f216d7ab9bfab4a09698fc64ca5842e3502eef987d5385f79a376a4df3419661d17d5dc811c46dcce53d5257855 SHA512 2a1ae39dcd47289cb08121247c291304b615573cf2569f8791733a583589f8809922c6dd54f5673854f281cb75f492ef08177147d9dc934a1a5626c41b4d419a

View File

@ -0,0 +1,42 @@
# 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=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Tool to flash firmware onto any Silicon Labs radio running EmberZNet, CPC multi-PAN, or just a bare Gecko Bootloader"
HOMEPAGE="https://github.com/NabuCasa/universal-silabs-flasher https://pypi.org/project/universal-silabs-flasher/"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/click[${PYTHON_USEDEP}]
dev-python/zigpy[${PYTHON_USEDEP}]
dev-python/crc[${PYTHON_USEDEP}]
>=dev-python/bellows-0.39.0[${PYTHON_USEDEP}]
dev-python/gpiod[${PYTHON_USEDEP}]
dev-python/coloredlogs[${PYTHON_USEDEP}]
dev-python/async-timeout[${PYTHON_USEDEP}]
dev-python/typing-extensions[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-timeout[${PYTHON_USEDEP}]
)"
src_prepare() {
# remove dynamic-versioning
sed 's/dynamic = \["version"\]/version = \"'${PV}'\"/g' -i pyproject.toml || die
sed 's/, "setuptools-git-versioning<2"//g' -i pyproject.toml || die
eapply_user
}
distutils_enable_tests pytest

1426
metadata/pkg_desc_index Normal file
View File

@ -0,0 +1,1426 @@
acct-group/esphome 0: ESPHome Dashboard group
acct-group/homeassistant 0: Homeassistant program group
acct-group/node-red 0: System group: node-red
acct-group/zigbee2mqtt 0: System group: zigbee2mqtt
acct-group/zwavejs2mqtt 0: zwavejs2mqtt group
acct-user/esphome 0: ESPHome Dashboard User
acct-user/homeassistant 0: Home Assistant Program User
acct-user/node-red 0: A user for node-red
acct-user/zigbee2mqtt 0-r2: A user for zigbee2mqtt
acct-user/zwavejs2mqtt 0: zwavejs2mqtt User
app-crypt/acme 2.8.0-r1 2.9.0-r1: ACME protocol implementation in Python
app-misc/home-assistant-cli 0.9.6 9999: The Home Assistant Command-line Interface (hass-cli)
app-misc/homeassistant 2024.3.3 2024.4.4 2024.5.5 2024.6.4: Open-source home automation platform running on Python.
app-misc/homeassistant-full 2024.3.3 2024.4.4 2024.5.5 2024.6.4 9999: Open-source home automation platform running on Python.
app-misc/homeassistant-min 2024.3.3 2024.4.4-r1 2024.5.5 2024.6.4: Open-source home automation platform running on Python.
app-misc/node-red 3.0.2 3.1.3: A visual tool for wiring the Internet of Things.
app-misc/zigbee2mqtt 1.35.2: It bridges events and allows you to control your Zigbee devices via MQTT
dev-embedded/esphome 2023.12.9 2024.2.2 2024.3.2-r1 2024.5.2 2024.5.3-r1 9999: Make creating custom firmwares for ESP32/ESP8266 super easy.
dev-embedded/esphome-dashboard 20231107.0 20240319.0 20240412.0 20240429.1: ESPHome dashboard
dev-embedded/platformio 6.1.11 6.1.11-r1 6.1.13 6.1.15: An open source ecosystem for IoT development
dev-libs/libgit2 1.5.2: A linkable library for Git
dev-libs/protobuf 24.2 24.3 25.1 25.1-r1 25.2 25.2-r1: Google's Protocol Buffers - Extensible mechanism for serializing structured data
dev-python/AEMET-OpenData 0.5.1 0.5.2: AEMET OpenData Rest API library
dev-python/AIOAladdinConnect 0.1.58: Python Async API for controlling Genie garage doors connected to Aladdin Connect devices
dev-python/AIOSomecomfort 0.0.24 0.0.25: A client for Honeywell's US-based cloud devices
dev-python/Adafruit-Blinka 7.1.1: CircuitPython APIs for non-CircuitPython versions of Python such as CPython on Linux and MicroPython.
dev-python/Adafruit-GPIO 1.0.3: GPIO interface on the Raspberry Pi.
dev-python/Adafruit-PureIO 1.1.9: Pure python (i.e. no native extensions) access to Linux IO including I2C and SPI. Drop in replacement for smbus and spidev modules.
dev-python/Adafruit-SHT31 1.0.2: Python Library for Adafruit SHT31 module
dev-python/Adafruit_BBIO 1.1.1: A module to control BeagleBone IO channels
dev-python/Adax-local 0.1.5: A python3 library to communicate with Adax
dev-python/Ambiclimate 0.2.1: A python3 library to communicate with Ambiclimate
dev-python/Authlib 1.2.0: The ultimate Python library in building OAuth and OpenID Connect servers.
dev-python/Babel 2.13.1 2.15.0: Collection of tools for internationalizing Python applications
dev-python/BlinkStick 1.2.0: Python package to control BlinkStick USB devices.
dev-python/CO2Signal 0.4.2: A package to access the co2signal API
dev-python/DateTime 5.3: This package provides a DateTime data type, as known from Zope. Unless you need to communicate with Zope APIs, you're probably better off using Python's built-in datetime module.
dev-python/DoorBirdPy 2.1.0: Python wrapper for the DoorBird LAN API v0.21
dev-python/Events 0.4: Bringing the elegance of C# EventHandler to Python
dev-python/GitPython 2.1.11: Python Git Library
dev-python/HAP-python 4.9.1: HomeKit Accessory Protocol implementation in python
dev-python/HATasmota 0.7.3 0.8.0: Python module to help parse and construct Tasmota MQTT messages.
dev-python/Hydrawiser 0.2: A Python library to communicate with Hunter Wi-Fi irrigation controllers (https://www.hunter.com)
dev-python/Mastodon-py 1.5.1 1.8.1: Python wrapper for the Mastodon API
dev-python/OPi-GPIO 0.5.2: A drop-in replacement for RPi.GPIO for the Orange Pi Zero
dev-python/Pint 0.22: Physical quantities module
dev-python/PlexAPI 4.15.10 4.15.12 4.15.13: Python bindings for the Plex API.
dev-python/ProgettiHWSW 0.1.3: Controls ProgettiHWSW relay boards.
dev-python/PsychroLib 2.5.0: Library of psychrometric functions to calculate thermodynamic properties of air
dev-python/PyDispatcher 2.0.5: Multi-producer-multi-consumer signal dispatching mechanism
dev-python/PyEssent 0.14: A wrapper around Essent's API
dev-python/PyFlick 0.0.2: Python API For Flick Electric in New Zealand
dev-python/PyFlume 0.6.5: Package to integrate with Flume Sensor
dev-python/PyFronius 0.7.2 0.7.3: Automated JSON API based communication with Fronius Symo
dev-python/PyKCS11 1.5.15: A Full PKCS#11 wrapper for Python
dev-python/PyMVGLive 1.1.4: get live-data from mvg-live.de
dev-python/PyMata 2.20: A Python Protocol Abstraction Library For Arduino Firmata
dev-python/PyMeeus 0.5.11: Python implementation of Jean Meeus astronomical routines
dev-python/PyMetEireann 2021.8.0: A library to communicate with the Met Eireann Public Weather Forecast API
dev-python/PyMetno 0.11.0 0.12.0: A library to communicate with the met.no api
dev-python/PyMicroBot 0.0.9 0.0.12 0.0.17: A library to communicate with MicroBot
dev-python/PyNINA 0.3.3: A Python API wrapper to retrieve warnings from the german NINA app.
dev-python/PyOTA 2.0.5: IOTA API library for Python
dev-python/PyPasser 0.0.5: Bypassing reCaptcha V3 by sending HTTP requests & solving reCaptcha V2 using speech to text.
dev-python/PyPubSub 4.0.3: Python Publish-Subscribe Package
dev-python/PyRIC 0.1.6.3: Python Wireless Library
dev-python/PyRMVtransport 0.3.3: Define module-level imports.
dev-python/PySPX 0.5.0: Python bindings for SPHINCS+
dev-python/PySocks 1.7.1: A Python SOCKS client module. See https://github.com/Anorov/PySocks.
dev-python/PySwitchbot 0.45.0 0.46.1: A library to communicate with Switchbot
dev-python/PySwitchmate 0.5.1: A library to communicate with Switchmate
dev-python/PySyncThru 0.7.10: Automated JSON API based communication with Samsung SyncThru Web Service
dev-python/PyTransportNSW 0.1.1: Get transport information from TransportNSW
dev-python/PyTurboJPEG 1.7.1: A Python wrapper of libjpeg-turbo for decoding and encoding JPEG image.
dev-python/PyUserInput 0.1.11: A simple, cross-platform module for mouse and keyboard control
dev-python/PyViCare 2.29.0 2.32.0: Library to communicate with the Viessmann ViCare API
dev-python/PyXiaomiGateway 0.14.3: A library to communicate with the Xiaomi Gateway
dev-python/Pyrebase4 4.5.0: A simple python wrapper for the Firebase API with current deps
dev-python/Pysher 1.0.7: Pusher websocket client for python, based on Erik Kulyk's PythonPusherClient
dev-python/RPi-GPIO 0.7.1_alpha4: A module to control Raspberry Pi GPIO channels
dev-python/RachioPy 1.0.3 1.1.0: A Python module for the Rachio API.
dev-python/ReParser 1.4.3: Simple regex-based lexer/parser for inline markup
dev-python/RestrictedPython 6.2 7.0_alpha1-r0: subset of Python which allows program input into a trusted environment.
dev-python/RtmAPI 0.7.2-r2: API package for rememberthemilk.com
dev-python/Rx 3.2.0-r1: Reactive Extensions (Rx) for Python
dev-python/SmartHab 0.21: This package allows controlling devices in a SmartHab-powered home.
dev-python/Tami4EdgeAPI 2.1: Tami 4 Edge / Edge+ API in Python
dev-python/TravisPy 0.3.5: Python API for Travis CI.
dev-python/TwitterAPI 2.7.12: Minimal wrapper for Twitter's REST and Streaming APIs
dev-python/VL53L1X2 0.1.5: vl53l1x distance sensor driver for Raspberry Pi
dev-python/WSDiscovery 2.0.0: WS-Discovery implementation for python
dev-python/WazeRouteCalculator 0.14: Calculate actual route time and distance with waze api.
dev-python/XBee 2.3.2: Python tools for working with XBee radios
dev-python/abodepy 1.2.0: An Abode alarm Python library running on Python 3.
dev-python/accuweather 2.1.1 3.0.0: Python wrapper for getting weather data from AccuWeather servers.
dev-python/adafruit-circuitpython-bmp280 3.1.1: CircuitPython driver for the BMP280.
dev-python/adafruit-circuitpython-busdevice 5.1.8: CircuitPython bus device classes to manage bus sharing.
dev-python/adafruit-circuitpython-dht 3.7.0: CircuitPython support for DHT11 and DHT22 type temperature/humidity devices
dev-python/adafruit-circuitpython-mcp230xx 2.2.2: CircuitPython library for controlling a MCP23008 or MCP23017 I2C GPIO expander.
dev-python/adafruit-circuitpython-pca9685 3.3.2: CircuitPython driver for motor, stepper, and servo based on PCA9685.
dev-python/adafruit-circuitpython-register 1.9.8: CircuitPython data descriptor classes to represent hardware registers on I2C and SPI devices.
dev-python/adafruit-circuitpython-typing 1.3.0: Types needed for type annotation that are not in typing
dev-python/adax 0.4.0: A python3 library to communicate with Adax
dev-python/adb-homeassistant 1.3.2: A pure python implementation of the Android ADB and Fastboot protocols
dev-python/adb-shell 0.4.4-r1: A Python implementation of ADB with shell and FileSync functionality.
dev-python/adext 0.4.2 0.4.3: AlarmDecoder extended
dev-python/adguardhome 0.6.3: Asynchronous Python client for the AdGuard Home API.
dev-python/advantage-air 0.4.4: API helper for Advantage Air's MyAir and e-zone API
dev-python/aenum 3.1.15: Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants
dev-python/afsapi 0.2.7: Asynchronous Implementation of the Frontier Silicon API
dev-python/agent-py 0.0.23: A python wrapper around the Agent REST API.
dev-python/ahocorapy 1.6.1: ahocorapy - Pure python ahocorasick implementation
dev-python/aio-geojson-client 0.18 0.20: An async GeoJSON client library.
dev-python/aio-geojson-generic-client 0.3 0.4: An generic async GeoJSON client library.
dev-python/aio-geojson-geonetnz-quakes 0.15 0.16: An async GeoJSON client library for GeoNet NZ Quakes feed.
dev-python/aio-geojson-geonetnz-volcano 0.8 0.9: An async GeoJSON client library for GeoNet NZ Volcanic Alert Level feed.
dev-python/aio-geojson-nsw-rfs-incidents 0.6 0.7: An async GeoJSON client library for NSW Rural Fire Service Incidents.
dev-python/aio-geojson-usgs-earthquakes 0.2 0.3: An async GeoJSON client library for the U.S. Geological Survey Earthquake Hazards Program.
dev-python/aio-georss-client 0.11 0.12: An async GeoRSS client library.
dev-python/aio-georss-gdacs 0.8 0.9: An async GeoRSS client library for GDACS feeds.
dev-python/aioairq 0.3.1 0.3.2: Asynchronous library to retrieve data from air-Q devices.
dev-python/aioairzone 0.6.9 0.7.2 0.7.4 0.7.6: Library to control Airzone devices
dev-python/aioairzone-cloud 0.4.5 0.4.7 0.5.1: Library to control Airzone Cloud devices
dev-python/aioambient 2023.4.0 2024.1.0: A clean, async-friendly library for the Ambient Weather API
dev-python/aioapcaccess 0.4.2: Async version of apcaccess library implemented in python.
dev-python/aioaseko 0.0.2 0.1.1: Async Python package for the Aseko Pool Live API
dev-python/aioasuswrt 1.4.0: Api wrapper for Asuswrt https://www.asus.com/ASUSWRT/
dev-python/aioautomower 2024.3.3 2024.3.4 2024.4.3 2024.5.1: MPython module to talk to Husqvarna Automower.
dev-python/aioazuredevops 1.3.5 2.0.0: Get data from the Azure DevOps API.
dev-python/aiobafi6 0.9.0: Big Ass Fans i6/Haiku protocol asynchronous Python library
dev-python/aiobotocore 2.6.0 2.9.1 2.12.1: Async client for aws services using botocore and aiohttp
dev-python/aiocache 0.11.1: multi backend asyncio cache
dev-python/aiocoap 0.4.5: Python CoAP library
dev-python/aiocomelit 0.6.2 0.7.0 0.8.3 0.9.0: Python library to control Comelit Simplehome
dev-python/aioconsole 0.5.1: Asynchronous console and interfaces for asyncio
dev-python/aiodhcpwatcher 0.8.2 1.0.0: Watch for DHCP packets with asyncio
dev-python/aiodiscover 1.6.1 2.0.0 2.1.0: Discover hosts by arp and ptr lookup
dev-python/aiodns 3.0.0-r1 3.1.1: Simple DNS resolver for asyncio
dev-python/aioeafm 0.1.2-r1: An asyncio wrapper for the UK Environment Agency Flood Monitoring API
dev-python/aioeagle 1.1.0: Python module to talk to Rainforest EAGLE-200.
dev-python/aioecowitt 2023.5.0 2024.2.1: Python wrapper for EcoWitt Protocol
dev-python/aioelectricitymaps 0.1.5 0.4.0: Async Python 3 wrapper for Electricity maps
dev-python/aioemonitor 1.0.5: Asyncio Python lib for SiteSage Emonitor
dev-python/aioesphomeapi 23.0.0 23.2.0 24.3.0 24.5.0: Python API for interacting with ESPHome devices.
dev-python/aiofile 3.8.1: Asynchronous file operations.
dev-python/aioflo 2021.11.0: A Python3, async-friendly library for Flo by Moen Smart Water Detectors
dev-python/aioftp 0.21.3: ftp client/server for asyncio
dev-python/aiogithubapi 22.10.1 23.11.0-r1: Asynchronous Python client for the GitHub API
dev-python/aioguardian 2022.7.0: A Python3 library for Elexa Guardian water valves and sensors
dev-python/aiohappyeyeballs 2.3.1: Happy Eyeballs
dev-python/aioharmony 0.2.10: Asyncio Python library for connecting to and controlling the Logitech Harmony
dev-python/aiohomekit 3.0.9 3.1.1 3.1.4 3.1.5: An asyncio HomeKit client
dev-python/aiohttp 3.9.4: HTTP client/server for asyncio
dev-python/aiohttp-fast-url-dispatcher 0.3.0: A faster URL dispatcher for aiohttp
dev-python/aiohttp-fast-zlib 0.1.0 0.1.1: Use the fastest installed zlib compatible library with aiohttp
dev-python/aiohttp-isal 0.3.1-r1: isal support for aiohttp
dev-python/aiohttp-retry 2.8.3: Simple retry client for aiohttp
dev-python/aiohttp-session 2.12.0: sessions for aiohttp.web
dev-python/aiohttp-wsgi 0.10.0: WSGI adapter for aiohttp.
dev-python/aiohttp-zlib-ng 0.1.1 0.1.3 0.3.1: Enable zlib_ng on aiohttp
dev-python/aiohue 4.7.0 4.7.1: Python module to talk to Philips Hue.
dev-python/aioimaplib 1.0.1 1.1.0: Python asyncio IMAP4rev1 client library
dev-python/aioitertools 0.11.0: itertools and builtins for AsyncIO and mixed iterables
dev-python/aiokafka 0.7.2 0.10.0: Kafka integration with asyncio.
dev-python/aiokef 0.2.16: Asyncio Python API for KEF speakers.
dev-python/aiolifx 1.0.0 1.0.2: API for local communication with LIFX devices over a LAN with asyncio.
dev-python/aiolifx-connection 1.0.0: A wrapper for aiolifx to connect to a single LIFX device
dev-python/aiolifx-effects 0.3.2: aiolifx light effects
dev-python/aiolifx-themes 0.4.10 0.4.15: Async library that applies color themes to LIFX lights
dev-python/aiolimiter 1.1.0: asyncio rate limiter, a leaky bucket implementation
dev-python/aiolivisi 0.0.19: Python module to communicate with LIVISI Smart Home Controllers.
dev-python/aiolookin 1.0.0: Client for interaction of the LOOKin device with the Home Assistant
dev-python/aiolyric 1.1.0: AIO package for the Honeywell Lyric Platform.
dev-python/aiomodernforms 0.1.8: Asynchronous Python client for Modern Forms fans.
dev-python/aiomqtt 2.0.0 2.1.0: The idiomatic asyncio MQTT client, wrapped around paho-mqtt
dev-python/aiomusiccast 0.14.8: Companion library for musiccast devices intended for the Home Assistant integration.
dev-python/aionanoleaf 0.2.1: Async Python package for the Nanoleaf API
dev-python/aionotify 0.2.0: Asyncio-powered inotify library
dev-python/aionotion 2023.5.5 2024.3.0: A simple Python 3 library for Notion Home Monitoring
dev-python/aionursery 0.3.0: Manage background asyncio tasks
dev-python/aionut 4.3.2: Asyncio Network UPS Tools
dev-python/aiooncue 0.3.5 0.3.7: Async for Oncue
dev-python/aioopenexchangerates 0.4.0: Fetch rates from openexchangerates with aiohttp.
dev-python/aiooui 0.1.5: Async OUI lookups
dev-python/aiopegelonline 0.0.9 0.0.10: Asynchronous library to retrieve data from PEGELONLINE.
dev-python/aiopulse 0.4.3 0.4.4: Python module for Rollease Acmeda Automate integration.
dev-python/aiopurpleair 2022.12.1: A Python 3, asyncio-based library to interact with the PurpleAir API