From 84b84b0a28f1090904e0acb3f4fc8225ece7881b Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Fri, 30 Sep 2022 09:48:31 +0200 Subject: [PATCH 01/19] update README.md, new integrations & hardware --- README.md | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3460bffd6..2ec8a3320 100644 --- a/README.md +++ b/README.md @@ -367,6 +367,10 @@ I am now stuck at Kodi 18.9 but that's worth it. ### influxdb storing the temperatures from the DS18B20 (heating system & room temps). +### kia_uvo + +Retrieves Data from Hyundai Cloud Service. + ### KNX I used a couple of chinese relay cards controlled with PCF8574 I2C extenders attached to an ESP32 with ESPHome. Caused by capacitive load (mostly chinese LED stuff), some EMV trouble on the I2C bus led me to bury this efforts, took some money and ordered a bunch of KNX actors from MDT. I decided that it would be nice to have current measurement, so I took the "MDT AMI-1216.02 Schaltaktor 12fach 16/20A C-Last Industrie mit Strommessung", the MDT SCN-IP000.03 IP Interface and the matching MDT STV-0320.02 320 mA power supply for a first start. And I added an MDT BE-04230.02 binary input array with 4 220V inputs (which was too small after a few days). I am very happy with it. After finishing the big click in ETS, the replacement only took a few hours. @@ -393,6 +397,11 @@ EQ3-Max! (I accidently bought some, so I have to use them until they die, 8 devi ### mikrotik presence detection, query the connected mac addresses from the CAP AC. +### modbus + +* Eastron SDM630 Powermeters +* Waveshare RS485 to ETH (B) Gateway + ### mqtt (also Zigbee) The Sonoff Pow (and R2) will stay with Tasmota for a while, because I have no good implementation of Tasmota's energy summary in ESPHome. I have connectd these via MQTT. Some Zigbee devices via an CC2531 USB stick from Amazon and `zigbee2mqtt`. Since zigbee2mqtt, a lot of new devices are here now: @@ -404,6 +413,12 @@ Some Zigbee devices via an CC2531 USB stick from Amazon and `zigbee2mqtt`. Since ### mysql using a local mariadb for the recorder. +### openwbmqtt + +Use the version from https://github.com/ChristophCaina/openwbmqtt, which has some enhancements and has renamed NumberEntities (https://community.home-assistant.io/t/depricated-numberentity-features/440282). + +* OpenWB series2 (custom), no display, 11kW, Type-B FI, Addon, no phase switch (Kona) + ### otp ### owntracks @@ -563,9 +578,9 @@ There are 1908 Ebuilds in total, 1901 of them have in total 1913 (35 different) |CC-BY-NC-SA-4.0|1| |CC0-1.0|1| -(Last counted: 28/09/2022) +(Last counted: 30/09/2022) I did my best to keep these clean. If a valid license was published on PyPI, it has been automatically merged. Otherwise I took it from GitHub or alternatively from comments/files in the source. Sometimes these differed and have been not unique. All license strings are adjusted to the list in `/usr/portage/gentoo/licenses/`. Some packages do not have any license published. In this case, Authors have been asked for clarification, some did not respond. Following the [official Gentoo Guide](https://devmanual.gentoo.org/general-concepts/licenses/index.html), these then were added with an `all-rights-reserved` license and `RESTRICT="mirror"` was set. Find the appropriate licenses referenced in the Ebuild files and in the corresponding homepages or sources. A big thanks goes to Iris for reviewing this README. -Last updated: 28/09/2022 +Last updated: 30/09/2022 From d37b84800b6b92db473da4df0013448f43cfa9cf Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 2 Oct 2022 11:00:00 +0200 Subject: [PATCH 02/19] bump yalexs-1.2.4 --- README.md | 8 +++--- dev-python/yalexs/Manifest | 2 ++ dev-python/yalexs/yalexs-1.2.4.ebuild | 41 +++++++++++++++++++++++++++ 3 files changed, 47 insertions(+), 4 deletions(-) create mode 100644 dev-python/yalexs/yalexs-1.2.4.ebuild diff --git a/README.md b/README.md index 2ec8a3320..7c13fe5d6 100644 --- a/README.md +++ b/README.md @@ -538,11 +538,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E ## Licenses This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted. -There are 1908 Ebuilds in total, 1901 of them have in total 1913 (35 different) licenses assigned. +There are 1910 Ebuilds in total, 1903 of them have in total 1915 (35 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1148| +|MIT|1150| |Apache-2.0|365| |GPL-3|118| |BSD|104| @@ -578,9 +578,9 @@ There are 1908 Ebuilds in total, 1901 of them have in total 1913 (35 different) |CC-BY-NC-SA-4.0|1| |CC0-1.0|1| -(Last counted: 30/09/2022) +(Last counted: 02/10/2022) I did my best to keep these clean. If a valid license was published on PyPI, it has been automatically merged. Otherwise I took it from GitHub or alternatively from comments/files in the source. Sometimes these differed and have been not unique. All license strings are adjusted to the list in `/usr/portage/gentoo/licenses/`. Some packages do not have any license published. In this case, Authors have been asked for clarification, some did not respond. Following the [official Gentoo Guide](https://devmanual.gentoo.org/general-concepts/licenses/index.html), these then were added with an `all-rights-reserved` license and `RESTRICT="mirror"` was set. Find the appropriate licenses referenced in the Ebuild files and in the corresponding homepages or sources. A big thanks goes to Iris for reviewing this README. -Last updated: 30/09/2022 +Last updated: 02/10/2022 diff --git a/dev-python/yalexs/Manifest b/dev-python/yalexs/Manifest index 7f19f787e..c3e6a2c51 100644 --- a/dev-python/yalexs/Manifest +++ b/dev-python/yalexs/Manifest @@ -1,7 +1,9 @@ DIST yalexs-1.1.25.tar.gz 46323 BLAKE2B c31aa0c2aa86ed3f76d6bc28bd16d15df845b400f572349b2537e885ea342ca93b77bf2dc39b21aa4903c7230b513a178cfef8c4dd5c9d616abf0e2ac71abf9e SHA512 fe78c2cf067f67d3b48f470771884e37283eb534124b1d106f5b05a4ee64d896e6d789353fafe30b6bbe605d477781f0d6b3ce8925038f867a7366ab267fc5ce DIST yalexs-1.2.1.tar.gz 46528 BLAKE2B 4001abb4b26f29e5ac278e5014f3a0446eb92cfd92d1a3ab9ce049c54a34dbf561799f718986a9475da0060bad7d6c10e5b1485ccdd4c599c8ff1f189e23e4db SHA512 309632f1ab20c10fed4ae81eea09be354b9338d58373da4d17432297686dc321ddf008316498b5069292112f0897262a424dd2f40d785fcce333e313cc9428ef DIST yalexs-1.2.2.tar.gz 47080 BLAKE2B 05f61df07d12857c473794067fb7a3848a12251abc35547248bded43002f7303dd1462684abbfd74a855f96ad5ba67220a3364f8fb51f42c9ea047aefbaacf0b SHA512 4debcc2c3e664f54d2471000a0a58d1135a9762495a1a9a2fd11e8dd22a9cc8086adeb60ee3b9cae3ec333c605632d42cea0fe6a9c6262b87b149e3b72d12807 +DIST yalexs-1.2.4.tar.gz 47366 BLAKE2B a59fad10c05f675fc35e6a6f10c0b16ca971deb8d8b5fc85742706be80b67d6fd126f50b0fec4a907692562522f23708dfbf11ba97265f4e84822367a653fc06 SHA512 678fce9630b664c0ffcec6e5536b4da32a9b796b692ea02a0479d7757c9613918913fd3b2204705a1ebc65985e4fd47ef15e458472dfb6a23603011f2ca416f0 EBUILD yalexs-1.1.25.ebuild 1018 BLAKE2B 9cb74c38af54a7268a9c2a2444ca0c0cb6a4fddd6f41d5eebfa5f06992879579c2db0d50914b6c3a61e563fbdbf0323e1f29067427e1dd26ec72789b6fbfd6dd SHA512 1f6b64579ea9e4a799dd89142fd9eb5bf17e821378c7c6fde7272968f5a4292177207ec30d7f4e35bcbbf2889b3ec228214567d3a700464b4b9060eba6a49aa2 EBUILD yalexs-1.2.1.ebuild 1018 BLAKE2B 9cb74c38af54a7268a9c2a2444ca0c0cb6a4fddd6f41d5eebfa5f06992879579c2db0d50914b6c3a61e563fbdbf0323e1f29067427e1dd26ec72789b6fbfd6dd SHA512 1f6b64579ea9e4a799dd89142fd9eb5bf17e821378c7c6fde7272968f5a4292177207ec30d7f4e35bcbbf2889b3ec228214567d3a700464b4b9060eba6a49aa2 EBUILD yalexs-1.2.2.ebuild 1018 BLAKE2B 9cb74c38af54a7268a9c2a2444ca0c0cb6a4fddd6f41d5eebfa5f06992879579c2db0d50914b6c3a61e563fbdbf0323e1f29067427e1dd26ec72789b6fbfd6dd SHA512 1f6b64579ea9e4a799dd89142fd9eb5bf17e821378c7c6fde7272968f5a4292177207ec30d7f4e35bcbbf2889b3ec228214567d3a700464b4b9060eba6a49aa2 +EBUILD yalexs-1.2.4.ebuild 1018 BLAKE2B 9cb74c38af54a7268a9c2a2444ca0c0cb6a4fddd6f41d5eebfa5f06992879579c2db0d50914b6c3a61e563fbdbf0323e1f29067427e1dd26ec72789b6fbfd6dd SHA512 1f6b64579ea9e4a799dd89142fd9eb5bf17e821378c7c6fde7272968f5a4292177207ec30d7f4e35bcbbf2889b3ec228214567d3a700464b4b9060eba6a49aa2 MISC metadata.xml 440 BLAKE2B 18a3328d8513f0373b609d2e556d8bfb3f62cdad58091ab1c72d26e6cd693b1f191aca7edd8ea5c24783aad669249fd03831ea1e1b59b75bf5339583d209faa1 SHA512 b1cac667ff70aa0e71c7788aeb0af885925f428a73c439487b02913196233402d7fb57edca244a07079edf6b8436c70191e0a68a6aa1256ec59e9bf6be5e53b9 diff --git a/dev-python/yalexs/yalexs-1.2.4.ebuild b/dev-python/yalexs/yalexs-1.2.4.ebuild new file mode 100644 index 000000000..fb2542e4e --- /dev/null +++ b/dev-python/yalexs/yalexs-1.2.4.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) + +inherit distutils-r1 + +DESCRIPTION="Python API for Yale Access (formerly August) Smart Lock and Doorbell" +HOMEPAGE="https://github.com/bdraco/yalexs https://pypi.org/project/yalexs/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND="dev-python/pyjwt[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/vol[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/aiohttp[${PYTHON_USEDEP}] + dev-python/aiofiles[${PYTHON_USEDEP}] + >=dev-python/pubnub-5.5.0[${PYTHON_USEDEP}]" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +} + +distutils_enable_tests pytest From 433cc9a4333b5068e9d7b451913018e9dc1717d8 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 2 Oct 2022 11:03:18 +0200 Subject: [PATCH 03/19] update bleak-0.18.1 --- dev-python/bleak/Manifest | 4 ++-- .../bleak/{bleak-0.16.0.ebuild => bleak-0.18.1.ebuild} | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) rename dev-python/bleak/{bleak-0.16.0.ebuild => bleak-0.18.1.ebuild} (81%) diff --git a/dev-python/bleak/Manifest b/dev-python/bleak/Manifest index 262e2b624..81c9da766 100644 --- a/dev-python/bleak/Manifest +++ b/dev-python/bleak/Manifest @@ -1,7 +1,7 @@ DIST bleak-0.15.1.tar.gz 619282 BLAKE2B 8699f5e44cf4e65f0c236d4f728480ef45db8f63e01a8eb9c7a56932c37e0001038bcba41c6670c4780073e227c1de2eece72130deea67fcc18db7db9285c9ea SHA512 d8d22ec7fe22d8577d290d05c1473a2c88ef75880d231895fd26f549860994574c036cdf3267804198431fbe9c528db2e8f1085205f1a07c651e4613305b23f3 -DIST bleak-0.16.0.tar.gz 620711 BLAKE2B f37aafb58857400f452e07a6ae7c0ed2df5e68c9ee1d841ce733b2248d683ee14770c1e557b7a8f002c085a2a7f3a81332fb7e530aaf61673b2e1032ca2e5524 SHA512 7ef580fe7030142508bc9b79a5301365630ec39ddebfa3ec8d786c1977cae643d96fc30e1f09c988d89c553f6023fed158a695946274321212de36126cd1e7da DIST bleak-0.17.0.tar.gz 107410 BLAKE2B 05b9700ce1aaaf34940a76829d35c7defb6bd4a6308466f25d982a688e60563604743f402ad2940c648c1c0cc5f13fccf06da366f19d404167589d6af9afdce9 SHA512 1c05ac5d328b32a7cab7d4c8e111547f34d9992c0595a24bfb4a1b7675e0cb970d6461ff26914b92b2f920fc27be043aa5df211ec0aa4392fb1cce2ade5384ac +DIST bleak-0.18.1.tar.gz 109643 BLAKE2B 4116d07083f8f04f0fb4b8a55353a36bee34549e174ae5cdefa857d80678c504f2d4ae0c373649a3b9f95e4ef2723771015d0375b84834b3d0460e035b0b2e12 SHA512 eec81e2cdf2606003c48120b66e63075a3b36d267ea8bb1aa98f86ee764d8cdb3268426f136bae28e6f82e781bd6c06e72556d61ca36bbda6e2fe21da519a902 EBUILD bleak-0.15.1.ebuild 833 BLAKE2B ccff0a48a339dfafa1f73e93d1be142d8a64b347fc3bd506fc905a25862efc5192400d79518b77ac3292f662171e8ca4377c4666bf0d7dcd731cda48bd2a8950 SHA512 00c845206a43caa9b6c2e807191a51183212d6ee7722c72c6b65d6360c8fc343d4edcf2c1d710fb2c22cedf1736211ae67f3e5f3bfbda45de012e689fa976388 -EBUILD bleak-0.16.0.ebuild 864 BLAKE2B dbfb38b7b6a72a5ee30d89fb2be14997d894d2f73e8e1f637e16062142b99ccee5fa4c8b8560019772865c2d8750e304473cd023c2e2742e3c199a7c2431ad7c SHA512 7b306ba3cd5ac0e23c15cea0f1b19aa2a56f294d5c9969f595dff1cfd638a7a8de33c3305350e85046f47aa4dcc09999c23bd6852a735db5bbb7981a7a2df34d EBUILD bleak-0.17.0.ebuild 872 BLAKE2B c1a0f60a8e7bf5b5578dfca0b9c2129d3e93acb9f400f6420bdc793af5d9729313e3e0e37580429b979b99a414929241316739a0c68842f101b3c43dec57ba82 SHA512 9910ac95e395e46eec4a290269fd70508fa0392c5d42fc15c0f837389c40dda21fc37618f9f86a25fa59c0b4d9b2503b839a353a1d675e77f61a716e5e7ae58d +EBUILD bleak-0.18.1.ebuild 945 BLAKE2B e6a12de2b5cfa5298bed3312ff992fd2bbdc0078b43e2683e12bc8cb74af1e373433d4193c0fd322860490f9f632c58232855104ce46636a3544788758bb8828 SHA512 dfb1629dadd6eabd42de72eb4383faf235ffbf4b7d4a1c7de1731bd1892bed00d912b1b3ed6c53f9bdb03c6c66b15b79f09bf91cf425b89f537109528bfb84c4 MISC metadata.xml 456 BLAKE2B 50cba788c6c1e54b660624d6a766c1a6473abaf739c20d05a52b3d0b479972cd00dcc47a370b42540f69e743a3e70f6c15238eda5331c0e3b4e4339180c78996 SHA512 8598b7570c0c9105db12e5fa5874c921f02ff35c1aa1718881bdc6b2af4ac72cb7e6175956d5b1f8b1f4b075f213387edd489885b2013951b7fa2a793f5e15ff diff --git a/dev-python/bleak/bleak-0.16.0.ebuild b/dev-python/bleak/bleak-0.18.1.ebuild similarity index 81% rename from dev-python/bleak/bleak-0.16.0.ebuild rename to dev-python/bleak/bleak-0.18.1.ebuild index 8ac92bfc5..45e81e674 100644 --- a/dev-python/bleak/bleak-0.16.0.ebuild +++ b/dev-python/bleak/bleak-0.18.1.ebuild @@ -20,13 +20,15 @@ RESTRICT="!test? ( test )" DOCS="README.rst" RDEPEND=">=dev-python/async-timeout-4.0.1[${PYTHON_USEDEP}] - >=dev-python/typing-extensions-4.2.0[${PYTHON_USEDEP}] - dev-python/dbus-next[${PYTHON_USEDEP}]" + >=dev-python/dbus-fast-1.4.0[${PYTHON_USEDEP}]" BDEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/nose[${PYTHON_USEDEP}] + dev-python/asynctest[${PYTHON_USEDEP}] dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + dev-python/pytest-cov[${PYTHON_USEDEP}] )" python_test() { From 0ce05b621be007293b45089f0ec28e956e01f7cd Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 2 Oct 2022 11:09:34 +0200 Subject: [PATCH 04/19] update dbus-fast-1.18.0 --- dev-python/dbus-fast/Manifest | 2 + dev-python/dbus-fast/dbus-fast-1.18.0.ebuild | 39 ++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 dev-python/dbus-fast/dbus-fast-1.18.0.ebuild diff --git a/dev-python/dbus-fast/Manifest b/dev-python/dbus-fast/Manifest index 29cea0c66..a56a9a192 100644 --- a/dev-python/dbus-fast/Manifest +++ b/dev-python/dbus-fast/Manifest @@ -1,5 +1,7 @@ +DIST dbus-fast-1.18.0.tar.gz 60222 BLAKE2B 33f744fa179a53a61bea7cc8ef106b7421b5905e3793bd3767a84c716cf65654b20528fc9f8a2112cd19727ed1674e8a825e8319f9d20761d41f1bea6f421738 SHA512 eb404533fa9feba63a9ac3cdcb1757d52696dd3e4ef41783f7afa703d2f5e8f91df07e58dc3f63d8dc0c9ab205b6a7f187271131979e285783a56611a8c03028 DIST dbus-fast-1.4.0.tar.gz 57433 BLAKE2B e4c35129bc5840d16d87a7dc132906fd427f15bf89c2405d7c83b7e17767ac1a12500e1182e0551d15b841e4fbbd5b08b3e87e28a7d6709877ecce5ddf332ae0 SHA512 180e3297187ec525c02a785a874e0991c0d676efe99f40ce437a7efd5b75bde0b04af673ac68d37d43b0a526e129e8cd1cd7aa91c0989ca234e4a3ecd766b34a DIST dbus-fast-1.5.1.tar.gz 57526 BLAKE2B 1acc6b0b322988c412b527ed143676dda7cd2242bc6fbe340be60bdc9ea1830d430688954da23ffa5b316d907f3de1ae384de90c9b518a53f4c4da7f92781580 SHA512 8b02aa46d68a119b084e61cefea89a269f6a07cfcead7ee42aa7029cbcca311cf87e7f9c011d71ddf5bcbc47a8f2105ce3ba6b457b171cab2b2bae9477c3d6e4 +EBUILD dbus-fast-1.18.0.ebuild 937 BLAKE2B 676d6a0c5485d15c11271de8d150fbdd3f39374020a519eabb81f7f9ab3c1e02679be2b0273039146653d2526ed15a451f5ea42d04870e260a4c39eeced0580d SHA512 ddddf7baa6402a29b0a185859c0fea25c57549e2f816fc73ee50fbd3be86fe8ceac94f4e7633fde84a0b812e26883b1c3cf35d02f44a074e1673b6287ecf09c2 EBUILD dbus-fast-1.4.0.ebuild 879 BLAKE2B c2b9a59f49973c648c92b1bcf23b8c6222d1de17e9343988e752fff29a302f99781d74583aea608e86fc8c3bdeb3f4e4e1fff2090a3d0bf06dc726a1c31d0472 SHA512 be06c69cf666c46227446c83e5f86153454c569f13938775644ccd3df17144b1fb1eabe0f4a74198b05f6d9bcc40a1a846defc53fedcc52ffec9c907468e4065 EBUILD dbus-fast-1.5.1.ebuild 887 BLAKE2B cf6391c502760ddcbe66f7020d79ce1296394592386833e3d759d7cda88a153f75bed8ad761376e2bea58856521a959f0b718f38a67e2811efb51c8f1742e68f SHA512 e2ac29cefe026d9fe9c9e3979cc7f51505e7fb53d36a1de000bc1917534aedf80033cd757c4ce81ec5fd8f79f25c1532652808f20b49c45cdd33aa3a1f6f7698 MISC metadata.xml 467 BLAKE2B 36dbf0bad23381a391b3e0cc260ec51aaa885dfa3423980477cd86659051ab7fa767b2e33e3ac26ac7f9d25ce41475a049f5293d6cf7b66045dd40fcf2f4062e SHA512 fa0bba9e775cd53b11907fc9b6fef8f1586217f6fdad4b4d906616bf48e0dbe8ec78f2e0f3bc89ab78b361175ea114c0977b8e190f1f7fadf6e00c61a4248d64 diff --git a/dev-python/dbus-fast/dbus-fast-1.18.0.ebuild b/dev-python/dbus-fast/dbus-fast-1.18.0.ebuild new file mode 100644 index 000000000..9536dba17 --- /dev/null +++ b/dev-python/dbus-fast/dbus-fast-1.18.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) +DISTUTILS_USE_PEP517=poetry + +inherit distutils-r1 + +DESCRIPTION="A faster version of dbus-next" +HOMEPAGE="https://github.com/bluetooth-devices/dbus-fast https://pypi.org/project/dbus-fast/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND=">=dev-python/async-timeout-3.0.0[${PYTHON_USEDEP}]" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/poetry-core-1.1.0[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-cov[${PYTHON_USEDEP}] + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +} + +distutils_enable_tests pytest From 9547e839bf8c183331c62eda113a4ebd9e1fd3c0 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 2 Oct 2022 11:09:57 +0200 Subject: [PATCH 05/19] update bleak-retry-connector-2.1.3 --- dev-python/bleak-retry-connector/Manifest | 6 +-- .../bleak-retry-connector-1.16.0.ebuild | 39 ------------------- ...ild => bleak-retry-connector-2.1.3.ebuild} | 4 +- 3 files changed, 4 insertions(+), 45 deletions(-) delete mode 100644 dev-python/bleak-retry-connector/bleak-retry-connector-1.16.0.ebuild rename dev-python/bleak-retry-connector/{bleak-retry-connector-1.15.1.ebuild => bleak-retry-connector-2.1.3.ebuild} (89%) diff --git a/dev-python/bleak-retry-connector/Manifest b/dev-python/bleak-retry-connector/Manifest index b6089b477..a146fbf06 100644 --- a/dev-python/bleak-retry-connector/Manifest +++ b/dev-python/bleak-retry-connector/Manifest @@ -1,7 +1,5 @@ -DIST bleak-retry-connector-1.15.1.tar.gz 11936 BLAKE2B 7f1ffeb4cf8a1506bbe9f80c2bda585094f179b0c4d585a5ee2063828d58234c11cc8041a6ce35861575ad4d1c9a964805954f2ceaabcb54cd12e4f646f5cb04 SHA512 0d5b992d504af1ccf4f85951dd7dff08cc8dc7f13733826873fbb15aab542c10726fcb9d0a0cac0de680a9f505fafa6c3632f0a44cf263314145880fbe91f818 -DIST bleak-retry-connector-1.16.0.tar.gz 12134 BLAKE2B a294744cccfdb5b81eb108659b6808349c2d2f6efcbe0cc902fcdbb773bf60666df24e250ec53a6db69d1c2c204229f8e8e4e59a1575462754d94c0087558d3c SHA512 9921424581c635e62021dd1cd949ee17b36c84588b0bb0b94b5626503f9fa0142075831caf13d9fd91dc6c171c0ed2f5b8408a7c101e0ba9bf99f00d35149958 DIST bleak-retry-connector-1.17.1.tar.gz 12163 BLAKE2B f00caf57547fd298cad4ff9de16c8bfccf6a4866ca4665bccca23aefaaefd0cc877dc85a475be4cca88ae4707bea9b36da6d491c272b9709fc2a57a9b9b260e3 SHA512 25eb88f53cf4cca58535ddd9f8cd68bd4c1e2317b9a58246774e41531a952cd6c376199625c0751fe7f3d254d89e04562ae4c4cd4848d3e770922b6e7b5d9be1 -EBUILD bleak-retry-connector-1.15.1.ebuild 1019 BLAKE2B 0cc8291c5432963944645e965ee42a286fb5802006798de9c466b4a01a63b02e57a50519c3eb3eba3ffd70c11e29c9044cf4a01b2ec5408cdd792d166c8b1f03 SHA512 0e182eb516791c68542120bc9741a73223bff3a6150a48a799b4582e569cf1dd688e6ce7ebff236789ffea7ba165ab042d3f0d44ca77c55a5f4487c0754973f6 -EBUILD bleak-retry-connector-1.16.0.ebuild 1019 BLAKE2B 0cc8291c5432963944645e965ee42a286fb5802006798de9c466b4a01a63b02e57a50519c3eb3eba3ffd70c11e29c9044cf4a01b2ec5408cdd792d166c8b1f03 SHA512 0e182eb516791c68542120bc9741a73223bff3a6150a48a799b4582e569cf1dd688e6ce7ebff236789ffea7ba165ab042d3f0d44ca77c55a5f4487c0754973f6 +DIST bleak-retry-connector-2.1.3.tar.gz 11534 BLAKE2B 5a4dcb7630bcbc5946641042e09fe5381f2fcdeb4f40ff96e3817152ee63a9a33e5d9cb1a12a486a977d2ebcc365544fc5e6161a4684b8257fd38344291ded54 SHA512 af7d9940a884325b43417f83385f0190b54e078e3e2162cd8d9d2268875d097d9e91a9ecbab6decaa1e9cd8a33ce6b09de0a0c34b8d1ff078311cef95216fb14 EBUILD bleak-retry-connector-1.17.1.ebuild 1019 BLAKE2B 0cc8291c5432963944645e965ee42a286fb5802006798de9c466b4a01a63b02e57a50519c3eb3eba3ffd70c11e29c9044cf4a01b2ec5408cdd792d166c8b1f03 SHA512 0e182eb516791c68542120bc9741a73223bff3a6150a48a799b4582e569cf1dd688e6ce7ebff236789ffea7ba165ab042d3f0d44ca77c55a5f4487c0754973f6 +EBUILD bleak-retry-connector-2.1.3.ebuild 1020 BLAKE2B 0a9a0ec511abb5ba81f2be3cc75cfdb48e2d9bc961590430b839b2cb1f8dba6fc3da94964a4eb4efe4633f73ebbcdb6fc0e479015929bb729276ff5c666c60d5 SHA512 5298c27a58e9dce1afa3164c0891989a6d1ed36d71bed69e202eafe6f37d98203691ea3bff16515524970295743b987a6923c9aeee8c9f983dc44f8d3eec368e MISC metadata.xml 463 BLAKE2B 466053ef118ef63da2a473fb583fa4dfa9b71b9dc008a72328de1d6ef8cb4966145979076bf3b567108c8eb4fc09def68e22e5cdafd880fa41bfb14fda30fb41 SHA512 9c25f447492a41a2c362c20c244c10968733c0d3cb0743aba626b55cf9b933e62dbedcaeb8f06bd181f1de83ac8ec39e06c8576d8403b8776123c9e90ceabad6 diff --git a/dev-python/bleak-retry-connector/bleak-retry-connector-1.16.0.ebuild b/dev-python/bleak-retry-connector/bleak-retry-connector-1.16.0.ebuild deleted file mode 100644 index d20d0f877..000000000 --- a/dev-python/bleak-retry-connector/bleak-retry-connector-1.16.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..11} ) - -inherit distutils-r1 - -DESCRIPTION="A connector for Bleak Clients that handles transient connection failures" -HOMEPAGE="https://github.com/bluetooth-devices/bleak-retry-connector https://pypi.org/project/bleak-retry-connector/" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm arm64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -DOCS="README.md" - -RDEPEND=">=dev-python/bleak-0.15.1[${PYTHON_USEDEP}] - >=dev-python/async-timeout-4.0.1[${PYTHON_USEDEP}] - >=dev-python/dbus-fast-1.4.0[${PYTHON_USEDEP}]" -BDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/nose[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-asyncio[${PYTHON_USEDEP}] - dev-python/pytest-cov[${PYTHON_USEDEP}] - )" - -python_test() { - nosetests --verbose || die - py.test -v -v || die -} - -distutils_enable_tests pytest diff --git a/dev-python/bleak-retry-connector/bleak-retry-connector-1.15.1.ebuild b/dev-python/bleak-retry-connector/bleak-retry-connector-2.1.3.ebuild similarity index 89% rename from dev-python/bleak-retry-connector/bleak-retry-connector-1.15.1.ebuild rename to dev-python/bleak-retry-connector/bleak-retry-connector-2.1.3.ebuild index d20d0f877..990120b87 100644 --- a/dev-python/bleak-retry-connector/bleak-retry-connector-1.15.1.ebuild +++ b/dev-python/bleak-retry-connector/bleak-retry-connector-2.1.3.ebuild @@ -19,9 +19,9 @@ RESTRICT="!test? ( test )" DOCS="README.md" -RDEPEND=">=dev-python/bleak-0.15.1[${PYTHON_USEDEP}] +RDEPEND=">=dev-python/bleak-0.18.0[${PYTHON_USEDEP}] >=dev-python/async-timeout-4.0.1[${PYTHON_USEDEP}] - >=dev-python/dbus-fast-1.4.0[${PYTHON_USEDEP}]" + >=dev-python/dbus-fast-1.14.0[${PYTHON_USEDEP}]" BDEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] test? ( From 959848630327f2c66aa60e7fe311a916d4f2a981 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 2 Oct 2022 11:10:43 +0200 Subject: [PATCH 06/19] update AIOAladdinConnect-0.1.46 --- .../AIOAladdinConnect-0.1.46.ebuild | 36 +++++++++++++++++++ dev-python/AIOAladdinConnect/Manifest | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 dev-python/AIOAladdinConnect/AIOAladdinConnect-0.1.46.ebuild diff --git a/dev-python/AIOAladdinConnect/AIOAladdinConnect-0.1.46.ebuild b/dev-python/AIOAladdinConnect/AIOAladdinConnect-0.1.46.ebuild new file mode 100644 index 000000000..9bd5004ee --- /dev/null +++ b/dev-python/AIOAladdinConnect/AIOAladdinConnect-0.1.46.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) + +inherit distutils-r1 + +DESCRIPTION="Python Async API for controlling Genie garage doors connected to Aladdin Connect devices" +HOMEPAGE="http://github.com/mkmer/AIOAladdinConnect https://pypi.org/project/AIOAladdinConnect/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND="!dev-python/aladdin-connect + dev-python/aiohttp[${PYTHON_USEDEP}]" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +} + +distutils_enable_tests pytest diff --git a/dev-python/AIOAladdinConnect/Manifest b/dev-python/AIOAladdinConnect/Manifest index 88e19d66e..e0d3b498e 100644 --- a/dev-python/AIOAladdinConnect/Manifest +++ b/dev-python/AIOAladdinConnect/Manifest @@ -1,7 +1,9 @@ DIST AIOAladdinConnect-0.1.27.tar.gz 6686 BLAKE2B 70449a25dbbf715d4c8b533c30b36795ce984e9c46b6841783cb579871c586988915f8334162683c17c4f1934f4e6ee57fa9016941627de8476e17882494de8d SHA512 d9bb955f01488fb12fbde9ff48ec532c905115b9462ca197d646597eb38b4e668f8d82c702b9580639595bb5bc8b57af3d5fc3417debdaccaeaee59d26a6d201 DIST AIOAladdinConnect-0.1.41.tar.gz 7536 BLAKE2B 3e7fdefda98908423355dad78829f4970550facf0b25d1718e0d3147bcc667d48a24e679ad5fee0f7e9be34c54f5ea15ee6956a8abd83ace5d6375f3c4d7fd05 SHA512 e834d688f6fd7ced87e3d55e4abe813c6a1691ccee533f352b72c1da2f0e681bb60ce9a0bf30c7aa56b6983f15156b65280e6a0632f6e324104dd05ce396adea DIST AIOAladdinConnect-0.1.44.tar.gz 7649 BLAKE2B 3298c78cdfb81f53f87e61e9c95330f20fc55786221c574cf286d0a128f7fc2569d7d787fb22e436e3ce4229a60d450d25f388ae656e8a276ac4c9f3782f23f5 SHA512 26b372ae9b0d7cfdf5f8e8a033bbd8e416da031964c66e1be59b6e8c1302c9146856a25bc8a874491f8096959401a7a0121c79a3378e4d80a22b2165bbde2c8f +DIST AIOAladdinConnect-0.1.46.tar.gz 7755 BLAKE2B 268b2982b5508dbf9e13e7a07dc66f932ee4f76cbef23d4fd9a3bc10a34a3d20af5e52fd277022edd5de4a9cab457a5ff0c328e139d24e08514442d97b71a509 SHA512 69e8db61571ca895ec329344b7b390c0b12ef75695f06c32335dd9b25c954ee79fe3fc116063b5e953f52ddd564fa455d9dd65fa4b628d16e9b51c7d0e1339ec EBUILD AIOAladdinConnect-0.1.27.ebuild 848 BLAKE2B 363575d386a5de79dc3617ac8fca2e00491eea194f5e4e2e3c7f547612729c4de973cc2e168a412b20e6bd8400af5cb7da66c628bd179793a81f50e8f7785f4a SHA512 a546d2fb8aecb74c706db4936cb5a1109028555dcec60209fc63de5d57d0a02a10b73accf98d20777dfce59df0e683b5e3367fc04c63f224f616db3c2765f024 EBUILD AIOAladdinConnect-0.1.41.ebuild 848 BLAKE2B 363575d386a5de79dc3617ac8fca2e00491eea194f5e4e2e3c7f547612729c4de973cc2e168a412b20e6bd8400af5cb7da66c628bd179793a81f50e8f7785f4a SHA512 a546d2fb8aecb74c706db4936cb5a1109028555dcec60209fc63de5d57d0a02a10b73accf98d20777dfce59df0e683b5e3367fc04c63f224f616db3c2765f024 EBUILD AIOAladdinConnect-0.1.44.ebuild 848 BLAKE2B 363575d386a5de79dc3617ac8fca2e00491eea194f5e4e2e3c7f547612729c4de973cc2e168a412b20e6bd8400af5cb7da66c628bd179793a81f50e8f7785f4a SHA512 a546d2fb8aecb74c706db4936cb5a1109028555dcec60209fc63de5d57d0a02a10b73accf98d20777dfce59df0e683b5e3367fc04c63f224f616db3c2765f024 +EBUILD AIOAladdinConnect-0.1.46.ebuild 848 BLAKE2B 363575d386a5de79dc3617ac8fca2e00491eea194f5e4e2e3c7f547612729c4de973cc2e168a412b20e6bd8400af5cb7da66c628bd179793a81f50e8f7785f4a SHA512 a546d2fb8aecb74c706db4936cb5a1109028555dcec60209fc63de5d57d0a02a10b73accf98d20777dfce59df0e683b5e3367fc04c63f224f616db3c2765f024 MISC metadata.xml 463 BLAKE2B aae76069c5153a1030928fe1ad6edb798604be9e076b35e613b50e7fa2163cc941c4c9ce501c954323f004099a7f81604445911f02a2bf1d019c0046a17bd086 SHA512 6f57f54e58cea6d31e2c68884135c6d99f4e832d6347bde53d707a0e9d107752df1ca9d2452f03d45b18d644066853aa5aa33f8e5e8c84f635172ff75b977130 From 8966628c888d3a3a8d0cb0db6a0bb68e67f42574 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 2 Oct 2022 11:13:09 +0200 Subject: [PATCH 07/19] update bluetooth-adapters-0.5.3 --- dev-python/bluetooth-adapters/Manifest | 4 ++-- ...-adapters-0.3.5.ebuild => bluetooth-adapters-0.5.3.ebuild} | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) rename dev-python/bluetooth-adapters/{bluetooth-adapters-0.3.5.ebuild => bluetooth-adapters-0.5.3.ebuild} (90%) diff --git a/dev-python/bluetooth-adapters/Manifest b/dev-python/bluetooth-adapters/Manifest index e9a61de4a..5a05b69a7 100644 --- a/dev-python/bluetooth-adapters/Manifest +++ b/dev-python/bluetooth-adapters/Manifest @@ -1,7 +1,7 @@ DIST bluetooth-adapters-0.1.3.tar.gz 8719 BLAKE2B 8243fb2b101e4b20662fc33598f7d5df6d5738bf52a840cf17ca935874addc0e7a6a02168796c3214620eaedb7dcca91615fd66dc9aebf31a3e61a4119e7f92d SHA512 60428ff5b639ab505979bce6d759c394216d605d540e594ecaf1bbca822f2d13b4003f41f6170cd9f0bd193c77251987300a24ed1f37d7276607cec8f4c94669 -DIST bluetooth-adapters-0.3.5.tar.gz 9383 BLAKE2B b8345484a021f3d54a9219a0482c98f3876ff164f4e13fa31c9eed4a4a3c39edb4878bbe54befb25a60611cb40a3df37a2845d25b1e7b4e2206d20baad120e98 SHA512 ec1599db858e49876cc50decfd887a0f0029a52d3e5ceb9a7486f6d017fd7b0a96189c00765b96a380fc5804c46a10ab85a82ceb6893d463dc8105a3e6cd50d0 DIST bluetooth-adapters-0.4.1.tar.gz 9404 BLAKE2B d1307c05697aadc609608f6def866cb82cf34f259b18117315322ddf4a58ad9d0997e79233be96a81a857c8bbdb9d9d30c58dd949e2e5dd7f7fe95ddd203dad2 SHA512 be768577a47dce4df66348fb1c289d8f97f15f967f3e96496bd817b6620d92f3ce858b5e0ba0200329ed9b687de69a07921b8c90704ccef5bcc560152fcec0ef +DIST bluetooth-adapters-0.5.3.tar.gz 10254 BLAKE2B 72e308270f35a9139c337d1d31cc1956618273c51c4014822e5b22e8b1ab42fd540b3b132094e98b00210ace9def3699859bcbf32456811c614a36595df6b4cd SHA512 e490a44a3ab27da6aa70229b3fe17a26d65a6aa39642b1f24100f5a5923d943003406265fa1884b4bc87133a3c904a32f9b1cfbd2881401d4c5a4dd01b4a931d EBUILD bluetooth-adapters-0.1.3.ebuild 851 BLAKE2B 1d588cbf5bc8a787648e143b1a2dbba5f99fa29b194c2deb8d925c48eae371bca08409ee48fa8d96cd5f8f3cc0dca8d40c3c9be960951601c4196a1b3862953b SHA512 bb49a854065217378c8a2b8fc9151d666b649a5ca936b87bc17f89f561b73a1663651085de2601985e5a1d2a2003e28a623926590aed98c1a433febb172c92e7 -EBUILD bluetooth-adapters-0.3.5.ebuild 949 BLAKE2B 4d5d333f58dc90a1f31fb17483c6e7c550c5fa6ed95b0c42e3ee84e106d1e0efca6f9bf35e06f8984e0bdd4f96a0a2f9b52dfdf92df06eec5da450cf3be36d36 SHA512 121e33c79f8963fe9c1d29201bac68854246440f2712c3784ae08468cd2f00445f3072c6df6304154f3bdad7b9a7652251ddaf9b78f48a4dcb6d8aed13795b68 EBUILD bluetooth-adapters-0.4.1.ebuild 949 BLAKE2B f9979f31933d15f14852f427e09d5cebbc7f5b593e53a7f83cde5389e926c222849765270ae3fd8d7a4eb6d718bc957f1446443b17bc95c5d29ceba964a959d2 SHA512 e62d19ea598454a519e6a9188aa6bd4be7aed501a469dea095f5eb382cf435bb7b866431f8311c5a383a7a28da24fd84f27ed89ed18a14a767b4ebe47bd84951 +EBUILD bluetooth-adapters-0.5.3.ebuild 994 BLAKE2B d21612f12ae7040f2d29aca47c01c113b2f7b623cfeb4d7cd24e8f52f39bd227fb747ef647d5b380b11a9ec27a2a189d7b26931570e56dece91d5e919f69922f SHA512 2e9880ea024693d899023ad2c367d2f52a5165bb1bf8c4405261a7696bfd182f9a8351c6654e85e1f35f3b7f0b495674f1fa59a7370b437db9da79b829eaf443 MISC metadata.xml 460 BLAKE2B 30a90670a9de8bbb401b306bee83dfb8a1b41e46871547230d7b305cb8bfcf2827c6a1e5203cf7e4fc77ebb59dc18134e8b7bc8d1f9ecbde2bce0ae370a623bd SHA512 4dd87508f9462dd85062f8a1cbbbb11104fd6dead151c4d94f224d7a9c696a2657e1d65e048073aff07faa473a15cf84d65ad261433896642a1bbe218cfa34c3 diff --git a/dev-python/bluetooth-adapters/bluetooth-adapters-0.3.5.ebuild b/dev-python/bluetooth-adapters/bluetooth-adapters-0.5.3.ebuild similarity index 90% rename from dev-python/bluetooth-adapters/bluetooth-adapters-0.3.5.ebuild rename to dev-python/bluetooth-adapters/bluetooth-adapters-0.5.3.ebuild index 8492acc7d..4a045b6b4 100644 --- a/dev-python/bluetooth-adapters/bluetooth-adapters-0.3.5.ebuild +++ b/dev-python/bluetooth-adapters/bluetooth-adapters-0.5.3.ebuild @@ -20,7 +20,8 @@ RESTRICT="!test? ( test )" DOCS="README.md" RDEPEND=">=dev-python/async-timeout-4.0.2[${PYTHON_USEDEP}] - >=dev-python/dbus-next-0.2.3[${PYTHON_USEDEP}]" + >=dev-python/dbus-fast-1.4.0[${PYTHON_USEDEP}] + >=dev-python/bleak-0.15.1[${PYTHON_USEDEP}]" BDEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] test? ( From 08ef17860d2f1207b0088c5f47e39d719647f46a Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 2 Oct 2022 11:17:56 +0200 Subject: [PATCH 08/19] update pybravia-0.2.3 --- dev-python/pybravia/Manifest | 4 ++-- .../pybravia/{pybravia-0.2.1.ebuild => pybravia-0.2.3.ebuild} | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) rename dev-python/pybravia/{pybravia-0.2.1.ebuild => pybravia-0.2.3.ebuild} (96%) diff --git a/dev-python/pybravia/Manifest b/dev-python/pybravia/Manifest index 81e60e77f..01eaae32a 100644 --- a/dev-python/pybravia/Manifest +++ b/dev-python/pybravia/Manifest @@ -1,5 +1,5 @@ -DIST pybravia-0.2.1.tar.gz 7518 BLAKE2B 6a7c6eb8567f1eaa6eef71535457935b8170f417e3ec74250f3285e1457326e58cbbcc47dbd72cb30638c238c831a3f0ab83d3915144fdc43896528c51a2ee48 SHA512 72cf9837488ebdf3e3c3b057ff20035486b0770548630cfef62b26c85249303f3b37e2d7a85414bfad1a35e54324d02e842729519ee0d26c06a445e5c5676837 DIST pybravia-0.2.2.tar.gz 7858 BLAKE2B 13be0edc198be4af7f2968fb0e58c6353d23c4b27fa79eb33460ce692ee90b9e757905d60f22c9efc6326366547a7357042a631684e9b89bf3e110b817ab52fb SHA512 861776486a86b03aedb8095117403f0aec6e26bf5aa78f2badbe39e2324b1d6290f99ed7a48dea59b18b1fce127fbe0b515e3f22ec26be90a3d848cce5d6d342 -EBUILD pybravia-0.2.1.ebuild 791 BLAKE2B 88181938fa9fb01dfafc4b11cadea9c6092095297de48957f6135efe60eda31c4bea30e596c47a7a6e1138443c37ee90efa8488ffdbf3c8f8a1d6b6544a5698a SHA512 8bc46f4df140cc8d0999b1ddd3fb05fa274879cc9a39024ef501b0be3e8cbb3e105d1611feda1a855ffea76a78ce7eac608e636989562b54e9e349a0ee567088 +DIST pybravia-0.2.3.tar.gz 7940 BLAKE2B 12d82cc58982868a9c0669f8b6f942aaeb3d22e90bce64459e1779e54ba44963bbb36df3006841a52c5a95bbc59a3fb28dfc2bd00e74e565a69e003ae59f907b SHA512 261198cd0067eab21fbd1b121d1ca53b06153643c9f4d8b5518a60c8608699be29a651b22c57b529b20cd0a7b45a4e76f375adf9e12963a87a3d3c40352c140f EBUILD pybravia-0.2.2.ebuild 791 BLAKE2B 88181938fa9fb01dfafc4b11cadea9c6092095297de48957f6135efe60eda31c4bea30e596c47a7a6e1138443c37ee90efa8488ffdbf3c8f8a1d6b6544a5698a SHA512 8bc46f4df140cc8d0999b1ddd3fb05fa274879cc9a39024ef501b0be3e8cbb3e105d1611feda1a855ffea76a78ce7eac608e636989562b54e9e349a0ee567088 +EBUILD pybravia-0.2.3.ebuild 819 BLAKE2B 72736ab5d2e6ab3860b27fc31280ec17bf893e33240babe6618e60b36089f594c8d73900f3a3bdf6e31e5472463187e2beb5f8ad6a29d87ffa48210535222170 SHA512 22f04a4550f2ea40d4345f7101e7feba98032e888d63e6106705d41b9ac1563899b3363c1e547aabc20af799565d4d7a583d7c73dbcd3625eb223c8de370e3c0 MISC metadata.xml 449 BLAKE2B dddd5e91235da8a311fbf35b2d06405ccaac85e70280b60d6815be48baa373ff59c32f544ebd11a2e4dc97758cd1512c1d86a7e55da5196eab4e98b865c0b933 SHA512 6eef9a1123b09d179f6a3c58fa55897fd949b1388fe424c3a8018a067d5769e5854bb1ec531e2fe5778a06525c860d68991ee538b85f57b3225db579408b4115 diff --git a/dev-python/pybravia/pybravia-0.2.1.ebuild b/dev-python/pybravia/pybravia-0.2.3.ebuild similarity index 96% rename from dev-python/pybravia/pybravia-0.2.1.ebuild rename to dev-python/pybravia/pybravia-0.2.3.ebuild index aae90f15f..a2acd1c1c 100644 --- a/dev-python/pybravia/pybravia-0.2.1.ebuild +++ b/dev-python/pybravia/pybravia-0.2.3.ebuild @@ -4,6 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{8..11} ) +DISTUTILS_USE_PEP517=poetry inherit distutils-r1 From 8f6ab8e8ce8b16bec5d0948ee17031c0fb9935cf Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 2 Oct 2022 11:20:24 +0200 Subject: [PATCH 09/19] update brother-2.0.0 --- dev-python/brother/Manifest | 6 +++--- dev-python/brother/brother-1.2.3.ebuild | 2 +- .../{brother-1.1.0.ebuild => brother-2.0.0.ebuild} | 9 ++++++--- 3 files changed, 10 insertions(+), 7 deletions(-) rename dev-python/brother/{brother-1.1.0.ebuild => brother-2.0.0.ebuild} (78%) diff --git a/dev-python/brother/Manifest b/dev-python/brother/Manifest index f1f6eb73c..f6fec358e 100644 --- a/dev-python/brother/Manifest +++ b/dev-python/brother/Manifest @@ -1,5 +1,5 @@ -DIST brother-1.1.0.tar.gz 12462 BLAKE2B 983b45297ccff2d3db627c5bdbba7b43f2bbaf5d60486236014f863c7d604a3cfa31eca6d1dffdf393731885403580818f9ad206d62ec94f6b276d404f00f57f SHA512 57fd8239cb05c419889636d3b9b5cf08070c5524d380934f57bea93d04d6c0c061261cf57e641b79f3579b686b96cbbeb32e867442e46de95bb51675f13d4add DIST brother-1.2.3.tar.gz 12670 BLAKE2B 9237d0e42139abc443f722d2443050ae9b5794c9f19f0d89b0782766fd15a0329a8d98f899b999d3f58936b69852184eccc8dce4acaef9f685e55bab60d5bbe0 SHA512 3e4941079b7d0c25c26638c1dde4634f76a63adc70dfa8ac6932e99f2534897c4ec0bc94dd0131a66fad4e8d49d13a9f1a896d158c1857fc2a18546970ee215c -EBUILD brother-1.1.0.ebuild 812 BLAKE2B 254494b35d4efda6eb5ea62c36bf688db37be033dba8066ad5c4f54db7f1c8e979a9f94796ed999b22333a3f392c3a4883e24ce77e5e13a6c0cf58eff1b877bb SHA512 a0a54203e3a7c03ca3b12bb745f1b13be8fdff8497765e83d3961283d1a3234afcd3970f200f4b04cbb6a90e456adcd91c4e6b97994b4575248ac942233dce55 -EBUILD brother-1.2.3.ebuild 846 BLAKE2B 9f927779b950766fd0a47411af19655130a0f422bf5a18206f1711fa9c0c30af969aeccf545f0acd5dc4c5ae4517092477ae1893d119518014493b614abbc16a SHA512 562f4ddf151ee0791ade065cbec8dc34353f601863b24fecc48f43236ed3df9536d8f9dd5712fc8b72b8bfc15dcd7684d6176a21514ee70538f513164cb73081 +DIST brother-2.0.0.tar.gz 13165 BLAKE2B 067ddb93e96ab3c44bb5faf4fd95b5efd7d415a542cd90e8a15cd939e3aaf94edeb21f3cb05d0d17d2293cfa651c45c632401b02f1777857da5d9664a6682d63 SHA512 551155ae6d76ac77f087434ea97e73682f330d2664edfef6dfeb2e8f6ed9da77049327a1519b56b206ba1b0e74c7b37c2d46d94747c5880c9bd3da435527cb8b +EBUILD brother-1.2.3.ebuild 846 BLAKE2B 08b701d8b5601d47cf0e431c289f2ed4e9266785516b4202073a06b240482273c744801871b574258078e75fb40ce1d9f15bc31054e2ff5184b74dcdc5ca9e41 SHA512 1585c4ebe8681c5b8d1f1b431855e8b94c91084e1d926a54402b1651222882bafbe0a9c9b8a290379c443de2dcdfbce1689ce7ccc2b2dc641c68f57f70a65fc0 +EBUILD brother-2.0.0.ebuild 883 BLAKE2B 4f2aa47f24fa6c86a08dc04dabf12aa8d0100ef20cb22e98fae9decc8e6d803624e4ac3f71895e2504f6a314a654907d9ded850552b044f38a41effae921f02d SHA512 70ae23c80f599d1aecdc721e901c8ed85b80cbe9bf94d173e08015d1b3ab2c5f51a01be54dd3b1843b82e165fe15ff762eb91bbc7b5bd681ea75f08a7cc9ee60 MISC metadata.xml 326 BLAKE2B 45b6d7cbb9411c2b3ce4534fae74d08eb83ae7b2b8be75eadb56fd9e639e34ce71638039ecb59b9dd49622e57ef1ee604677a91a634739f4458d7b760cfee497 SHA512 8a1b5d25cfa170415886bd7486bf2c64fbb071e1a0500507b3584ff2490a6ccbcc941f6d8acef6ff6282bd2657cea8b76b13c8c29e3765ff9307bf8d21f89c4a diff --git a/dev-python/brother/brother-1.2.3.ebuild b/dev-python/brother/brother-1.2.3.ebuild index 075d5cda4..aed71d0da 100644 --- a/dev-python/brother/brother-1.2.3.ebuild +++ b/dev-python/brother/brother-1.2.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..11} ) inherit distutils-r1 diff --git a/dev-python/brother/brother-1.1.0.ebuild b/dev-python/brother/brother-2.0.0.ebuild similarity index 78% rename from dev-python/brother/brother-1.1.0.ebuild rename to dev-python/brother/brother-2.0.0.ebuild index 18883be2b..de00481f6 100644 --- a/dev-python/brother/brother-1.1.0.ebuild +++ b/dev-python/brother/brother-2.0.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..11} ) inherit distutils-r1 @@ -19,7 +19,8 @@ RESTRICT="!test? ( test )" DOCS="README.md" -RDEPEND="dev-python/pysnmp[${PYTHON_USEDEP}]" +RDEPEND="dev-python/dacite[${PYTHON_USEDEP}] + dev-python/pysnmplib[${PYTHON_USEDEP}]" BDEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] dev-python/pytest-runner[${PYTHON_USEDEP}] @@ -32,3 +33,5 @@ python_test() { nosetests --verbose || die py.test -v -v || die } + +distutils_enable_tests pytest From ce4897d1811d46def856cc23c25aa3b124527773 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 2 Oct 2022 11:26:10 +0200 Subject: [PATCH 10/19] update sensor-state-data-2.9.0 --- dev-python/sensor-state-data/Manifest | 4 ++-- ...state-data-2.2.0.ebuild => sensor-state-data-2.9.0.ebuild} | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) rename dev-python/sensor-state-data/{sensor-state-data-2.2.0.ebuild => sensor-state-data-2.9.0.ebuild} (91%) diff --git a/dev-python/sensor-state-data/Manifest b/dev-python/sensor-state-data/Manifest index bef85ca61..0b01db641 100644 --- a/dev-python/sensor-state-data/Manifest +++ b/dev-python/sensor-state-data/Manifest @@ -1,5 +1,5 @@ -DIST sensor-state-data-2.2.0.tar.gz 16067 BLAKE2B 398ffe9a20cb0def94670f8845aa40c7b4606eae59d1960927f42be9ccf878dc33bbf6688057b18e410111112164ed593ec42e6146845aebdcd4a591d98e5848 SHA512 d9e90cd24d4cd0cbe91f689ae36542c831b3508405363b0355d3d3d8cd928a4879edd9fbc9a19c47c2595fa3c8792f8f7eea3d499f42fe17f9b497e910598a94 DIST sensor-state-data-2.6.0.tar.gz 16406 BLAKE2B cacfd2ac22cc3ea220db8e04f048f8ff722916a2ddc83390350050906611f37a9268bea552c6d989a128a2e9653d4da7d7c180690ad5642d719793f2dc50137c SHA512 5156aa2427963ca3114382b69de1fb7a4760ad987f3c58d74063bbd6d4251eb0d3e23fa30eefabc0483c2abc24a100cd6a772127203432835555a747e7149e1a -EBUILD sensor-state-data-2.2.0.ebuild 766 BLAKE2B 095dcb63909196ed2c71babc59c2703a94892975da600983fb13d706fd6a99dc3dc1ed045f8487782f6ee25ca06828fc660345b654d5d1924c85ac629de52b02 SHA512 b06a61cd9d677b8efa58019e28dd561e7e550bcae5114600a0906c8ecd4550114e577fdf88f6fa71d8be632deea6be63214eda2f1b40d26d62674026b4b413a2 +DIST sensor-state-data-2.9.0.tar.gz 16702 BLAKE2B 795e6164d2acd7572191a8ed3362d29992299480efd9c007a6525ba7fa6675e2a6441b215619edb883282f68235c9492069316844a7a426c7d25466771c9327a SHA512 2692c9c1bf66a984bde06e389aa40d4c287c06df22bb1c8b0404844f15096d9034f7b82463bdc58f309ce9e38b60e6b660162a65d511c958fd19ba8897a7b6ac EBUILD sensor-state-data-2.6.0.ebuild 766 BLAKE2B 095dcb63909196ed2c71babc59c2703a94892975da600983fb13d706fd6a99dc3dc1ed045f8487782f6ee25ca06828fc660345b654d5d1924c85ac629de52b02 SHA512 b06a61cd9d677b8efa58019e28dd561e7e550bcae5114600a0906c8ecd4550114e577fdf88f6fa71d8be632deea6be63214eda2f1b40d26d62674026b4b413a2 +EBUILD sensor-state-data-2.9.0.ebuild 836 BLAKE2B 77f5e5b440566fad51c0bda50499b64f186b51753bed521a5e4d70286523bb3bf3071e555d59a2f968021fee2c00c4f57a78eed6daafc8ad76b0d3ac6a18878b SHA512 087d776c8886f7210510ecb59a9e6a3b23a544a2eff916e77808225c4f02ee553b085ae04b49e1f242ca1df596ff3601e039aa764bf06b01982973d35b6cac97 MISC metadata.xml 459 BLAKE2B faa8ad4dddd4dc6e530775b7b772a43c844d97d53dd13a74d71abdff7233aeb2201de290837e308d866d66005bb7a1ca95974caec349c1a66af9239e706378f5 SHA512 234e366bfb6c355de21e3a06e864f850938d911dd36359e9b67fbdeeb3924ad2141a129203d748c3af41dc68e9e25b20d908b0b3d3d81981044a69fc484c6146 diff --git a/dev-python/sensor-state-data/sensor-state-data-2.2.0.ebuild b/dev-python/sensor-state-data/sensor-state-data-2.9.0.ebuild similarity index 91% rename from dev-python/sensor-state-data/sensor-state-data-2.2.0.ebuild rename to dev-python/sensor-state-data/sensor-state-data-2.9.0.ebuild index 458856ae9..c13d7da8a 100644 --- a/dev-python/sensor-state-data/sensor-state-data-2.2.0.ebuild +++ b/dev-python/sensor-state-data/sensor-state-data-2.9.0.ebuild @@ -4,6 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{8..11} ) +DISTUTILS_USE_PEP517=poetry inherit distutils-r1 @@ -25,6 +26,7 @@ BDEPEND=" test? ( dev-python/nose[${PYTHON_USEDEP}] dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-cov[${PYTHON_USEDEP}] )" python_test() { From 3007c668df8c7ed57dc863e074558e6ae3f130c7 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 2 Oct 2022 11:26:42 +0200 Subject: [PATCH 11/19] update bthome-ble-1.2.2 --- dev-python/bthome-ble/Manifest | 4 ++-- .../{bthome-ble-0.5.2.ebuild => bthome-ble-1.2.2.ebuild} | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) rename dev-python/bthome-ble/{bthome-ble-0.5.2.ebuild => bthome-ble-1.2.2.ebuild} (81%) diff --git a/dev-python/bthome-ble/Manifest b/dev-python/bthome-ble/Manifest index 27adcda7c..e06f705ef 100644 --- a/dev-python/bthome-ble/Manifest +++ b/dev-python/bthome-ble/Manifest @@ -1,5 +1,5 @@ -DIST bthome-ble-0.5.2.tar.gz 11026 BLAKE2B 7b46676e31f31ba3c0cba5ee1227eb094af2cf2e2bfe74877fae29527b00c2009a0efc54ef8ce112aec03aff914e9502fb907d662111ba340b48907326b1e4c7 SHA512 36e6f5a9d7305225504f7422e4140b082bfced61da9afbdde354196aa91b2e7f81495d779037b4ff83fe318face01c5b72804cb85d4c87563169a1c0171ebcc4 DIST bthome-ble-1.0.0.tar.gz 10906 BLAKE2B e191b313ba62ec7a3bffce9f226b23e82a311621dafd9ecb488632dcfd9e0855a61a3ff750e6b66f49293140e30190642d376a9b38eb360a9dea20471cdc684f SHA512 0d9097f6f7507874fd6c3f993aaa8f363f91a04afeeecf68a693940d890a7600846d10d4d32d5f4c3663c3a9b5d1c8a5cb0bcae005e53c72cce007c5424c5ecb -EBUILD bthome-ble-0.5.2.ebuild 944 BLAKE2B 93a6fb78b265a8a8c7f7d6629b0cf91d3806139ca3229db395d44aaba52a505895e356f700c15e0e14507269a93eae7b3b1caa6f324bc93ec99c36b133e5b039 SHA512 9acc554050215346a2c00b80d08f5296745f42ba01d4b17958e9afd082bacab6ad455b94742925a967f107c7bab9e6d8ae1912be045ae1d20f5e498a4c282778 +DIST bthome-ble-1.2.2.tar.gz 11952 BLAKE2B a7ae740ab9c412fa3435b707a4aaa6c8c8711698280907b051aa3555750e53f3d4f7add936632f1523c05c9a1e0b12be3482192461426d349d140d1038e3cfde SHA512 d425793e7ecb9d96a5108112e5d8ed4c8b0aba3c50264d5d8ac19784c1369743375349a578b1bcdfe773f721b2d431c85545998cbc5261ed800d7a7c1f38ce1b EBUILD bthome-ble-1.0.0.ebuild 986 BLAKE2B ceace08334240257ad598cbde079152523a53032bd6c98565dd8fbca27e641a6599d3566a523a38cebd9274814587e768a2a778a1a2627d86efb3f3dc14bae9d SHA512 accefd12ba90a69e0aa97c737f53efd568eb91e9503a3765481d153aac21b408582ac6249092e0ad8ee06cc1c66b3797fa6a811c0379b1e24ecddbf700faed73 +EBUILD bthome-ble-1.2.2.ebuild 1014 BLAKE2B 46afa4d62362869921e00a06617c029ff365ab5011320ee1d6326c8253b9bf08cac90a6abd2784ad777b7dd49f4b0e13967640be7b78485e6ac0fc6b6a70792c SHA512 2812b604121cc716cdfcda8d1ba068b3d76e31f0b3b089eb7ac3deab84a6cc717fd1f76e122ab0df0a5e5f46460e11857e4f87b6042e9a04f78b9caf2d95d851 MISC metadata.xml 453 BLAKE2B 45fc6c8c182b3dfb8796a9bb9df38ae02fc076f571ee525381b43ec1ef974aa304bd97e29753394c43c569d67b5994072628c44205b73013f2aa053afae8297e SHA512 1011c33f6f1e28b9ccf480202abedd33e2837ffae9b7ad7cf58fbebd29abd98ef664e6fc3a7e89dcd99842d8f8ed3fb16d4ff81b34c29effcefedb921abb85e2 diff --git a/dev-python/bthome-ble/bthome-ble-0.5.2.ebuild b/dev-python/bthome-ble/bthome-ble-1.2.2.ebuild similarity index 81% rename from dev-python/bthome-ble/bthome-ble-0.5.2.ebuild rename to dev-python/bthome-ble/bthome-ble-1.2.2.ebuild index 1479f5659..35be11c4a 100644 --- a/dev-python/bthome-ble/bthome-ble-0.5.2.ebuild +++ b/dev-python/bthome-ble/bthome-ble-1.2.2.ebuild @@ -4,6 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{8..11} ) +DISTUTILS_USE_PEP517=poetry inherit distutils-r1 @@ -19,15 +20,16 @@ RESTRICT="!test? ( test )" DOCS="README.md" -RDEPEND=">=dev-python/bluetooth-sensor-state-data-1.5.0[${PYTHON_USEDEP}] +RDEPEND=">=dev-python/bluetooth-sensor-state-data-1.6.0[${PYTHON_USEDEP}] >=dev-python/pycryptodomex-3.15.0[${PYTHON_USEDEP}] - >=dev-python/sensor-state-data-2.5.0[${PYTHON_USEDEP}] + >=dev-python/sensor-state-data-2.7.0[${PYTHON_USEDEP}] >=dev-python/bluetooth-data-tools-0.1.2[${PYTHON_USEDEP}]" BDEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/nose[${PYTHON_USEDEP}] dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-cov[${PYTHON_USEDEP}] )" python_test() { From 549ee7e844e35c1345a3538850ad90d037243783 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 2 Oct 2022 11:30:36 +0200 Subject: [PATCH 12/19] update hass-nabucasa-0.56.0 --- README.md | 4 +- dev-python/hass-nabucasa/Manifest | 2 + .../hass-nabucasa/hass-nabucasa-0.56.0.ebuild | 43 +++++++++++++++++++ 3 files changed, 47 insertions(+), 2 deletions(-) create mode 100644 dev-python/hass-nabucasa/hass-nabucasa-0.56.0.ebuild diff --git a/README.md b/README.md index 7c13fe5d6..b7a943200 100644 --- a/README.md +++ b/README.md @@ -538,13 +538,13 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E ## Licenses This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted. -There are 1910 Ebuilds in total, 1903 of them have in total 1915 (35 different) licenses assigned. +There are 1911 Ebuilds in total, 1904 of them have in total 1916 (35 different) licenses assigned. |License| Ebuilds using it| |-------|-----| |MIT|1150| |Apache-2.0|365| -|GPL-3|118| +|GPL-3|119| |BSD|104| |LGPL-3|29| |GPL-2|25| diff --git a/dev-python/hass-nabucasa/Manifest b/dev-python/hass-nabucasa/Manifest index 2ec6b51d1..a713b7481 100644 --- a/dev-python/hass-nabucasa/Manifest +++ b/dev-python/hass-nabucasa/Manifest @@ -1,5 +1,7 @@ DIST hass-nabucasa-0.54.1.tar.gz 36708 BLAKE2B 8263afc3b8ec660a52d7fd4c7301fa0d6d5c2fca6faa9e7a9f27f480ffdac35184923110c627d017697a420a5838031dfa909bd5e8ac7c5f83c4b997a197c0ea SHA512 6390bab82f82aa8c7faa5457679b55ea8dbd6e9b62d21438a56da4aeb79d8579834cf519d11f455f5b4803bf2899da208a87122c25efac711db3fa25d7885f30 DIST hass-nabucasa-0.55.0.tar.gz 37959 BLAKE2B 5298098d8310eda273054980dee1bc415d75725329a7446ee0ba5df7d58b33bed954f663ed49bed2fcd1922c44c9e8dba7350275e3d76a8f29cb0793dbee987a SHA512 5485f7eac80ca3d7d3d0b45f5dd0232d971c6ad7fbf62a80b37541858f73a7164f6f4640cf7633a408c427b641cf6f0eaf7d16477520fd98d2aa1cb81e12235a +DIST hass-nabucasa-0.56.0.tar.gz 37952 BLAKE2B ea3353fb5f3d715a1dcff27150cf9c81ea4822c146368545ca385df4551310d60778cc958276129052b964c6074d50471063b8879691067f21d7440c7e3b3294 SHA512 1f00600fbfa51e4fcf21a6fa967da95e8a64541520454da8d992e5703f16f7b33381e7120344b2273a2336c9e49b4b0f26870c7af3a62ff261daf35b080ae5fe EBUILD hass-nabucasa-0.54.1.ebuild 1203 BLAKE2B c0a55a5e2ee9cf228f5a287711c84e94976ec71adcf3293acb19de29b583d61faa1657e054d79f1966ed8e86a21569988bebb0b1a720ecdab740f335b0b7fb6a SHA512 5d4f0707fea84afc51bbeef75578f11cfdb856d42c489294c030e089ba18f27a2df558aab9871011fe2dd144c0623026972c564f628f55c8b0b45c47abac6466 EBUILD hass-nabucasa-0.55.0.ebuild 1203 BLAKE2B 5ab86023b113690ff0556864b30d8d6b5de0d126e1c52b6b615e4f292d858c350257ea9a7a635b186338fda54ce6ae86203dfa32fd4fcb4d0da96f13e3d5adb2 SHA512 2398be0ad0de2ea64ea1447fa7233b793653e90f84e88bc255b080753da133a29c9bac824d4c8865d6f775f8415d81d7cc5db69443bbd73c63336c7ee0dd0657 +EBUILD hass-nabucasa-0.56.0.ebuild 1203 BLAKE2B 9e4afebf0cd1c6a51840309be9ca93e1ab72a924802410af12ad3e35ff6a8b81a6b872881d793537656aa32c4ebe198f8a8beb6e511afb0d43fa397a19e26dc2 SHA512 74bd541c4932af90c74339f99e51c3ee81cb6e1355902bf972787fe6faccbe60641c5fb935ae33fe3ad75290e1e2bff136b781e5f7711889e4d714ed82e52410 MISC metadata.xml 464 BLAKE2B c6b39b5b27af5d4dccd5b3d013a16fa0c7a485352083ce564a337cb2a30b77d12c3c29469d63af33b8ff2a90c0d6be759050f5813c92d9b253e739c05e87eace SHA512 c076127e8753548a24db6b73120ab93bb7ca7ebafdf2050142b1027273ff5d332b7d7f50ea23bf9143e2c4185019faed9052cce1af8a319d6e524b89c5fe6f11 diff --git a/dev-python/hass-nabucasa/hass-nabucasa-0.56.0.ebuild b/dev-python/hass-nabucasa/hass-nabucasa-0.56.0.ebuild new file mode 100644 index 000000000..8d6d0942c --- /dev/null +++ b/dev-python/hass-nabucasa/hass-nabucasa-0.56.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) + +inherit distutils-r1 + +DESCRIPTION="Home Assistant cloud integration by Nabu Casa, Inc." +HOMEPAGE="https://www.nabucasa.com/ https://github.com/NabuCasa/hass-nabucasa/ https://pypi.org/project/hass-nabucasa/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND="~dev-python/pycognito-2022.8.0[${PYTHON_USEDEP}] + ~dev-python/snitun-0.31.0[${PYTHON_USEDEP}] + >=app-crypt/acme-1.30.0[${PYTHON_USEDEP}] + >=dev-python/cryptography-2.8[${PYTHON_USEDEP}] + >=dev-python/attrs-19.3.0[${PYTHON_USEDEP}] + >=dev-python/aiohttp-3.6.1[${PYTHON_USEDEP}] + ~dev-python/atomicwrites-homeassistant-1.4.1[${PYTHON_USEDEP}]" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-timeout[${PYTHON_USEDEP}] + dev-python/pytest-aiohttp[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +} + +distutils_enable_tests pytest From 01cb1c75b984ceb8340406a7155e0f737b14d22c Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 2 Oct 2022 11:32:37 +0200 Subject: [PATCH 13/19] bump crownstone-sse-2.0.4 --- dev-python/crownstone-sse/Manifest | 6 +++--- dev-python/crownstone-sse/crownstone-sse-2.0.3.ebuild | 4 ++-- ...wnstone-sse-2.0.2.ebuild => crownstone-sse-2.0.4.ebuild} | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) rename dev-python/crownstone-sse/{crownstone-sse-2.0.2.ebuild => crownstone-sse-2.0.4.ebuild} (88%) diff --git a/dev-python/crownstone-sse/Manifest b/dev-python/crownstone-sse/Manifest index 4c2853cc5..f8e0dfe15 100644 --- a/dev-python/crownstone-sse/Manifest +++ b/dev-python/crownstone-sse/Manifest @@ -1,5 +1,5 @@ -DIST crownstone-sse-2.0.2.tar.gz 17434 BLAKE2B 6666a69f35ba86fb9563e91a7e0891d7e6db78cea5c3881caf49e82b95c057035e3d28324f11b6b2bafa4bd2370a8d1daf61c22c1b8f4b378f23f811f411384e SHA512 7c6e09613f3e46aea4305703bc03b41428f4bee9a0a3b0e5198ddb06c809684536a1f9ec1f9550fb9a29298478e41c241e17338582289a292d771b57001592a4 DIST crownstone-sse-2.0.3.tar.gz 16652 BLAKE2B 6700d5f3e471bb3ba68ccca0323e35637408811e0b5c15ec3330555ec7c34afeb0d754e8623fd23574511ea8dfe26224692b1a86e88bfe098d83274d287a8ce6 SHA512 483b69757fbe1f8227f9bee6c40675a126c85524e6d762d548d1fc665cc99514fcc5472f8fc88041f2278b235502b7675efff1d5e479d684bf17ee3fc59504f0 -EBUILD crownstone-sse-2.0.2.ebuild 903 BLAKE2B 77e5d1e5178c52ab021e7e850000f2ee1005648c29c544cf28b1cb16551e6b7099421989ea5c7bde3479bf111e2f137c2c0349171deb828371c3b6cf633af814 SHA512 02c99d5971f2681f17f2f0464c72788bb34232cd7b70f15eab96cdd345bb606a7fd173efcee770635d15c8d4f0abbada80f69d286570b92612198948e46e949d -EBUILD crownstone-sse-2.0.3.ebuild 901 BLAKE2B 56c1dca360dccb89495a8301469ef782679dc13fc4069240b2f5392b5dc11f36e062a5c13cf03b455553745b03abc00e8a396140ed263ce973888539d4bb5c14 SHA512 04bbc150ddba55e67acff94e13787c49763f5bd8d72221640975287d1914de18fb1ac13ace1ff1996d52186716aca874bae06c5ee20a5fb1716bbc1daf959ba3 +DIST crownstone-sse-2.0.4.tar.gz 17044 BLAKE2B b8ba2c2293e5a906a2a0c9dc00672e57e1f682de42043f2972bcfcd20197e5a042e16afb601b54d01987929c634b3b8694cc9bb2bbe656aa616b7983fa6cc5e1 SHA512 0dfffaf9e0c616f9247b5e6f14d5c778e26c23b503ac18e6cfef858c79f34f3dc08e0ee6dcf51c64213e6c82e0723bc4fb316cc6152fdf159b8a874eea3fde8f +EBUILD crownstone-sse-2.0.3.ebuild 873 BLAKE2B 59ef65e089917c0a3ad6e00300fd3fd0e2636a5338ae54fdca5ffc4629f130268418464aa893086d95f2994e1ba04716687d0eafe8d7efc5213050686574eb7d SHA512 c14ead7a8ac9c7a463c1d28f71f021426aca273c5b2f54933ccff529628821c9ab22bc0d0015aced574625e3fb90802e519cde74d155ff561c71f1f01385c0e6 +EBUILD crownstone-sse-2.0.4.ebuild 873 BLAKE2B 59ef65e089917c0a3ad6e00300fd3fd0e2636a5338ae54fdca5ffc4629f130268418464aa893086d95f2994e1ba04716687d0eafe8d7efc5213050686574eb7d SHA512 c14ead7a8ac9c7a463c1d28f71f021426aca273c5b2f54933ccff529628821c9ab22bc0d0015aced574625e3fb90802e519cde74d155ff561c71f1f01385c0e6 MISC metadata.xml 333 BLAKE2B a9c58606a1d983a0960c186c52577a17cf625da2390fabe7423c2bd89eeefca0fda73e56d08dcfe21b8eebc068b6609c0f50376215872c75cf494d58fd323849 SHA512 eaecb345cecb47c2d632103e5e3040c79ccabda1631ab9017274c5278460aedd8772f7d32555c13beeab9fda1b32d3f7dcc7229c954f28cabd9b596505b00117 diff --git a/dev-python/crownstone-sse/crownstone-sse-2.0.3.ebuild b/dev-python/crownstone-sse/crownstone-sse-2.0.3.ebuild index 1490c021e..c748101d3 100644 --- a/dev-python/crownstone-sse/crownstone-sse-2.0.3.ebuild +++ b/dev-python/crownstone-sse/crownstone-sse-2.0.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..11} ) inherit distutils-r1 @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 arm arm64 x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-python/crownstone-sse/crownstone-sse-2.0.2.ebuild b/dev-python/crownstone-sse/crownstone-sse-2.0.4.ebuild similarity index 88% rename from dev-python/crownstone-sse/crownstone-sse-2.0.2.ebuild rename to dev-python/crownstone-sse/crownstone-sse-2.0.4.ebuild index 487b7463b..c748101d3 100644 --- a/dev-python/crownstone-sse/crownstone-sse-2.0.2.ebuild +++ b/dev-python/crownstone-sse/crownstone-sse-2.0.4.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" +EAPI=8 -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..11} ) inherit distutils-r1 @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 arm arm64 x86" IUSE="test" RESTRICT="!test? ( test )" From 4d1827e9f3348365a80a2b4cdd1e38474e4af58c Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 2 Oct 2022 11:34:16 +0200 Subject: [PATCH 14/19] bump aioecowitt-2022.9.3 --- dev-python/aioecowitt/Manifest | 4 ++-- ...ioecowitt-2022.8.3.ebuild => aioecowitt-2022.9.3.ebuild} | 6 ------ 2 files changed, 2 insertions(+), 8 deletions(-) rename dev-python/aioecowitt/{aioecowitt-2022.8.3.ebuild => aioecowitt-2022.9.3.ebuild} (84%) diff --git a/dev-python/aioecowitt/Manifest b/dev-python/aioecowitt/Manifest index 5a0a3b02a..a86ddcf00 100644 --- a/dev-python/aioecowitt/Manifest +++ b/dev-python/aioecowitt/Manifest @@ -1,5 +1,5 @@ -DIST aioecowitt-2022.8.3.tar.gz 15741 BLAKE2B f5959d877cd4ba3694ee9e0639690bd0d239ba8520b4de6f95677db4a220553c7507baa3387dde6d91b7c693b412ac1107d9f713e8840fbb53ed1ac95667e398 SHA512 97eaabc659f05269cfb82bdfa80b8649832a3dad57f81cf1b32dddde3ad581a7b905e4cbcb4348b7bbcf16000ececfc4e446f9028ad743cd71613f1f5987a37a DIST aioecowitt-2022.9.1.tar.gz 13575 BLAKE2B a57b2a610e6292913facad89a53c9064de963d6dff9912618ea21f35e768ec188f3a51fae6909d2ce3c68835ecb6cbb2858375047e92aea6c6527fe71a5fcd62 SHA512 a301566e8e52fedb180074f4efcef08c7b2878ee7125d5090b3a414b90222e48792b31d7d69e9d3497f3c49e330bc5c7136e4bc3384d5251ff90372fb1bf5f8e -EBUILD aioecowitt-2022.8.3.ebuild 968 BLAKE2B 8397a60a93d92571b3df9875918ebb63c91f74754528acf378424c17cdd28ce114a250cbae479b1c8154e272e8ea6873695c78a6bfe2702ea972d80b5e25ed40 SHA512 57220fb8b7adcb5824a61b4e2d5be36e73a514143fb7507dadcd43d44d1bd54fd3436e130dfe14af3dc0ce531f3326a8bc37575308281e4312a0962065dd2e25 +DIST aioecowitt-2022.9.3.tar.gz 13754 BLAKE2B e31fe017c9029859f4acf0d2e68dcf02ecd007afbe3310de9b1f42b3e8172008d08c8893e8ed666043aa8047bd18f6c5816d7fa039c92511fe4cb673b26e569a SHA512 63398c17266efbb073388ceadb931258d38ba240543bf2788f4af2c9d2ee8ce825980e4121c7b8bcd388abd93fb9d587dc26a3b63e069085fd89d9f878d2ec32 EBUILD aioecowitt-2022.9.1.ebuild 822 BLAKE2B 4ee26ab53c5c9ff5e7278e70f91be81ec4e6641699b24d2e7d397077f6549f35398253544cd9edb620190b115cecdab7f33e96bb0614d1f07889d00057342241 SHA512 92abc872ad7d5e57aee8f49a7593cda74b1e2d1a187ca8161ba2471f8f52b814e47b3f773c6953e5db1ceed8ae0c796ac7cc6f88c91c7618053834eada08f309 +EBUILD aioecowitt-2022.9.3.ebuild 822 BLAKE2B 4ee26ab53c5c9ff5e7278e70f91be81ec4e6641699b24d2e7d397077f6549f35398253544cd9edb620190b115cecdab7f33e96bb0614d1f07889d00057342241 SHA512 92abc872ad7d5e57aee8f49a7593cda74b1e2d1a187ca8161ba2471f8f52b814e47b3f773c6953e5db1ceed8ae0c796ac7cc6f88c91c7618053834eada08f309 MISC metadata.xml 465 BLAKE2B 568aa7dc844725edde876ea3678f47fdb3a407b8a4b3632e6136f0945437e49182eaa6b34e5c70239efc1c83e6338e27ce5ce81409cc079ce3f3f85d1be08de2 SHA512 356d53c50aa8f6a46a22b187d5018b14884b3f8c7cad52388f29dc1a9414b9817920b1518951cb125f48e01e97cb8ea4ae0520402114c5eebb1eb0adc23c299f diff --git a/dev-python/aioecowitt/aioecowitt-2022.8.3.ebuild b/dev-python/aioecowitt/aioecowitt-2022.9.3.ebuild similarity index 84% rename from dev-python/aioecowitt/aioecowitt-2022.8.3.ebuild rename to dev-python/aioecowitt/aioecowitt-2022.9.3.ebuild index 34678066d..58ae66ac7 100644 --- a/dev-python/aioecowitt/aioecowitt-2022.8.3.ebuild +++ b/dev-python/aioecowitt/aioecowitt-2022.9.3.ebuild @@ -33,10 +33,4 @@ python_test() { py.test -v -v || die } -src_prepare() { - # fix typo https://github.com/home-assistant-libs/aioecowitt/pull/10 - sed -i "s/test/tests/g" -i setup.py || die - eapply_user -} - distutils_enable_tests pytest From 4ea25c3db9868db1fd904882ad836326dcabda3a Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 2 Oct 2022 11:36:32 +0200 Subject: [PATCH 15/19] update aioesphomeapi-11.0.0 --- README.md | 4 +- dev-python/aioesphomeapi/Manifest | 2 + .../aioesphomeapi/aioesphomeapi-11.0.0.ebuild | 40 +++++++++++++++++++ 3 files changed, 44 insertions(+), 2 deletions(-) create mode 100644 dev-python/aioesphomeapi/aioesphomeapi-11.0.0.ebuild diff --git a/README.md b/README.md index b7a943200..284493ead 100644 --- a/README.md +++ b/README.md @@ -538,11 +538,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E ## Licenses This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted. -There are 1911 Ebuilds in total, 1904 of them have in total 1916 (35 different) licenses assigned. +There are 1912 Ebuilds in total, 1905 of them have in total 1917 (35 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1150| +|MIT|1151| |Apache-2.0|365| |GPL-3|119| |BSD|104| diff --git a/dev-python/aioesphomeapi/Manifest b/dev-python/aioesphomeapi/Manifest index 1871a2fb9..00635952c 100644 --- a/dev-python/aioesphomeapi/Manifest +++ b/dev-python/aioesphomeapi/Manifest @@ -1,7 +1,9 @@ DIST aioesphomeapi-10.10.0.tar.gz 48866 BLAKE2B 886434857b0a478d263581c4c2a6ec43ca0f5ce3a6bb6d479b397bb10c750726904890936ff31a9ebe715b8a67aca5ac5b732c049cb726e10b24cad36f74b990 SHA512 1699adc843c8b8196bd206fd207e04bc06aac051bf8a5cc7586cf2312a7bde3ab287d40ba7fac267ba8b62628befa25d5a08a9d9553992cdf04c19ddf9b89cc9 DIST aioesphomeapi-10.11.0.tar.gz 48863 BLAKE2B b7a6214436026904d21fabe6813917beecfb18d11ee600cbb8361cc54ec708bcfcad9d56a630290b13e7328fdf66382aa72541c589a1b160a811630a4afaf19a SHA512 e7cf81f31d498119cff8d69bab59c63a26f55f3292d7f1c913c8b4077f603a77dd0d0c1d0d75bcc65a9fe3b58e72dedfafded72090bf5cf0d801b97bfb99deea DIST aioesphomeapi-10.13.0.tar.gz 49999 BLAKE2B d9f0bd9fe7e53ffd7ecd3e95da54c3863fad3b584fe6236c0dc35b0737cc929124f281ccaf1feda4de77afe5dc045bb5cbc242e84d9ff0d0ed7528d12de54e54 SHA512 379cd58997669e5c1ecb919cf1c92ede61be40fc5c348a2d33f0d2602445ed7dc1ac9d7101a157285522b80bfa3c87614acb0ecd9f9be7129f2037cc35fcb9b1 +DIST aioesphomeapi-11.0.0.tar.gz 54740 BLAKE2B bb6faff47841a961e51b389e281b2c9ff0ca3f3399b54d88f743b6866e03e42a1b295ed3a33a973d69694102754781d73e437d1dbb870773bfb889c78944806e SHA512 3e2e9bb36738aa5daee67552eb209788c4c2fa7665e26269adc4666226eeea1cb5d50c6a559eb5f9164932a867672cc3d21e10f719d8397bb94b0f612ce0a818 EBUILD aioesphomeapi-10.10.0.ebuild 996 BLAKE2B 42e555d03c568d5a9364775c434b615cf0057b110f08d3b82205de311046f6236c128aff7e4dffdcc979877684731d4222be0642fbafa029d650d0daf0e35ab8 SHA512 98759ce5f0bebb4ba37cd9e60d75c76a44927312d6f402107f291893bd5e9de0c5001f7cd393d160a085ff66824805687980835b06d06a01466bea01d51bf67f EBUILD aioesphomeapi-10.11.0.ebuild 996 BLAKE2B 42e555d03c568d5a9364775c434b615cf0057b110f08d3b82205de311046f6236c128aff7e4dffdcc979877684731d4222be0642fbafa029d650d0daf0e35ab8 SHA512 98759ce5f0bebb4ba37cd9e60d75c76a44927312d6f402107f291893bd5e9de0c5001f7cd393d160a085ff66824805687980835b06d06a01466bea01d51bf67f EBUILD aioesphomeapi-10.13.0.ebuild 996 BLAKE2B 42e555d03c568d5a9364775c434b615cf0057b110f08d3b82205de311046f6236c128aff7e4dffdcc979877684731d4222be0642fbafa029d650d0daf0e35ab8 SHA512 98759ce5f0bebb4ba37cd9e60d75c76a44927312d6f402107f291893bd5e9de0c5001f7cd393d160a085ff66824805687980835b06d06a01466bea01d51bf67f +EBUILD aioesphomeapi-11.0.0.ebuild 1046 BLAKE2B 736ce9c932ca1b945eb9f0ea449db6a98b0de120a7f7d8bc55a8217a0e74b0e4e884fad7144ad4547a51cadb1a8cde4dda7b142a3d1946d3133d41f1be454cae SHA512 2b7ddba1e0b91c4645cade83690c0d7e1c2fba6b3949dbf7a013982318bed8e1f59266b10f5cf2998908397a63cff9dc4d316d2135124c1b843eaeb9eb295422 MISC metadata.xml 457 BLAKE2B e6eb5bead5a46792167601a1c1b34399c75bbb20fb789bcf1d7974d52ce91c68d6b50213e899a51fc1193e6e4f6bed9d197debb6355baef1f06cc2f822fc071d SHA512 ac9de0a3e936d7b2baa3c2f57747492ead558d6068213d4728bd61642ac1e3884c5d19c817af1250e6b5e110b99e31435b1556381e8a8dc44f33c04faee4718d diff --git a/dev-python/aioesphomeapi/aioesphomeapi-11.0.0.ebuild b/dev-python/aioesphomeapi/aioesphomeapi-11.0.0.ebuild new file mode 100644 index 000000000..1fd8aa34d --- /dev/null +++ b/dev-python/aioesphomeapi/aioesphomeapi-11.0.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) + +inherit distutils-r1 + +DESCRIPTION="Python API for interacting with ESPHome devices." +HOMEPAGE="https://github.com/esphome/aioesphomeapi https://esphome.io/ https://pypi.org/project/aioesphomeapi/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.rst" + +RDEPEND=">=dev-python/protobuf-python-3.12.2[${PYTHON_USEDEP}] + >=dev-python/zeroconf-0.36.0[${PYTHON_USEDEP}] + >=dev-python/noiseprotocol-0.3.1[${PYTHON_USEDEP}] + >=dev-python/async-timeout-4.0[${PYTHON_USEDEP}]" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + dev-python/pylint[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +} + +distutils_enable_tests pytest From 1d7e59a21827cb6cbc81ccbd0e8525d41cfc64ab Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 2 Oct 2022 11:38:09 +0200 Subject: [PATCH 16/19] bump pyfritzhome-0.6.7 --- README.md | 4 +-- dev-python/pyfritzhome/Manifest | 2 ++ .../pyfritzhome/pyfritzhome-0.6.7.ebuild | 33 +++++++++++++++++++ 3 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 dev-python/pyfritzhome/pyfritzhome-0.6.7.ebuild diff --git a/README.md b/README.md index 284493ead..96af655ee 100644 --- a/README.md +++ b/README.md @@ -538,11 +538,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E ## Licenses This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted. -There are 1912 Ebuilds in total, 1905 of them have in total 1917 (35 different) licenses assigned. +There are 1913 Ebuilds in total, 1906 of them have in total 1918 (35 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1151| +|MIT|1152| |Apache-2.0|365| |GPL-3|119| |BSD|104| diff --git a/dev-python/pyfritzhome/Manifest b/dev-python/pyfritzhome/Manifest index 87ca8860f..51af36c57 100644 --- a/dev-python/pyfritzhome/Manifest +++ b/dev-python/pyfritzhome/Manifest @@ -1,5 +1,7 @@ DIST pyfritzhome-0.6.4.tar.gz 13402 BLAKE2B 02c52eade04b896ff4ff90653f470c67b499f4ce67df7509654da69a2a5197f532221e11c53a9a637919a292971048411d3d483c9c17cfa44e3a706124d3ef3b SHA512 841df8d3adb642b1470310fd12c3640c7070e418fa9bcf3af69f7b3b657bf067d282f04b4785a7153da29148a037cd494e9a91e9d5913e00b198d1f974ff45aa DIST pyfritzhome-0.6.5.tar.gz 14450 BLAKE2B 405f2dec300f3d86f9ad2ad87d0ac3e6f165d0a41acd94153c0a76eea20d3a6a4d8129a49e0dbb3f8918c156254a3232a36eb38aee0378f322aa1400d7c342a1 SHA512 70a831db9fa4b60b8b0d6df7a697aa2bb85194bf27a716126db2e91229333c6867975a12249ef3bc8997a91cfa9b0e131f7730ddc2a46505f33d915c2ca7807e +DIST pyfritzhome-0.6.7.tar.gz 14492 BLAKE2B e54585455ee594d1effeee8ffa09b9f7fa3fb8ca253c3891710bd15919d0055ff5477d6da025147a1acea41b93da39fb4f7310042d8c6929b7967e7439480215 SHA512 e4cd85302bb02ef1a5f2f1bc9a303439e5b1214868ebd9ae4659b1fb0c202851911fc53f63693a584d4a26e96209797d55c2200754e06d2a88c6ea85129d9ab5 EBUILD pyfritzhome-0.6.4.ebuild 732 BLAKE2B 987c02b8bbf438ab2b259d63b061bcbf131cf7e8479a364b33c7bad604e9a455ea62fbf27c5bf5b8f426fd28de4d14a6e13f6447f8fe1b25380fc0eab314d709 SHA512 ab310ccd28408633b6d4478aae006a0c8d1760c1d7a019737a27310fffe12d4be077af17261c93048e8eef7b77fa9f62bcb4d1908141c68a5052b414216a2c44 EBUILD pyfritzhome-0.6.5.ebuild 732 BLAKE2B 987c02b8bbf438ab2b259d63b061bcbf131cf7e8479a364b33c7bad604e9a455ea62fbf27c5bf5b8f426fd28de4d14a6e13f6447f8fe1b25380fc0eab314d709 SHA512 ab310ccd28408633b6d4478aae006a0c8d1760c1d7a019737a27310fffe12d4be077af17261c93048e8eef7b77fa9f62bcb4d1908141c68a5052b414216a2c44 +EBUILD pyfritzhome-0.6.7.ebuild 732 BLAKE2B 987c02b8bbf438ab2b259d63b061bcbf131cf7e8479a364b33c7bad604e9a455ea62fbf27c5bf5b8f426fd28de4d14a6e13f6447f8fe1b25380fc0eab314d709 SHA512 ab310ccd28408633b6d4478aae006a0c8d1760c1d7a019737a27310fffe12d4be077af17261c93048e8eef7b77fa9f62bcb4d1908141c68a5052b414216a2c44 MISC metadata.xml 458 BLAKE2B f3062ecc7c68f3989d4ba7b61d962c7e8f4580ab4546b6f7abc2c2e9daef0dff5ed5e62770fb4597d4da86efa2615db6c8d57334483893ec5e4f6b9200d3bf65 SHA512 ffebce99c0b74c397f81692d165e822f35ca6cffa3406afce26a9684da70c7e957e3e7fd710742ad0e808aabd7490776ab4edcdbe2f68f5388f5a6e4247f1d9b diff --git a/dev-python/pyfritzhome/pyfritzhome-0.6.7.ebuild b/dev-python/pyfritzhome/pyfritzhome-0.6.7.ebuild new file mode 100644 index 000000000..01b14d378 --- /dev/null +++ b/dev-python/pyfritzhome/pyfritzhome-0.6.7.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) + +inherit distutils-r1 + +DESCRIPTION="Fritz!Box Smarthome Python Library" +HOMEPAGE="https://github.com/hthiery/python-fritzhome https://pypi.org/project/pyfritzhome/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.rst" + +RDEPEND="dev-python/requests[${PYTHON_USEDEP}]" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +} From 0488b4a2b30135723819866585ccd315153bc1cb Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 2 Oct 2022 11:40:20 +0200 Subject: [PATCH 17/19] bump awesomeversion-22.9.0 --- README.md | 6 +-- dev-python/awesomeversion/Manifest | 2 + .../awesomeversion-22.9.0.ebuild | 37 +++++++++++++++++++ 3 files changed, 42 insertions(+), 3 deletions(-) create mode 100644 dev-python/awesomeversion/awesomeversion-22.9.0.ebuild diff --git a/README.md b/README.md index 96af655ee..3ce5a3d3f 100644 --- a/README.md +++ b/README.md @@ -538,12 +538,12 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E ## Licenses This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted. -There are 1913 Ebuilds in total, 1906 of them have in total 1918 (35 different) licenses assigned. +There are 1915 Ebuilds in total, 1908 of them have in total 1920 (35 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1152| -|Apache-2.0|365| +|MIT|1153| +|Apache-2.0|366| |GPL-3|119| |BSD|104| |LGPL-3|29| diff --git a/dev-python/awesomeversion/Manifest b/dev-python/awesomeversion/Manifest index 3d90e5e75..3ac5793b5 100644 --- a/dev-python/awesomeversion/Manifest +++ b/dev-python/awesomeversion/Manifest @@ -1,5 +1,7 @@ DIST awesomeversion-22.6.0.tar.gz 9392 BLAKE2B 210eb1bf63d1558d9e6f3ade396c5fe7b4bf8d94019cacf2e1d9da1778011560fc331f96d83ab26d3bf9d3467171b05736a5b695200eb8bd4972c308ef81c77d SHA512 5725e76e03a1f1255e8d3c762787eada47b83a22621d67c6bc99dc10af83a58c3cc5329ce68d1d93f4edb51ecf0d096bfd92d3fde99df28a5f4480380c96e358 DIST awesomeversion-22.8.0.tar.gz 9601 BLAKE2B d26e0eb847aea755db40c80ae28b93b0823234d2caf2d2517e8dc94c1097a1354539f3ba42967f18997856fbef91a2c6519687056beeef903eec11d410e2bb8a SHA512 a6d90650caa980c6a54c370d86155cea89be911da207a6d82dd327962c7fd5b65a1ea4b0db54660618db081e9640cb950a0cf189f16c5cf3b631d96d6d85097e +DIST awesomeversion-22.9.0.tar.gz 10016 BLAKE2B 29100daf5ab4958e1f27beafd45bacb0b72fd4207049abf720b6a6e1370ade991c41b6d40918ee9c8afc771e0b8179b247d69479905a032bcefda6fea877883f SHA512 07ba021beea71afb575b472ae8f7f71e0f426dc2a3dfd7a81dc19a3d9532be2a025963f9e457e56203f44a7b94349502a5fea9e248aad404928432c225094204 EBUILD awesomeversion-22.6.0.ebuild 903 BLAKE2B ca51cb2a273dfc9541ae3b5309e46eb207cba0dba898c3fb11bd3d6ad9172378d2f9ecb822c1bbd2b0e01f9c326f35fb2e659a6bc1dc32ce84e238787dd580a1 SHA512 a5610dace92c556e1d720735890fc53fde3eecfbba1e87ac3f46dbdab72daa903f9e0865e6cdffd759563355a4b87ba7a1341c76c90e5aeae7ade6ab04924abe EBUILD awesomeversion-22.8.0.ebuild 903 BLAKE2B ca51cb2a273dfc9541ae3b5309e46eb207cba0dba898c3fb11bd3d6ad9172378d2f9ecb822c1bbd2b0e01f9c326f35fb2e659a6bc1dc32ce84e238787dd580a1 SHA512 a5610dace92c556e1d720735890fc53fde3eecfbba1e87ac3f46dbdab72daa903f9e0865e6cdffd759563355a4b87ba7a1341c76c90e5aeae7ade6ab04924abe +EBUILD awesomeversion-22.9.0.ebuild 903 BLAKE2B ca51cb2a273dfc9541ae3b5309e46eb207cba0dba898c3fb11bd3d6ad9172378d2f9ecb822c1bbd2b0e01f9c326f35fb2e659a6bc1dc32ce84e238787dd580a1 SHA512 a5610dace92c556e1d720735890fc53fde3eecfbba1e87ac3f46dbdab72daa903f9e0865e6cdffd759563355a4b87ba7a1341c76c90e5aeae7ade6ab04924abe MISC metadata.xml 453 BLAKE2B d96a40378a1c8c1cec8f4097ca07d283618e22a7981b8e869937b59e77d3953e64f505b4d8f60b79ac62e19d109ca2ae42b072b5f875b1b09b3ad147d787b220 SHA512 b618432337bc9957fe60147aa18a14f96d91de742f358cf69c74547a03a013ac5f48c760b5ef03e08df9715015a46aacbb2946f54e7f88e60a4d39684907c657 diff --git a/dev-python/awesomeversion/awesomeversion-22.9.0.ebuild b/dev-python/awesomeversion/awesomeversion-22.9.0.ebuild new file mode 100644 index 000000000..5783ce054 --- /dev/null +++ b/dev-python/awesomeversion/awesomeversion-22.9.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) +DISTUTILS_USE_PEP517=poetry + +inherit distutils-r1 + +DESCRIPTION="One version package to rule them all, One version package to find them, One version package to bring them all, and in the darkness bind them." +HOMEPAGE="https://github.com/ludeeus/awesomeversion https://pypi.org/project/awesomeversion/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND="" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-cov[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +} + +distutils_enable_tests pytest From 6cd898cec9c26a64de97a135932596383daeddfd Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 2 Oct 2022 11:43:35 +0200 Subject: [PATCH 18/19] bump home-assistant-frontend-20220929.0 --- README.md | 4 +-- dev-python/home-assistant-frontend/Manifest | 6 ++-- .../home-assistant-frontend-20220907.1.ebuild | 32 ------------------- ...home-assistant-frontend-20220929.0.ebuild} | 0 4 files changed, 4 insertions(+), 38 deletions(-) delete mode 100644 dev-python/home-assistant-frontend/home-assistant-frontend-20220907.1.ebuild rename dev-python/home-assistant-frontend/{home-assistant-frontend-20220907.0.ebuild => home-assistant-frontend-20220929.0.ebuild} (100%) diff --git a/README.md b/README.md index 3ce5a3d3f..d501aa248 100644 --- a/README.md +++ b/README.md @@ -538,12 +538,12 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E ## Licenses This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted. -There are 1915 Ebuilds in total, 1908 of them have in total 1920 (35 different) licenses assigned. +There are 1914 Ebuilds in total, 1907 of them have in total 1919 (35 different) licenses assigned. |License| Ebuilds using it| |-------|-----| |MIT|1153| -|Apache-2.0|366| +|Apache-2.0|365| |GPL-3|119| |BSD|104| |LGPL-3|29| diff --git a/dev-python/home-assistant-frontend/Manifest b/dev-python/home-assistant-frontend/Manifest index f859aca01..6fcb44b7d 100644 --- a/dev-python/home-assistant-frontend/Manifest +++ b/dev-python/home-assistant-frontend/Manifest @@ -1,11 +1,9 @@ DIST home-assistant-frontend-20220707.1.tar.xz 23005860 BLAKE2B 1d158cee11ad1d0f475d1ec43b16f9d58e960e9f04230554323f248ab3f2aa43caaf208d550b0ca0564d04a6d696be4b31182f36fa43e860054665f6239ea901 SHA512 cd8d2c428608aa88836eb8a1517c1a1a83c39a3b5d917abcc7baeae582ff441ffdfd7c5fc6e1814f88595239852d05f747b68ac87d522f505757eb589df8fcd8 DIST home-assistant-frontend-20220802.0.tar.xz 23266160 BLAKE2B 33258e71dd47c5b1dcf30c38077ed497cd513275c120c1c500a8143ad938842edbdcd3a3d89bd6cf2c7120af8584286e1c552215e6435a4fcc48cec21d045dfd SHA512 504c246beadb0a18e327e705099f8294fcb4f9d7ea051b7a4aecb21e1d9635dc009415a1aea0397d35faa39c84193d59539fbf8fcbb5ac050361945182031b0a -DIST home-assistant-frontend-20220907.0.tar.xz 23416844 BLAKE2B 61db21f2440b723e2b5afd0f042b18dd83fede6910a0c92ed793f8e03b11f0895c56038e19a128dc93ab9f92d4812b74313f4a10f6cfda96aa922c0c14e45e2f SHA512 08121e8b81ad4f2e09b7c2e5d5546ae76e03285ba2403726891f3ce14f25c84b64f13b6b80bc86b819560d3631a240aad799ba7f6fde8ae9c6317371b1e7b6ec -DIST home-assistant-frontend-20220907.1.tar.xz 23439832 BLAKE2B 9566554769100a5539731ee4a809b90d052d47fad37a810662138f6b717862935e911b354dc19ac103961800a10d55e0781a2afd82d78411084c7e28b85ad241 SHA512 acb74405feaea7dd2d364dc84f763739eb5c12981f91fc2386169f9bd701e11bfffa697f7e454bce1ec78151328f15021afd4d9b3d5439e45340a48fdcff7dac DIST home-assistant-frontend-20220907.2.tar.xz 23391612 BLAKE2B b12be2f51b4246e341f6f9e174c863385375b659e0cc886624e629cecec337713004adbe45867e053bdf446acff17b32fd908ecf49fb5b236085359244d123e4 SHA512 497fee53d5f1de531f27ab231010b361fc5822db1fc11be01b3cc452eb4b01322e4eff7704386ba1b04439ca19d3cc31482189f20064361696048c8a457417be +DIST home-assistant-frontend-20220929.0.tar.xz 23679864 BLAKE2B 80777cb00ffbccb0a463be8ee354d06d01ec72d08fedbe1b272cf52b245806d141feeaefc460b11ccae07827f7a454f696467d98ec5898bba770d41cc88adeaf SHA512 9d51aa64b36cefc2d31540effe8b1e873fbbd7a93767fb6f4fb39777fce21d56e020b5a757a06eb8b020a4fd0e762bcf9b41a2fab5ae391227fb75fda4f2e66c EBUILD home-assistant-frontend-20220707.1.ebuild 774 BLAKE2B d5231497bc87f3c77474b16fcf4814ae6b3d285ff7c652408e281617ab6e15c20ed1c97c26f8e8151282d94794b5f67bbd378551f03b88f3b70131a38888c2b7 SHA512 583d972758e831b429c2af2d8747d5acc35277a749b2728fdf2f224907b5be55af64e869dc1106f6d937d37c8df8bf4dfae54b6825a312f52f780192f1b15fef EBUILD home-assistant-frontend-20220802.0.ebuild 774 BLAKE2B d5231497bc87f3c77474b16fcf4814ae6b3d285ff7c652408e281617ab6e15c20ed1c97c26f8e8151282d94794b5f67bbd378551f03b88f3b70131a38888c2b7 SHA512 583d972758e831b429c2af2d8747d5acc35277a749b2728fdf2f224907b5be55af64e869dc1106f6d937d37c8df8bf4dfae54b6825a312f52f780192f1b15fef -EBUILD home-assistant-frontend-20220907.0.ebuild 774 BLAKE2B d5231497bc87f3c77474b16fcf4814ae6b3d285ff7c652408e281617ab6e15c20ed1c97c26f8e8151282d94794b5f67bbd378551f03b88f3b70131a38888c2b7 SHA512 583d972758e831b429c2af2d8747d5acc35277a749b2728fdf2f224907b5be55af64e869dc1106f6d937d37c8df8bf4dfae54b6825a312f52f780192f1b15fef -EBUILD home-assistant-frontend-20220907.1.ebuild 774 BLAKE2B d5231497bc87f3c77474b16fcf4814ae6b3d285ff7c652408e281617ab6e15c20ed1c97c26f8e8151282d94794b5f67bbd378551f03b88f3b70131a38888c2b7 SHA512 583d972758e831b429c2af2d8747d5acc35277a749b2728fdf2f224907b5be55af64e869dc1106f6d937d37c8df8bf4dfae54b6825a312f52f780192f1b15fef EBUILD home-assistant-frontend-20220907.2.ebuild 774 BLAKE2B d5231497bc87f3c77474b16fcf4814ae6b3d285ff7c652408e281617ab6e15c20ed1c97c26f8e8151282d94794b5f67bbd378551f03b88f3b70131a38888c2b7 SHA512 583d972758e831b429c2af2d8747d5acc35277a749b2728fdf2f224907b5be55af64e869dc1106f6d937d37c8df8bf4dfae54b6825a312f52f780192f1b15fef +EBUILD home-assistant-frontend-20220929.0.ebuild 774 BLAKE2B d5231497bc87f3c77474b16fcf4814ae6b3d285ff7c652408e281617ab6e15c20ed1c97c26f8e8151282d94794b5f67bbd378551f03b88f3b70131a38888c2b7 SHA512 583d972758e831b429c2af2d8747d5acc35277a749b2728fdf2f224907b5be55af64e869dc1106f6d937d37c8df8bf4dfae54b6825a312f52f780192f1b15fef MISC metadata.xml 485 BLAKE2B db31a294d5ca2f4824e6ab06aaf266b0182e1c9b49d5aeafd299fd408fc5a96d0db3ac4d72732291b0c7f74480dab6cd4febcbeced136372db499d67eb46edac SHA512 c5a5ddd828915cd14975e480b2c6c9aa599aeb32ee6d7bfef4995450fa8b6d4cdc4b281c34c4cc34d4b15f8443c1d780bf72b5f5443edbcd50054fa434f367e5 diff --git a/dev-python/home-assistant-frontend/home-assistant-frontend-20220907.1.ebuild b/dev-python/home-assistant-frontend/home-assistant-frontend-20220907.1.ebuild deleted file mode 100644 index aaf182ce1..000000000 --- a/dev-python/home-assistant-frontend/home-assistant-frontend-20220907.1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..11} ) -DISTUTILS_USE_PEP517=setuptools - -inherit distutils-r1 - -DESCRIPTION="The Home Assistant frontend" -HOMEPAGE="https://github.com/home-assistant/frontend https://pypi.org/project/home-assistant-frontend/" -SRC_URI="https://hasf.edevau.net/${P:0:1}/${PN}/${P}.tar.xz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 arm arm64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="~dev-python/user-agents-2.0[${PYTHON_USEDEP}]" -BDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/nose[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - )" - -python_test() { - nosetests --verbose || die - py.test -v -v || die -} diff --git a/dev-python/home-assistant-frontend/home-assistant-frontend-20220907.0.ebuild b/dev-python/home-assistant-frontend/home-assistant-frontend-20220929.0.ebuild similarity index 100% rename from dev-python/home-assistant-frontend/home-assistant-frontend-20220907.0.ebuild rename to dev-python/home-assistant-frontend/home-assistant-frontend-20220929.0.ebuild From 5a24a7c8a55a427361da3a6b22f0274ef0ae6a7a Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 2 Oct 2022 11:49:02 +0200 Subject: [PATCH 19/19] update homeassistant-2022.10.0_beta3 --- README.md | 4 +- app-misc/homeassistant-full/Manifest | 4 +- .../homeassistant-full-2022.10.0_beta3.ebuild | 1075 +++++++++++++++++ .../homeassistant-full-9999.ebuild | 55 +- app-misc/homeassistant-min/Manifest | 2 + .../homeassistant-min-2022.10.0_beta3.ebuild | 297 +++++ app-misc/homeassistant/Manifest | 2 + .../homeassistant-2022.10.0_beta3.ebuild | 491 ++++++++ requirements_all.txt | 44 +- 9 files changed, 1920 insertions(+), 54 deletions(-) create mode 100644 app-misc/homeassistant-full/homeassistant-full-2022.10.0_beta3.ebuild create mode 100644 app-misc/homeassistant-min/homeassistant-min-2022.10.0_beta3.ebuild create mode 100644 app-misc/homeassistant/homeassistant-2022.10.0_beta3.ebuild diff --git a/README.md b/README.md index d501aa248..5423772e8 100644 --- a/README.md +++ b/README.md @@ -538,12 +538,12 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E ## Licenses This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted. -There are 1914 Ebuilds in total, 1907 of them have in total 1919 (35 different) licenses assigned. +There are 1916 Ebuilds in total, 1909 of them have in total 1921 (35 different) licenses assigned. |License| Ebuilds using it| |-------|-----| |MIT|1153| -|Apache-2.0|365| +|Apache-2.0|367| |GPL-3|119| |BSD|104| |LGPL-3|29| diff --git a/app-misc/homeassistant-full/Manifest b/app-misc/homeassistant-full/Manifest index 8a33f61e6..6bf375448 100644 --- a/app-misc/homeassistant-full/Manifest +++ b/app-misc/homeassistant-full/Manifest @@ -8,15 +8,17 @@ AUX maxcube_TypeError_dirty_hack.patch 1460 BLAKE2B 08570971bb3ce4c120086a32ec20 AUX recorder.yaml 114 BLAKE2B af04840805aa13124208584e7f1d40335905a083ee7deead5c0e4324c969f2a231c801c23e42075782950aba7535496d92747bf03efd73a80b0d07e8492d18f6 SHA512 cb4e353e54fb6dc7034569b8d62ddcdca92680c23c2c4e1ce707d21cf95e93f41a0c44521d8c3ee90b68c830f6b8e65dab82ae64bfa09727ae384550f7de0c94 AUX socat-zwave.init.d 637 BLAKE2B d61c1024a6fe3ce8d322e62ac1ec15e00d08f5c5a63feabc8603ecc51ec16e0a4775e0c7da83d12d1ef0c9815c9ebf8ec8a86a678bb4a3b40decb04adc887f26 SHA512 2b13cd4175427853d5a4169cc7d441d62618e8136e4f5d9fd24d08a47f6916953ebd1e747ea9c7a0907b00766c7b2108ba3b8917178fd9a795da23e6525a0faf AUX update-homeassistant 1326 BLAKE2B 917bdd332c4e5dea5177eecd11a7f8d72b911fddfdc8e5eb54960c526fe8c735e20d44e570cf7aeb99669d2a9670c70da1c5fbc30efb284d1f0f330799de6e24 SHA512 3c05f0d6d1bde0e1526c3e679568794c07091e7856dfd8793e13feec6f22725ddaa3163ca2c81d9df86cf73573f932e561743f05de420b350a0b68f6a9582aca +DIST homeassistant-2022.10.0b3.tar.gz 16782727 BLAKE2B 7d2e2fa63dd3606ce2cb5a287fb1e07a83205184c7f3661cb76dd9c52c7ebfc17799ee431a24d9fb6ee56f17b2c357c01129e1e39bc2fbc905fe4699ffcd6d81 SHA512 c4840ba45ec59f9ea1a2568b2f0183670945efe6363913f773ec5e6f558da004d57e5e12da93d18cd8aaa46f66145c85bc05d914680e65db0aefefb19e48c0a1 DIST homeassistant-2022.7.7.tar.gz 15751383 BLAKE2B 6e5d38086f08a86b025163c3e66a20ab935dc527529ba5352cf56aaeb23806c904a89db355a0d54648859828f722c2dc747282fb94aaf55889382bb885ad672e SHA512 aa181f39718d970de9ff88c79bf86cb60e95d11eda012553cc6bc1654eed7675d1a89a568a11bd53110be46cad89a647ce74d66e109fac87bfcda5363dbcbd21 DIST homeassistant-2022.8.7.tar.gz 15994709 BLAKE2B fc6d5d7ed831c012e99d49516c20afa0a03311131620740436421b0dfab45820cebf113810c2472357f4637040dea9b96c3a2a1c82ebc3136ece015f87b7d8ce SHA512 009cb81106996f8457c08c76a89b61689b8554ed0453715e6ea2ceee6f4bf4822f82ec2dc2aa3bd7793dd0b2462424557cf2d4a09565f6f089654cae6dce39d9 DIST homeassistant-2022.9.5.tar.gz 16482177 BLAKE2B ec8f617b7b95abea9e1952077257f73c7fea49937bcc3b6e92cd41a3043a89facd95a8a4aa0d28d174abe1addd09e0cc9ca4059aa4dfff64f7dd66ce4bdfeca2 SHA512 ac67480ba747c3873c567ae2fa1f89cd8cf7575923440f515414ec1112c48d00016fa6fa778354a3a570ecc6ca6477dd886ebf9405430d404c7a120e456dad81 DIST homeassistant-2022.9.6.tar.gz 16488692 BLAKE2B df289cc4ec3c12a58d874e16982be77d1739a7af73ba6037c56b815d43613c1c6cba499422eb533b69c0e27840a4ed2f815b76faf8b49cd560c32c37ea36d073 SHA512 310604d97fbfbd17c5fb8d92ede400a9fddb660e2ea9696a533e9278e56d42f09c08f8977f20ec3bb2efa11e2f483e67b5afb60a1d6880f45f2d8b31287320b9 DIST homeassistant-2022.9.7.tar.gz 16485744 BLAKE2B 04497b7b388e99020bb09b15a53db23b9f073ad27cf18fb1fb0d3d3426dab9a9d4d7e1fefea8bc9e0493022f2911a7f48244f9ccbeb62eb6c81856fbc12a691d SHA512 6569931c0506241e78bd2b997fbe4357075acddee2abd472f6262a372e787305feb6fa3300fd034d8624321a42f7fa43a03175033015861e8f04a384713d34ee +EBUILD homeassistant-full-2022.10.0_beta3.ebuild 75432 BLAKE2B b11bd03cd264f7c2168a569afa7a9d8e900862e0ffe341f0292b7abdc97d4ca10e6bc1d5dc0c05c9824061c18597f5555a2d7e806bb519794c545b230836f495 SHA512 169d4a1594999b92483bad9dedf7ce7aa8c90aad5175c4d2d4e559f919c298f7285e008cb49be6da6fc0a0cc282c9839269ffa4448e43da770be2b604c09ca25 EBUILD homeassistant-full-2022.7.7-r1.ebuild 73137 BLAKE2B 9e6733c60dcb30f2435786cd37712df811df9bf9a89cfbae30533fdbb555bc6b530d48b66c38027be0450f7ef83c2e2d5f025a3bd0d7262c7d961c75b41b6f26 SHA512 52ac9c29d8591e053ea13f2f31f8165b35e3b2067aa82c8de5f2b2c099d91325a014cb786422d3b8f4a7569b81dfe1d02d5a7e6233737336cf58d0d21ae6efaa EBUILD homeassistant-full-2022.8.7-r1.ebuild 73747 BLAKE2B 560cadf97e9cc23ef7f4e95e72a2af84324aee1aecc027252aa4541d39b076de5deee5f04f08dc34c966caed310b46fde2149c91564962587ad8d8f80ea52b3d SHA512 e05f4f20311ef65d510061c817e7d238304eec7d680d212cbd1b2a46eb9c82c60ff0cbc377503f0f580fac8a496f716b25f21444b52bcde07b382131d42735e3 EBUILD homeassistant-full-2022.9.5.ebuild 75424 BLAKE2B 6600bf8bad92523455336d156effca6f68ce6bb52db910fa496a192d3bd016b6b2e1c20ae7b620552e0cbd254a923d3dcbe8e3aae053953c2bd0e798536d05df SHA512 8ffe289ff322dec7dbe92d63a87643245d2f1b170fd9b6b7c0575f7c5522cffa913a3ea3437b17d9a0a64a17c98d172b3fa5b950883f16353604005bd8732e40 EBUILD homeassistant-full-2022.9.6.ebuild 75426 BLAKE2B ade1517c877f33a01825386b274dba03373bfb73975843d513d8019433460e8c9d783b31f6b528857f3168cf732dc1a189964351270ad830e7e82f9881df3703 SHA512 51246777c756903afbe3f65bcf55a936e23796468d638957cffa7ae53e3f9f9f0540fe268ff967dc536f63136ca9bdcf3e97a515a0c933aa1e44be0b3300716e EBUILD homeassistant-full-2022.9.7.ebuild 75474 BLAKE2B 60f9e8b09960d3ae2ae8d90ef26474997205ab8ca5e9f52c40bf8e7ad1991d0d5a059e33e6c50fa06e584bacb0fe5dbc53b4473db36ac06e94f6cf4de96c9239 SHA512 c713eb1956048af953054a04a774a8b125e2fe7258f0ef4d0ae58fffc6eab08adc98c49885d190b32ea0ff01c89d04ec06cea374d0a4a2cd000aefe72b10d0c4 -EBUILD homeassistant-full-9999.ebuild 75478 BLAKE2B f94006d26ab788166bd8f5c39cf1704bcd2dcfbe2aad32dc12349ae842f802ac2c4ab88ff4128b81f77b131e9f7650508865afcf89308c49afef436ef4c89c4e SHA512 98ad8e17d191994aa2b6f42fe62741b68c79eb0520b5f7c2f0b111f7871158423544195c4d8f5c2a6ea8b3baaeb0531733a015489855a372ce863dd742c08687 +EBUILD homeassistant-full-9999.ebuild 75432 BLAKE2B b11bd03cd264f7c2168a569afa7a9d8e900862e0ffe341f0292b7abdc97d4ca10e6bc1d5dc0c05c9824061c18597f5555a2d7e806bb519794c545b230836f495 SHA512 169d4a1594999b92483bad9dedf7ce7aa8c90aad5175c4d2d4e559f919c298f7285e008cb49be6da6fc0a0cc282c9839269ffa4448e43da770be2b604c09ca25 MISC metadata.xml 81418 BLAKE2B c08c32b2afc181b40675b446cfd73d226865af60a0b8218984abf4a9d313bfa9c71a13e0a932fcfb86eaecce38e00f54b949be89d722acdd41e0cfa760de339f SHA512 05da077da160f07aaae2e1cbc86b9b465d767c578b4974eaf269db602c48904c667eca30296be38a7ba392d0521131f2771ac3e3b7d08f3c85e649c1d4a4cbe7 diff --git a/app-misc/homeassistant-full/homeassistant-full-2022.10.0_beta3.ebuild b/app-misc/homeassistant-full/homeassistant-full-2022.10.0_beta3.ebuild new file mode 100644 index 000000000..9f3a0afab --- /dev/null +++ b/app-misc/homeassistant-full/homeassistant-full-2022.10.0_beta3.ebuild @@ -0,0 +1,1075 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..10} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 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}/core/" +else + MY_PV=${PV/_beta/b} + MY_P=${MY_PN}-${MY_PV} + SRC_URI="https://github.com/home-assistant/core/archive/${MY_PV}.tar.gz -> ${MY_P}.tar.gz" + S="${WORKDIR}/core-${MY_PV}" +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 adax adguard ads advantage_air aemet aftership agent_dvr airly airnow airthings airtouch4 airvisual airzone aladdin_connect alarmdecoder almond alpha_vantage amazon_polly ambee amberelectric ambiclimate ambient_station amcrest ampio androidtv android_ip_webcam anel_pwrctrl anthemav apache_kafka apcupsd apns apple_tv apprise aprs aqualogic aquostv arcam_fmj arlo arris_tg2492lg aruba aseko_pool_live asterisk_mbox asuswrt atag aten_pe atome august aurora aurora_abb_powerone aussie_broadband avea avion awair aws axis backup baf baidu balboa bbb_gpio bbox beewi_smartclim bh1750 bitcoin bizkaibus blackbird blebox blink blinksticklight blinkt blockchain bluemaestro bluesound bluetooth bluetooth_le_tracker bluetooth_tracker bme280 bme680 bmp280 bmw_connected_drive bond bosch_shc braviatv broadlink brother brottsplatskartan brunt bsblan bthome bt_home_hub_5 bt_smarthub buienradar +caldav camera canary cast channels circuit cisco_ios cisco_mobility_express cisco_webex_teams clementine cli climacell cloud cloudflare cmus co2signal coinbase color_extractor comfoconnect compensation concord232 control4 coolmaster coronavirus cppm_tracker cpuspeed crownstone cups daikin danfoss_air darksky datadog debugpy deconz decora decora_wifi delijn deluge denonavr deutsche_bahn devolo_home_control devolo_home_network dexcom dhcp dht digitalloggers digital_ocean directv discogs discord discovery dlib_face_detect dlib_face_identify dlink dlna_dmr dlna_dms dnsip dominos doods doorbird dovado dsmr dunehd +dwd_weather_warnings dweet dynalite dyson eafm ebox ebusd ecoal_boiler ecobee econet ecovacs ecowitt eddystone_temperature edimax edl21 ee_brightbox efergy egardia eight_sleep elgato eliqonline elkm1 elmax elv emby emonitor emulated_hue emulated_kasa emulated_roku enigma2 enocean enphase_envoy entur_public_transport environment_canada envirophat envisalink ephember epson epsonworkforce eq3btsmart escea esphome essent etherscan eufy everlights evil_genius_labs evohome ezviz faa_delays familyhub fastdotcom feedreader ffmpeg fibaro fido file fints fireservicerota firmata fitbit fivem fixer fjaraskupan fleetgo flexit flic flick_electric flipr flo flume flunearyou flux_led folder_watcher foobot forecast_solar forked_daapd fortios foscam freebox freedompro free_mobile fritz fritzbox fritzbox_callmonitor fritzbox_netmonitor fronius frontier_silicon fully_kiosk futurenow garages_amsterdam garmin_connect gc100 gdacs generic geniushub geocaching geonetnz_quakes geonetnz_volcano geo_json_events geo_rss_events gios github gitlab_ci gitter glances gntp goalfeed goalzero gogogate2 goodwe google google_cloud google_maps google_pubsub google_translate google_travel_time govee_ble gpmdp gpsd gree greeneye_monitor greenwave growatt_server gstreamer gtfs guardian habitica hangouts harman_kardon_avr harmony hdmi_cec heatmiser heos here_travel_time hikvision hikvisioncam hisense_aehw4a1 hive hlk_sw16 +homekit homekit_controller homematic homematicip_cloud homewizard homeworks home_connect home_plus_control honeywell horizon hp_ilo html5 http htu21d huawei_lte hue huisbaasje hunterdouglas_powerview hvv_departures hydrawise hyperion ialarm ialarm_xr iammeter iaqualink icloud idteck_prox ifttt iglo ign_sismologia ihc image imap incomfort influxdb inkbird insteon intellifire intesishome iota iotawatt iperf3 ipma ipp iqvia irish_rail_transport islamic_prayer_times iss isy994 itach izone jellyfin jewish_calendar joaoapps_join juicenet justnimbus kaiterra kaleidescape keba keenetic_ndms2 kef keyboard keyboard_remote kira kiwi kmtronic knx kodi konnected kostal_plenticore kraken kulersky kwb lacrosse lacrosse_view lametric landisgyr_heat_meter lastfm launch_library laundrify lcn led_ble lg_netcast lg_soundbar life360 lifx lifx_legacy lightwave limitlessled linode linux_battery litejet litterrobot logi_circle london_underground lookin loopenergy luci luftdaten lupusec lutron lutron_caseta lw12wifi lyft lyric magicseaweed mailgun +mariadb marytts mastodon matrix maxcube mazda mcp23017 meater mediaroom media_extractor melcloud melissa melnor message_bird met meteoalarm meteoclimatic meteo_france metoffice met_eireann mfi mhz19 microsoft miflora mikrotik mill minecraft_server minio mitemp_bt moat +mobile_app mochad modbus modem_callerid modern_forms moehlenhoff_alpha2 monoprice +mosquitto motioneye motion_blinds mpd +mqtt msteams mullvad mutesync mvglive mychevy mycroft myq mysensors -mysql mystrom mythicbeastsdns nad nam namecheapdns nanoleaf neato nederlandse_spoorwegen nello ness_alarm nest netatmo netdata netgear netgear_lte netio network neurio_energy nexia nextbus nextcloud nextdns nfandroidtv nightscout niko_home_control nilu nina nissan_leaf nmap_tracker nmbs noaa_tides norway_air +notify_events notion nsw_fuel_station nsw_rural_fire_service_feed nuheat nuki numato nut nws nx584 nzbget oasa_telematics obihai octoprint oem ohmconnect ombi omnilogic oncue ondilo_ico onewire onkyo onvif openerz openevse opengarage openhome opensensemap opentherm_gw openuv openweathermap open_meteo opnsense opple orangepi_gpio oru orvibo osramlightify +otp overkiz ovo_energy owntracks ozw p1_monitor panasonic_bluray panasonic_viera pandora pcal9535a peco pencom philips_js pi4ioe5v9xxxx picnic piglow pilight +ping pi_hole pjlink plaato +plex plugwise plum_lightpad pocketcasts point poolsense powerwall profiler progettihwsw proliphix prometheus prosegur proxmoxve proxy prusalink ps4 pulseaudio_loopback pure_energie pushbullet pushover pvoutput pvpc_hourly_pricing +python_script qbittorrent qingping qld_bushfire qnap qnap_qsw qrcode quantum_gateway qvr_pro qwikswitch rachio radiotherm radio_browser rainbird raincloud rainforest_eagle rainmachine raspihats raspyrfm rdw recollect_waste +recorder recswitch reddit rejseplanen remember_the_milk remote_rpi_gpio renault repetier +rest rflink rfxtrx ridwell ring ripple risco rituals_perfume_genie rmvtransport rocketchat roku roomba roon route53 rova rpi_gpio rpi_gpio_pwm rpi_pfio rpi_power rpi_rf rtsp_to_webrtc ruckus_unleashed russound_rio russound_rnet sabnzbd saj samsungtv satel_integra schluter +scrape screenlogic scsgate season sendgrid sense sensehat senseme sensibo sensorpro sensorpush sentry senz serial serial_pm sesame seventeentrack seven_segments sharkiq shelly shiftr shodan sht31 sia sighthound signal_messenger simplepush simplisafe sinch sisyphus skybeacon skybell sky_hub slack sleepiq slide slimproto sma smappee smarthab smartthings smarttub smarty smart_meter_texas smhi sms snapcast +snmp socat sochain solaredge solaredge_local solarlog solax soma somfy somfy_mylink sonarr songpal sonos sony_projector soundtouch spc speedtestdotnet spider splunk +spotify +sql squeezebox srp_energy ssdp +ssl starline starlingbank startca statsd steamist steam_online stiebel_eltron stookalert stream streamlabswater subaru suez_water supla surepetcare swiss_hydrological_data swiss_public_transport switchbot switcher_kis switchmate syncthing syncthru synology_dsm synology_srm systemd systemmonitor system_bridge tado tahoma tailscale tankerkoenig tank_utility tapsaff tasmota tautulli ted5000 telegram_bot tellduslive tellstick temper tesla tesla_wall_connector test tfiac thermobeacon thermopro thermoworks_smoke thingspeak thinkingcleaner tibber tikteck tile tmb todoist tof tolo tomorrowio toon totalconnect touchline tplink tplink_lte traccar trackr tractive tradfri trafikverket_ferry trafikverket_train trafikverket_weatherstation transmission transport_nsw travisci trend tts tuya twentemilieu twilio twinkly twitch twitter ubus ukraine_alarm unifi unifiled unifiprotect unifi_direct upb upcloud upc_connect updater upnp uptimerobot usb uscis usgs_earthquakes_feed utility_meter uvc vallox vasttrafik velbus velux venstar vera verisure versasense +version vesync vicare vilfo vivotek vizio vlc vlc_telnet volkszaehler volumio volvooncall vulcan vultr w800rf32 +wake_on_lan wallbox waqi waterfurnace watson_iot watson_tts watttime waze_travel_time webostv wemo whirlpool whois wiffi wilight wink wirelesstag withings wiz wled wolflink workday ws66i xbee xbox xbox_live xeoma xiaomi_aqara xiaomi_ble xiaomi_miio xiaomi_tv xmpp xs1 yalexs_ble yale_smart_alarm yamaha yamaha_musiccast yandex_transport yeelight yeelightsunflower yi yolink youless zabbix zengge zeroconf zerproc zestimate zha zhong_hong ziggo_mediabox_xl zoneminder +zwave_js zwave_me" +RESTRICT="!test? ( test )" + +# external deps +RDEPEND="${PYTHON_DEPS} acct-group/${MY_PN} acct-user/${MY_PN} + || ( dev-lang/python:3.8 dev-lang/python:3.9 dev-lang/python:3.10 ) + app-admin/logrotate + dev-db/sqlite + dev-libs/libfastjson + >=dev-libs/xerces-c-3.1.4-r1" +# make sure no conflicting main Ebuild is installed +RDEPEND="${RDEPEND} + !app-misc/homeassistant-min + !app-misc/homeassistant" + +# Home Assistant Core dependencies +# from package_constraints.txt +RDEPEND="${RDEPEND} + ~dev-python/aiodiscover-1.4.13[${PYTHON_USEDEP}] + ~dev-python/aiohttp-3.8.1[${PYTHON_USEDEP}] + ~dev-python/aiohttp-cors-0.7.0[${PYTHON_USEDEP}] + ~dev-python/anyio-3.6.1[${PYTHON_USEDEP}] + ~dev-python/astral-2.2[${PYTHON_USEDEP}] + ~dev-python/async-upnp-client-0.31.2[${PYTHON_USEDEP}] + ~dev-python/async-timeout-4.0.2[${PYTHON_USEDEP}] + ~dev-python/atomicwrites-homeassistant-1.4.1[${PYTHON_USEDEP}] + ~dev-python/attrs-21.2.0[${PYTHON_USEDEP}] + =dev-python/btlewrap-0.0.10[${PYTHON_USEDEP}] + >=dev-python/certifi-2021.5.30[${PYTHON_USEDEP}] + ~dev-python/ciso8601-2.2.0[${PYTHON_USEDEP}] + ~dev-python/cryptography-38.0.1[${PYTHON_USEDEP}] + ~dev-python/dbus-fast-1.18.0[${PYTHON_USEDEP}] + ~dev-python/fnvhash-0.1.0[${PYTHON_USEDEP}] + ~dev-python/grpcio-status-1.48.0[${PYTHON_USEDEP}] + ~dev-python/grpcio-1.48.0[${PYTHON_USEDEP}] + ~dev-python/h11-0.12.0[${PYTHON_USEDEP}] + ~dev-python/hass-nabucasa-0.56.0[${PYTHON_USEDEP}] + ~dev-python/home-assistant-bluetooth-1.3.0[${PYTHON_USEDEP}] + ~dev-python/home-assistant-frontend-20220929.0[${PYTHON_USEDEP}] + ~dev-python/httpcore-0.15.0[${PYTHON_USEDEP}] + >=dev-python/httplib2-0.19.0[${PYTHON_USEDEP}] + ~dev-python/httpx-0.23.0[${PYTHON_USEDEP}] + >=dev-python/hyperframe-5.2.0[${PYTHON_USEDEP}] + ~dev-python/ifaddr-0.1.7[${PYTHON_USEDEP}] + !~dev-python/iso4217-1.10.20220401[${PYTHON_USEDEP}] + ~dev-python/jinja-3.1.2[${PYTHON_USEDEP}] + ~dev-python/libcst-0.3.23[${PYTHON_USEDEP}] + ~dev-python/lru-dict-1.1.8[${PYTHON_USEDEP}] + >=dev-python/multidict-6.0.2[${PYTHON_USEDEP}] + ~dev-python/numpy-1.23.2[${PYTHON_USEDEP}] + ~dev-python/orjson-3.7.11[${PYTHON_USEDEP}] + ~dev-python/paho-mqtt-1.6.1[${PYTHON_USEDEP}] + ~dev-python/pandas-1.4.3[${PYTHON_USEDEP}] + ~dev-python/pillow-9.2.0[${PYTHON_USEDEP}] + =dev-python/pycryptodome-3.6.6[${PYTHON_USEDEP}] + !~dev-python/pydantic-1.9.1[${PYTHON_USEDEP}] + ~dev-python/pyjwt-2.5.0[${PYTHON_USEDEP}] + ~dev-python/pynacl-1.5.0[${PYTHON_USEDEP}] + ~dev-python/pyserial-3.5[${PYTHON_USEDEP}] + >=dev-python/python-engineio-3.13.1[${PYTHON_USEDEP}] + =dev-python/python-socketio-4.6.0[${PYTHON_USEDEP}] + =dev-python/typing-extensions-3.10.0.2[${PYTHON_USEDEP}] + =dev-python/urllib3-1.26.5[${PYTHON_USEDEP}] + ~dev-python/voluptuous-serialize-2.5.0[${PYTHON_USEDEP}] + ~dev-python/voluptuous-0.13.1[${PYTHON_USEDEP}] + ~dev-python/yarl-1.8.1[${PYTHON_USEDEP}] + ~dev-python/zeroconf-0.39.1[${PYTHON_USEDEP}]" + +# unknown origin, still something to clean up here +# some moved to suggested USE Flags +# +# auth/mfa_modules/totp.py:REQUIREMENTS = ["pyotp==2.6.0", "PyQRCode==1.2.1"] +# scripts/check_config.py:REQUIREMENTS = ("colorlog==6.6.0",) + +RDEPEND="${RDEPEND} + ~dev-python/colorlog-6.6.0[${PYTHON_USEDEP}] + >=dev-python/multidict-5.2.0[${PYTHON_USEDEP}] + ~dev-python/pyotp-2.6.0[${PYTHON_USEDEP}] + >=dev-python/pyqrcode-1.2.1[${PYTHON_USEDEP}] + dev-python/pycparser[${PYTHON_USEDEP}] + >=dev-python/websocket-client-0.57.0[${PYTHON_USEDEP}] + ~media-libs/mutagen-1.45.1" +# Module requirements from useflags +RDEPEND="${RDEPEND} + abode? ( ~dev-python/abodepy-1.2.0[${PYTHON_USEDEP}] ) + accuweather? ( ~dev-python/accuweather-0.4.0[${PYTHON_USEDEP}] ) + acer_projector? ( ~dev-python/pyserial-3.5[${PYTHON_USEDEP}] ) + acmeda? ( ~dev-python/aiopulse-0.4.3[${PYTHON_USEDEP}] ) + adax? ( ~dev-python/adax-0.2.0[${PYTHON_USEDEP}] ~dev-python/Adax-local-0.1.4[${PYTHON_USEDEP}] ) + adguard? ( ~dev-python/adguardhome-0.5.1[${PYTHON_USEDEP}] ) + ads? ( ~dev-python/pyads-3.2.2[${PYTHON_USEDEP}] ) + advantage_air? ( ~dev-python/advantage-air-0.4.1[${PYTHON_USEDEP}] ) + aemet? ( ~dev-python/AEMET-OpenData-0.2.1[${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}] ) + airnow? ( ~dev-python/pyairnow-1.1.0[${PYTHON_USEDEP}] ) + airthings? ( ~dev-python/airthings-cloud-0.1.0[${PYTHON_USEDEP}] ) + airtouch4? ( ~dev-python/airtouch4pyapi-1.0.5[${PYTHON_USEDEP}] ) + airvisual? ( ~dev-python/pyairvisual-2022.7.0[${PYTHON_USEDEP}] ) + airzone? ( ~dev-python/aioairzone-0.4.8[${PYTHON_USEDEP}] ) + aladdin_connect? ( ~dev-python/AIOAladdinConnect-0.1.46[${PYTHON_USEDEP}] ) + alarmdecoder? ( ~dev-python/adext-0.4.2[${PYTHON_USEDEP}] ) + almond? ( ~dev-python/pyalmond-0.0.2[${PYTHON_USEDEP}] ) + alpha_vantage? ( ~dev-python/alpha-vantage-2.3.1[${PYTHON_USEDEP}] ) + amazon_polly? ( ~dev-python/boto3-1.20.24[${PYTHON_USEDEP}] ) + ambee? ( ~dev-python/ambee-0.4.0[${PYTHON_USEDEP}] ) + amberelectric? ( ~dev-python/amberelectric-1.0.4[${PYTHON_USEDEP}] ) + ambiclimate? ( ~dev-python/Ambiclimate-0.2.1[${PYTHON_USEDEP}] ) + ambient_station? ( ~dev-python/aioambient-2021.11.0[${PYTHON_USEDEP}] ) + amcrest? ( ~dev-python/amcrest-1.9.7[${PYTHON_USEDEP}] ) + ampio? ( ~dev-python/asmog-0.0.6[${PYTHON_USEDEP}] ) + androidtv? ( ~dev-python/adb-shell-0.4.3[${PYTHON_USEDEP}] ~dev-python/androidtv-0.0.67[${PYTHON_USEDEP}] ~dev-python/pure-python-adb-0.3.0[${PYTHON_USEDEP}] ) + android_ip_webcam? ( ~dev-python/pydroid-ipcam-2.0.0[${PYTHON_USEDEP}] ) + anel_pwrctrl? ( ~dev-python/anel-pwrctrl-homeassistant-0.0.1[${PYTHON_USEDEP}] ) + anthemav? ( ~dev-python/anthemav-1.4.1[${PYTHON_USEDEP}] ) + apache_kafka? ( ~dev-python/aiokafka-0.7.2[${PYTHON_USEDEP}] ) + apcupsd? ( ~dev-python/apcaccess-0.0.13[${PYTHON_USEDEP}] ) + apns? ( ~dev-python/apns2-0.3.0[${PYTHON_USEDEP}] ) + apple_tv? ( ~dev-python/pyatv-0.10.3[${PYTHON_USEDEP}] ) + apprise? ( ~dev-python/apprise-1.0.0[${PYTHON_USEDEP}] ) + aprs? ( ~dev-python/aprslib-0.7.0[${PYTHON_USEDEP}] ~sci-geosciences/geopy-2.1.0 ) + aqualogic? ( ~dev-python/aqualogic-2.6[${PYTHON_USEDEP}] ) + aquostv? ( ~dev-python/sharp_aquos_rc-0.3.2[${PYTHON_USEDEP}] ) + arcam_fmj? ( ~dev-python/arcam-fmj-0.12.0[${PYTHON_USEDEP}] ) + arlo? ( ~dev-python/pyarlo-0.2.4[${PYTHON_USEDEP}] ) + arris_tg2492lg? ( ~dev-python/arris-tg2492lg-1.2.1[${PYTHON_USEDEP}] ) + aruba? ( ~dev-python/pexpect-4.6.0[${PYTHON_USEDEP}] ) + aseko_pool_live? ( ~dev-python/aioaseko-0.0.2[${PYTHON_USEDEP}] ) + asterisk_mbox? ( ~dev-python/asterisk_mbox-0.5.0[${PYTHON_USEDEP}] ) + asuswrt? ( ~dev-python/aioasuswrt-1.4.0[${PYTHON_USEDEP}] ) + atag? ( ~dev-python/pyatag-0.3.5.3[${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-1.2.4[${PYTHON_USEDEP}] ) + aurora? ( ~dev-python/auroranoaa-0.0.2[${PYTHON_USEDEP}] ) + aurora_abb_powerone? ( ~dev-python/aurorapy-0.2.7[${PYTHON_USEDEP}] ) + aussie_broadband? ( ~dev-python/pyaussiebb-0.0.15[${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}] ) + aws? ( ~dev-python/aiobotocore-2.1.0[${PYTHON_USEDEP}] ) + axis? ( ~dev-python/axis-44[${PYTHON_USEDEP}] ) + backup? ( ~dev-python/securetar-2022.2.0[${PYTHON_USEDEP}] ) + baf? ( ~dev-python/aiobafi6-0.7.2[${PYTHON_USEDEP}] ) + baidu? ( ~dev-python/baidu-aip-1.6.6.0[${PYTHON_USEDEP}] ) + balboa? ( ~dev-python/pybalboa-0.13[${PYTHON_USEDEP}] ) + bbb_gpio? ( ~dev-python/Adafruit_BBIO-1.1.1[${PYTHON_USEDEP}] ) + bbox? ( ~dev-python/pybbox-0.0.5_alpha0[${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.5[${PYTHON_USEDEP}] ) + blebox? ( ~dev-python/blebox-uniapi-2.0.2[${PYTHON_USEDEP}] ) + blink? ( ~dev-python/blinkpy-0.19.2[${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}] ) + bluemaestro? ( ~dev-python/bluemaestro-ble-0.2.0[${PYTHON_USEDEP}] ) + bluesound? ( ~dev-python/xmltodict-0.13.0[${PYTHON_USEDEP}] ) + bluetooth? ( ~dev-python/bleak-0.18.1[${PYTHON_USEDEP}] ~dev-python/bleak-retry-connector-2.1.3[${PYTHON_USEDEP}] ~dev-python/bluetooth-adapters-0.5.3[${PYTHON_USEDEP}] ~dev-python/bluetooth-auto-recovery-0.3.3[${PYTHON_USEDEP}] ~dev-python/dbus-fast-1.18.0[${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}] ) + bmp280? ( ~dev-python/adafruit-circuitpython-bmp280-3.1.1[${PYTHON_USEDEP}] ~dev-python/RPi-GPIO-0.7.1_alpha4[${PYTHON_USEDEP}] ) + bmw_connected_drive? ( ~dev-python/bimmer-connected-0.10.4[${PYTHON_USEDEP}] ) + bond? ( ~dev-python/bond-async-0.1.22[${PYTHON_USEDEP}] ) + bosch_shc? ( ~dev-python/boschshcpy-0.2.35[${PYTHON_USEDEP}] ) + braviatv? ( ~dev-python/pybravia-0.2.3[${PYTHON_USEDEP}] ) + broadlink? ( ~dev-python/broadlink-0.18.2[${PYTHON_USEDEP}] ) + brother? ( ~dev-python/brother-2.0.0[${PYTHON_USEDEP}] ) + brottsplatskartan? ( ~dev-python/brottsplatskartan-0.0.1[${PYTHON_USEDEP}] ) + brunt? ( ~dev-python/brunt-1.2.0[${PYTHON_USEDEP}] ) + bsblan? ( ~dev-python/bsblan-0.5.0[${PYTHON_USEDEP}] ) + bthome? ( ~dev-python/bthome-ble-1.2.2[${PYTHON_USEDEP}] ) + bt_home_hub_5? ( ~dev-python/bthomehub5-devicelist-0.1.1[${PYTHON_USEDEP}] ) + bt_smarthub? ( ~dev-python/btsmarthub-devicelist-0.2.2[${PYTHON_USEDEP}] ) + buienradar? ( ~dev-python/buienradar-1.0.5[${PYTHON_USEDEP}] ) + caldav? ( ~dev-python/caldav-0.9.1[${PYTHON_USEDEP}] ) + camera? ( ~dev-python/PyTurboJPEG-1.6.7[${PYTHON_USEDEP}] ) + canary? ( ~dev-python/py-canary-0.5.3[${PYTHON_USEDEP}] ) + cast? ( ~dev-python/pychromecast-12.1.4[${PYTHON_USEDEP}] ) + channels? ( ~dev-python/pychannels-1.0.0[${PYTHON_USEDEP}] ) + circuit? ( ~dev-python/circuit-webhook-1.0.1[${PYTHON_USEDEP}] ) + cisco_ios? ( ~dev-python/pexpect-4.6.0[${PYTHON_USEDEP}] ) + cisco_mobility_express? ( ~dev-python/ciscomobilityexpress-0.3.9[${PYTHON_USEDEP}] ) + cisco_webex_teams? ( ~dev-python/webexteamssdk-1.1.1[${PYTHON_USEDEP}] ) + clementine? ( ~dev-python/python-clementine-remote-1.0.1[${PYTHON_USEDEP}] ) + cli? ( app-misc/home-assistant-cli ) + climacell? ( ~dev-python/pyclimacell-0.18.2[${PYTHON_USEDEP}] ) + cloud? ( ~dev-python/hass-nabucasa-0.56.0[${PYTHON_USEDEP}] ) + cloudflare? ( ~dev-python/pycfdns-1.2.2[${PYTHON_USEDEP}] ) + cmus? ( ~dev-python/pycmus-0.1.1[${PYTHON_USEDEP}] ) + co2signal? ( ~dev-python/CO2Signal-0.4.2[${PYTHON_USEDEP}] ) + coinbase? ( ~dev-python/coinbase-2.1.0[${PYTHON_USEDEP}] ) + color_extractor? ( ~dev-python/colorthief-0.2.1[${PYTHON_USEDEP}] ) + comfoconnect? ( ~dev-python/pycomfoconnect-0.4[${PYTHON_USEDEP}] ) + compensation? ( ~dev-python/numpy-1.23.2[${PYTHON_USEDEP}] ) + concord232? ( ~dev-python/concord232-0.15[${PYTHON_USEDEP}] ) + control4? ( ~dev-python/pyControl4-0.0.6[${PYTHON_USEDEP}] ) + coolmaster? ( ~dev-python/pycoolmasternet-async-0.1.2[${PYTHON_USEDEP}] ) + coronavirus? ( ~dev-python/coronavirus-1.1.1[${PYTHON_USEDEP}] ) + cppm_tracker? ( ~dev-python/clearpasspy-1.0.2[${PYTHON_USEDEP}] ) + cpuspeed? ( ~dev-python/py-cpuinfo-8.0.0[${PYTHON_USEDEP}] ) + crownstone? ( ~dev-python/crownstone-cloud-1.4.9[${PYTHON_USEDEP}] ~dev-python/crownstone-sse-2.0.4[${PYTHON_USEDEP}] ~dev-python/crownstone-uart-2.1.0[${PYTHON_USEDEP}] ~dev-python/pyserial-3.5[${PYTHON_USEDEP}] ) + cups? ( ~dev-python/pycups-1.9.73[${PYTHON_USEDEP}] ) + daikin? ( ~dev-python/pydaikin-2.7.0[${PYTHON_USEDEP}] ) + danfoss_air? ( ~dev-python/pydanfossair-0.1.0[${PYTHON_USEDEP}] ) + darksky? ( ~dev-python/python-forecastio-1.4.0[${PYTHON_USEDEP}] ) + datadog? ( ~dev-python/datadog-0.15.0[${PYTHON_USEDEP}] ) + debugpy? ( ~dev-python/debugpy-1.6.3[${PYTHON_USEDEP}] ) + deconz? ( ~dev-python/pydeconz-104[${PYTHON_USEDEP}] ) + decora? ( ~dev-python/bluepy-1.3.0[${PYTHON_USEDEP}] ~dev-python/decora-0.6[${PYTHON_USEDEP}] ) + decora_wifi? ( ~dev-python/decora-wifi-1.4[${PYTHON_USEDEP}] ) + delijn? ( ~dev-python/pydelijn-1.0.0[${PYTHON_USEDEP}] ) + deluge? ( ~dev-python/deluge-client-1.7.1[${PYTHON_USEDEP}] ) + denonavr? ( ~dev-python/denonavr-0.10.11[${PYTHON_USEDEP}] ) + deutsche_bahn? ( ~dev-python/schiene-0.23[${PYTHON_USEDEP}] ) + devolo_home_control? ( ~dev-python/devolo-home-control-api-0.18.2[${PYTHON_USEDEP}] ) + devolo_home_network? ( ~dev-python/devolo-plc-api-0.8.0[${PYTHON_USEDEP}] ) + dexcom? ( ~dev-python/pydexcom-0.2.3[${PYTHON_USEDEP}] ) + dhcp? ( ~net-analyzer/scapy-2.4.5 ~dev-python/aiodiscover-1.4.13[${PYTHON_USEDEP}] ) + dht? ( ~dev-python/adafruit-circuitpython-dht-3.7.0[${PYTHON_USEDEP}] ~dev-python/RPi-GPIO-0.7.1_alpha4[${PYTHON_USEDEP}] ) + digitalloggers? ( ~dev-python/dlipower-0.7.165[${PYTHON_USEDEP}] ) + digital_ocean? ( ~dev-python/python-digitalocean-1.13.2[${PYTHON_USEDEP}] ) + directv? ( ~dev-python/directv-0.4.0[${PYTHON_USEDEP}] ) + discogs? ( ~dev-python/discogs-client-2.3.0[${PYTHON_USEDEP}] ) + discord? ( ~dev-python/nextcord-2.0.0_alpha8[${PYTHON_USEDEP}] ) + discovery? ( ~dev-python/netdisco-3.0.0[${PYTHON_USEDEP}] ) + dlib_face_detect? ( ~dev-python/face_recognition-1.2.3[${PYTHON_USEDEP}] ) + dlib_face_identify? ( ~dev-python/face_recognition-1.2.3[${PYTHON_USEDEP}] ) + dlink? ( ~dev-python/pyW215-0.7.0[${PYTHON_USEDEP}] ) + dlna_dmr? ( ~dev-python/async-upnp-client-0.31.2[${PYTHON_USEDEP}] ) + dlna_dms? ( ~dev-python/async-upnp-client-0.31.2[${PYTHON_USEDEP}] ) + dnsip? ( ~dev-python/aiodns-3.0.0[${PYTHON_USEDEP}] ) + dominos? ( ~dev-python/pizzapi-0.0.3[${PYTHON_USEDEP}] ) + doods? ( ~dev-python/pydoods-1.0.2[${PYTHON_USEDEP}] ~dev-python/pillow-9.2.0[${PYTHON_USEDEP}] ) + doorbird? ( ~dev-python/DoorBirdPy-2.1.0[${PYTHON_USEDEP}] ) + dovado? ( ~dev-python/dovado-0.4.1[${PYTHON_USEDEP}] ) + dsmr? ( ~dev-python/dsmr-parser-0.33[${PYTHON_USEDEP}] ) + dunehd? ( ~dev-python/pdunehd-1.3.2[${PYTHON_USEDEP}] ) + dwd_weather_warnings? ( ~dev-python/dwdwfsapi-1.0.5[${PYTHON_USEDEP}] ) + dweet? ( ~dev-python/dweepy-0.3.0[${PYTHON_USEDEP}] ) + dynalite? ( ~dev-python/dynalite-devices-0.1.46[${PYTHON_USEDEP}] ) + dyson? ( ~dev-python/libpurecool-0.6.4[${PYTHON_USEDEP}] ) + eafm? ( ~dev-python/aioeafm-0.1.2[${PYTHON_USEDEP}] ) + ebox? ( ~dev-python/pyebox-1.1.4[${PYTHON_USEDEP}] ) + ebusd? ( ~dev-python/ebusdpy-0.0.17[${PYTHON_USEDEP}] ) + ecoal_boiler? ( ~dev-python/ecoaliface-0.4.0[${PYTHON_USEDEP}] ) + ecobee? ( ~dev-python/python-ecobee-api-0.2.14[${PYTHON_USEDEP}] ) + econet? ( ~dev-python/pyeconet-0.1.15[${PYTHON_USEDEP}] ) + ecovacs? ( ~dev-python/py-sucks-0.9.8[${PYTHON_USEDEP}] ) + ecowitt? ( ~dev-python/aioecowitt-2022.9.3[${PYTHON_USEDEP}] ) + eddystone_temperature? ( ~dev-python/beacontools-1.2.3[${PYTHON_USEDEP}] ~dev-python/construct-2.10.56[${PYTHON_USEDEP}] ) + edimax? ( ~dev-python/pyedimax-0.2.1[${PYTHON_USEDEP}] ) + edl21? ( ~dev-python/pysml-0.0.8[${PYTHON_USEDEP}] ) + ee_brightbox? ( ~dev-python/eebrightbox-0.0.4[${PYTHON_USEDEP}] ) + efergy? ( ~dev-python/pyefergy-22.1.1[${PYTHON_USEDEP}] ) + egardia? ( ~dev-python/pythonegardia-1.0.40[${PYTHON_USEDEP}] ) + eight_sleep? ( ~dev-python/pyEight-0.3.0[${PYTHON_USEDEP}] ) + elgato? ( ~dev-python/elgato-3.0.0[${PYTHON_USEDEP}] ) + eliqonline? ( ~dev-python/eliqonline-1.2.2[${PYTHON_USEDEP}] ) + elkm1? ( ~dev-python/elkm1-lib-2.0.2[${PYTHON_USEDEP}] ) + elmax? ( ~dev-python/elmax-api-0.0.2[${PYTHON_USEDEP}] ) + elv? ( ~dev-python/pypca-0.0.7[${PYTHON_USEDEP}] ) + emby? ( ~dev-python/pyEmby-1.8[${PYTHON_USEDEP}] ) + emonitor? ( ~dev-python/aioemonitor-1.0.5[${PYTHON_USEDEP}] ) + emulated_hue? ( ~dev-python/aiohttp-cors-0.7.0[${PYTHON_USEDEP}] ) + emulated_kasa? ( ~dev-python/sense-energy-0.10.4[${PYTHON_USEDEP}] ) + emulated_roku? ( ~dev-python/emulated-roku-0.2.1[${PYTHON_USEDEP}] ) + enigma2? ( ~dev-python/openwebifpy-3.2.7[${PYTHON_USEDEP}] ) + enocean? ( ~dev-python/enocean-0.50.1[${PYTHON_USEDEP}] ) + enphase_envoy? ( ~dev-python/envoy-reader-0.20.1[${PYTHON_USEDEP}] ) + entur_public_transport? ( ~dev-python/enturclient-0.2.4[${PYTHON_USEDEP}] ) + environment_canada? ( ~dev-python/env-canada-0.5.22[${PYTHON_USEDEP}] ) + envirophat? ( ~dev-python/envirophat-0.0.6[${PYTHON_USEDEP}] ~dev-python/smbus-cffi-0.5.1[${PYTHON_USEDEP}] ) + envisalink? ( ~dev-python/pyenvisalink-4.6[${PYTHON_USEDEP}] ) + ephember? ( ~dev-python/pyephember-0.3.1[${PYTHON_USEDEP}] ) + epson? ( ~dev-python/epson-projector-0.5.0[${PYTHON_USEDEP}] ) + epsonworkforce? ( ~dev-python/epsonprinter-0.0.9[${PYTHON_USEDEP}] ) + eq3btsmart? ( ~dev-python/construct-2.10.56[${PYTHON_USEDEP}] ~dev-python/python-eq3bt-0.2[${PYTHON_USEDEP}] ) + escea? ( ~dev-python/pescea-1.0.12[${PYTHON_USEDEP}] ) + esphome? ( ~dev-python/aioesphomeapi-11.0.0[${PYTHON_USEDEP}] ) + essent? ( ~dev-python/PyEssent-0.14[${PYTHON_USEDEP}] ) + etherscan? ( ~dev-python/python-etherscan-api-0.0.3[${PYTHON_USEDEP}] ) + eufy? ( ~dev-python/lakeside-0.12[${PYTHON_USEDEP}] ) + everlights? ( ~dev-python/pyeverlights-0.1.0[${PYTHON_USEDEP}] ) + evil_genius_labs? ( ~dev-python/pyevilgenius-2.0.0[${PYTHON_USEDEP}] ) + evohome? ( ~dev-python/evohome-async-0.3.15[${PYTHON_USEDEP}] ) + ezviz? ( ~dev-python/pyezviz-0.2.0.9[${PYTHON_USEDEP}] ) + faa_delays? ( ~dev-python/faadelays-0.0.7[${PYTHON_USEDEP}] ) + familyhub? ( ~dev-python/python-family-hub-local-0.0.2[${PYTHON_USEDEP}] ) + fastdotcom? ( ~dev-python/fastdotcom-0.0.3[${PYTHON_USEDEP}] ) + feedreader? ( ~dev-python/feedparser-6.0.10[${PYTHON_USEDEP}] ) + ffmpeg? ( ~dev-python/ha-ffmpeg-3.0.2[${PYTHON_USEDEP}] ) + fibaro? ( ~dev-python/fiblary3-0.1.8[${PYTHON_USEDEP}] ) + fido? ( ~dev-python/pyfido-2.1.1[${PYTHON_USEDEP}] ) + file? ( ~dev-python/file-read-backwards-2.0.0[${PYTHON_USEDEP}] ) + fints? ( ~dev-python/fints-3.1.0[${PYTHON_USEDEP}] ) + fireservicerota? ( ~dev-python/pyfireservicerota-0.0.43[${PYTHON_USEDEP}] ) + firmata? ( ~dev-python/pymata-express-1.19[${PYTHON_USEDEP}] ) + fitbit? ( ~dev-python/fitbit-0.3.1[${PYTHON_USEDEP}] ) + fivem? ( ~dev-python/fivem-api-0.1.2[${PYTHON_USEDEP}] ) + fixer? ( ~dev-python/fixerio-1.0.0_alpha0[${PYTHON_USEDEP}] ) + fjaraskupan? ( ~dev-python/fjaraskupan-2.0.0[${PYTHON_USEDEP}] ) + fleetgo? ( ~dev-python/ritassist-0.9.2[${PYTHON_USEDEP}] ) + flexit? ( ~dev-python/pyflexit-0.3[${PYTHON_USEDEP}] ) + flic? ( ~dev-python/pyflic-2.0.3[${PYTHON_USEDEP}] ) + flick_electric? ( ~dev-python/PyFlick-0.0.2[${PYTHON_USEDEP}] ) + flipr? ( ~dev-python/flipr-api-1.4.2[${PYTHON_USEDEP}] ) + flo? ( ~dev-python/aioflo-2021.11.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-0.28.32[${PYTHON_USEDEP}] ) + folder_watcher? ( ~dev-python/watchdog-2.1.9[${PYTHON_USEDEP}] ) + foobot? ( ~dev-python/foobot_async-1.0.0[${PYTHON_USEDEP}] ) + forecast_solar? ( ~dev-python/forecast-solar-2.2.0[${PYTHON_USEDEP}] ) + forked_daapd? ( ~dev-python/pyforked-daapd-0.1.11[${PYTHON_USEDEP}] ~dev-python/pylibrespot-java-0.1.0[${PYTHON_USEDEP}] ) + fortios? ( ~dev-python/fortiosapi-1.0.5[${PYTHON_USEDEP}] ) + foscam? ( ~dev-python/libpyfoscam-1.0[${PYTHON_USEDEP}] ) + freebox? ( ~dev-python/freebox-api-0.0.10[${PYTHON_USEDEP}] ) + freedompro? ( ~dev-python/pyfreedompro-1.1.0[${PYTHON_USEDEP}] ) + free_mobile? ( ~dev-python/freesms-0.2.0[${PYTHON_USEDEP}] ) + fritz? ( ~dev-python/fritzconnection-1.10.3[${PYTHON_USEDEP}] ~dev-python/xmltodict-0.13.0[${PYTHON_USEDEP}] ) + fritzbox? ( ~dev-python/pyfritzhome-0.6.7[${PYTHON_USEDEP}] ) + fritzbox_callmonitor? ( ~dev-python/fritzconnection-1.10.3[${PYTHON_USEDEP}] ) + fritzbox_netmonitor? ( ~dev-python/fritzconnection-1.4.2[${PYTHON_USEDEP}] ) + fronius? ( ~dev-python/PyFronius-0.7.1[${PYTHON_USEDEP}] ) + frontier_silicon? ( ~dev-python/afsapi-0.2.7[${PYTHON_USEDEP}] ) + fully_kiosk? ( ~dev-python/python-fullykiosk-0.0.11[${PYTHON_USEDEP}] ) + futurenow? ( ~dev-python/pyfnip-0.2[${PYTHON_USEDEP}] ) + garages_amsterdam? ( ~dev-python/garages-amsterdam-3.0.0[${PYTHON_USEDEP}] ) + garmin_connect? ( ~dev-python/garminconnect-ha-0.1.6[${PYTHON_USEDEP}] ) + gc100? ( ~dev-python/python-gc100-1.0.3_alpha0[${PYTHON_USEDEP}] ) + gdacs? ( ~dev-python/aio-georss-gdacs-0.7[${PYTHON_USEDEP}] ) + generic? ( ~dev-python/ha-av-10.0.0_beta4 ~dev-python/pillow-9.2.0[${PYTHON_USEDEP}] ) + geniushub? ( ~dev-python/geniushub-client-0.6.30[${PYTHON_USEDEP}] ) + geocaching? ( ~dev-python/geocachingapi-0.2.1[${PYTHON_USEDEP}] ) + geonetnz_quakes? ( ~dev-python/aio-geojson-geonetnz-quakes-0.13[${PYTHON_USEDEP}] ) + geonetnz_volcano? ( ~dev-python/aio-geojson-geonetnz-volcano-0.6[${PYTHON_USEDEP}] ) + geo_json_events? ( ~dev-python/aio-geojson-generic-client-0.1[${PYTHON_USEDEP}] ) + geo_rss_events? ( ~dev-python/georss-generic-client-0.6[${PYTHON_USEDEP}] ) + gios? ( ~dev-python/gios-2.1.0[${PYTHON_USEDEP}] ) + github? ( ~dev-python/aiogithubapi-22.2.4[${PYTHON_USEDEP}] ) + gitlab_ci? ( ~dev-python/python-gitlab-1.6.0[${PYTHON_USEDEP}] ) + gitter? ( ~dev-python/gitterpy-0.1.7[${PYTHON_USEDEP}] ) + glances? ( ~dev-python/glances-api-0.4.1[${PYTHON_USEDEP}] ) + gntp? ( ~dev-python/gntp-1.0.3[${PYTHON_USEDEP}] ) + goalfeed? ( ~dev-python/Pysher-1.0.7[${PYTHON_USEDEP}] ) + goalzero? ( ~dev-python/goalzero-0.2.1[${PYTHON_USEDEP}] ) + gogogate2? ( ~dev-python/ismartgate-4.0.4[${PYTHON_USEDEP}] ) + goodwe? ( ~dev-python/goodwe-0.2.18[${PYTHON_USEDEP}] ) + google? ( ~dev-python/gcal-sync-0.10.0[${PYTHON_USEDEP}] ~dev-python/oauth2client-4.1.3[${PYTHON_USEDEP}] ) + google_cloud? ( ~dev-python/google-cloud-texttospeech-2.12.1[${PYTHON_USEDEP}] ) + google_maps? ( ~dev-python/locationsharinglib-4.1.5[${PYTHON_USEDEP}] ) + google_pubsub? ( ~dev-python/google-cloud-pubsub-2.11.0[${PYTHON_USEDEP}] ) + google_translate? ( ~dev-python/gTTS-2.2.4[${PYTHON_USEDEP}] ) + google_travel_time? ( ~dev-python/googlemaps-2.5.1[${PYTHON_USEDEP}] ) + govee_ble? ( ~dev-python/govee-ble-0.19.0[${PYTHON_USEDEP}] ) + gpmdp? ( ~dev-python/websocket-client-0.54.0[${PYTHON_USEDEP}] ) + gpsd? ( ~dev-python/gps3-0.33.3[${PYTHON_USEDEP}] ) + gree? ( ~dev-python/greeclimate-1.3.0[${PYTHON_USEDEP}] ) + greeneye_monitor? ( ~dev-python/greeneye-monitor-3.0.3[${PYTHON_USEDEP}] ) + greenwave? ( ~dev-python/greenwavereality-0.5.1[${PYTHON_USEDEP}] ) + growatt_server? ( ~dev-python/growattServer-1.2.2[${PYTHON_USEDEP}] ) + gstreamer? ( ~dev-python/gstreamer-player-1.1.2[${PYTHON_USEDEP}] ) + gtfs? ( ~dev-python/pygtfs-0.1.6[${PYTHON_USEDEP}] ) + guardian? ( ~dev-python/aioguardian-2022.7.0[${PYTHON_USEDEP}] ) + habitica? ( ~dev-python/habitipy-0.2.0[${PYTHON_USEDEP}] ) + hangouts? ( ~dev-python/hangups-0.4.18[${PYTHON_USEDEP}] ) + harman_kardon_avr? ( ~dev-python/hkavr-0.0.5[${PYTHON_USEDEP}] ) + harmony? ( ~dev-python/aioharmony-0.2.9[${PYTHON_USEDEP}] ) + hdmi_cec? ( ~dev-python/pyCEC-0.5.2[${PYTHON_USEDEP}] ) + heatmiser? ( ~dev-python/heatmiserV3-1.1.18[${PYTHON_USEDEP}] ) + heos? ( ~dev-python/pyheos-0.7.2[${PYTHON_USEDEP}] ) + here_travel_time? ( ~dev-python/herepy-2.0.0[${PYTHON_USEDEP}] ) + hikvision? ( ~dev-python/pyHik-0.3.0[${PYTHON_USEDEP}] ) + hikvisioncam? ( ~dev-python/hikvision-0.4[${PYTHON_USEDEP}] ) + hisense_aehw4a1? ( ~dev-python/pyaehw4a1-0.3.9[${PYTHON_USEDEP}] ) + hive? ( ~dev-python/pyhiveapi-0.5.13[${PYTHON_USEDEP}] ) + hlk_sw16? ( ~dev-python/hlk-sw16-0.0.9[${PYTHON_USEDEP}] ) + homekit? ( ~dev-python/HAP-python-4.5.0[${PYTHON_USEDEP}] ~dev-python/fnvhash-0.1.0[${PYTHON_USEDEP}] ~dev-python/pyqrcode-1.2.1[${PYTHON_USEDEP}] ~dev-python/base36-0.1.1[${PYTHON_USEDEP}] ) + homekit_controller? ( ~dev-python/aiohomekit-1.5.12[${PYTHON_USEDEP}] ) + homematic? ( ~dev-python/pyhomematic-0.1.77[${PYTHON_USEDEP}] ) + homematicip_cloud? ( ~dev-python/homematicip-1.0.7[${PYTHON_USEDEP}] ) + homewizard? ( ~dev-python/python-homewizard-energy-1.1.0[${PYTHON_USEDEP}] ) + homeworks? ( ~dev-python/pyhomeworks-0.0.6[${PYTHON_USEDEP}] ) + home_connect? ( ~dev-python/homeconnect-0.7.2[${PYTHON_USEDEP}] ) + home_plus_control? ( ~dev-python/homepluscontrol-0.0.5[${PYTHON_USEDEP}] ) + honeywell? ( ~dev-python/somecomfort-0.8.0[${PYTHON_USEDEP}] ) + horizon? ( ~dev-python/horimote-0.4.1[${PYTHON_USEDEP}] ) + hp_ilo? ( ~dev-python/python-hpilo-4.3[${PYTHON_USEDEP}] ) + html5? ( ~dev-python/pywebpush-1.9.2[${PYTHON_USEDEP}] ) + http? ( ~dev-python/aiohttp-cors-0.7.0[${PYTHON_USEDEP}] ) + htu21d? ( ~dev-python/i2csense-0.0.4[${PYTHON_USEDEP}] ~dev-python/smbus-cffi-0.5.1[${PYTHON_USEDEP}] ) + huawei_lte? ( ~dev-python/huawei-lte-api-1.6.1[${PYTHON_USEDEP}] ~dev-python/stringcase-1.2.0[${PYTHON_USEDEP}] ~dev-python/url-normalize-1.4.3[${PYTHON_USEDEP}] ) + hue? ( ~dev-python/aiohue-4.5.0[${PYTHON_USEDEP}] ) + huisbaasje? ( ~dev-python/huisbaasje-client-0.1.0[${PYTHON_USEDEP}] ) + hunterdouglas_powerview? ( ~dev-python/aiopvapi-2.0.0[${PYTHON_USEDEP}] ) + hvv_departures? ( ~dev-python/pygti-0.9.3[${PYTHON_USEDEP}] ) + hydrawise? ( ~dev-python/Hydrawiser-0.2[${PYTHON_USEDEP}] ) + hyperion? ( ~dev-python/hyperion-py-0.7.5[${PYTHON_USEDEP}] ) + ialarm? ( ~dev-python/pyialarm-2.2.0[${PYTHON_USEDEP}] ) + ialarm_xr? ( ~dev-python/pyialarmxr-homeassistant-1.0.18[${PYTHON_USEDEP}] ) + iammeter? ( ~dev-python/iammeter-0.1.7[${PYTHON_USEDEP}] ) + iaqualink? ( ~dev-python/iaqualink-0.4.1[${PYTHON_USEDEP}] ) + icloud? ( ~dev-python/pyicloud-1.0.0[${PYTHON_USEDEP}] ) + idteck_prox? ( ~dev-python/rfk101py-0.0.1[${PYTHON_USEDEP}] ) + ifttt? ( ~dev-python/pyfttt-0.3.2[${PYTHON_USEDEP}] ) + iglo? ( ~dev-python/iglo-1.2.7[${PYTHON_USEDEP}] ) + ign_sismologia? ( ~dev-python/georss-ign-sismologia-client-0.3[${PYTHON_USEDEP}] ) + ihc? ( ~dev-python/defusedxml-0.7.1[${PYTHON_USEDEP}] ~dev-python/ihcsdk-2.7.6[${PYTHON_USEDEP}] ) + image? ( ~dev-python/pillow-9.2.0[${PYTHON_USEDEP}] ) + imap? ( ~dev-python/aioimaplib-1.0.1[${PYTHON_USEDEP}] ) + incomfort? ( ~dev-python/incomfort-client-0.4.4[${PYTHON_USEDEP}] ) + influxdb? ( ~dev-python/influxdb-5.3.1[${PYTHON_USEDEP}] ~dev-python/influxdb-client-1.24.0[${PYTHON_USEDEP}] ) + inkbird? ( ~dev-python/inkbird-ble-0.5.5[${PYTHON_USEDEP}] ) + insteon? ( ~dev-python/pyinsteon-1.2.0[${PYTHON_USEDEP}] ~dev-python/insteon-frontend-home-assistant-0.2.0[${PYTHON_USEDEP}] ) + intellifire? ( ~dev-python/intellifire4py-2.0.1[${PYTHON_USEDEP}] ) + intesishome? ( ~dev-python/pyintesishome-1.8.0[${PYTHON_USEDEP}] ) + iota? ( ~dev-python/PyOTA-2.0.5[${PYTHON_USEDEP}] ) + iotawatt? ( ~dev-python/iotawattpy-0.1.0[${PYTHON_USEDEP}] ) + iperf3? ( ~dev-python/iperf3-0.1.11[${PYTHON_USEDEP}] ) + ipma? ( ~dev-python/pyipma-3.0.5[${PYTHON_USEDEP}] ) + ipp? ( ~dev-python/pyipp-0.11.0[${PYTHON_USEDEP}] ) + iqvia? ( ~dev-python/numpy-1.23.2[${PYTHON_USEDEP}] ~dev-python/pyiqvia-2022.4.0[${PYTHON_USEDEP}] ) + irish_rail_transport? ( ~dev-python/pyirishrail-0.0.2[${PYTHON_USEDEP}] ) + islamic_prayer_times? ( ~dev-python/prayer-times-calculator-0.0.6[${PYTHON_USEDEP}] ) + iss? ( ~dev-python/pyiss-1.0.1[${PYTHON_USEDEP}] ) + isy994? ( ~dev-python/pyisy-3.0.7[${PYTHON_USEDEP}] ) + itach? ( ~dev-python/pyitachip2ir-0.0.7[${PYTHON_USEDEP}] ) + izone? ( ~dev-python/python-izone-1.2.9[${PYTHON_USEDEP}] ) + jellyfin? ( ~dev-python/jellyfin-apiclient-python-1.8.1[${PYTHON_USEDEP}] ) + jewish_calendar? ( ~dev-python/hdate-0.10.4[${PYTHON_USEDEP}] ) + joaoapps_join? ( ~dev-python/python-join-api-0.0.9[${PYTHON_USEDEP}] ) + juicenet? ( ~dev-python/python-juicenet-1.1.0[${PYTHON_USEDEP}] ) + justnimbus? ( ~dev-python/justnimbus-0.6.0[${PYTHON_USEDEP}] ) + kaiterra? ( ~dev-python/kaiterra-async-client-1.0.0[${PYTHON_USEDEP}] ) + kaleidescape? ( ~dev-python/pykaleidescape-1.0.1[${PYTHON_USEDEP}] ) + keba? ( ~dev-python/keba-kecontact-1.1.0[${PYTHON_USEDEP}] ) + keenetic_ndms2? ( ~dev-python/ndms2-client-0.1.1[${PYTHON_USEDEP}] ) + kef? ( ~dev-python/aiokef-0.2.16[${PYTHON_USEDEP}] ~dev-python/getmac-0.8.2[${PYTHON_USEDEP}] ) + keyboard? ( ~dev-python/PyUserInput-0.1.11[${PYTHON_USEDEP}] ) + keyboard_remote? ( ~dev-python/evdev-1.4.0[${PYTHON_USEDEP}] ~dev-python/aionotify-0.2.0[${PYTHON_USEDEP}] ) + kira? ( ~dev-python/pykira-0.1.1[${PYTHON_USEDEP}] ) + kiwi? ( ~dev-python/kiwiki-client-0.1.1[${PYTHON_USEDEP}] ) + kmtronic? ( ~dev-python/pykmtronic-0.3.0[${PYTHON_USEDEP}] ) + knx? ( ~dev-python/xknx-1.0.2[${PYTHON_USEDEP}] ) + kodi? ( ~dev-python/pykodi-0.2.7[${PYTHON_USEDEP}] ) + konnected? ( ~dev-python/konnected-1.2.0[${PYTHON_USEDEP}] ) + kostal_plenticore? ( ~dev-python/kostal-plenticore-0.2.0[${PYTHON_USEDEP}] ) + kraken? ( ~dev-python/krakenex-2.1.0[${PYTHON_USEDEP}] ~dev-python/pykrakenapi-0.1.8[${PYTHON_USEDEP}] ) + kulersky? ( ~dev-python/pykulersky-0.5.2[${PYTHON_USEDEP}] ) + kwb? ( ~dev-python/pykwb-0.0.8[${PYTHON_USEDEP}] ) + lacrosse? ( ~dev-python/pylacrosse-0.4[${PYTHON_USEDEP}] ) + lacrosse_view? ( ~dev-python/lacrosse-view-0.0.9[${PYTHON_USEDEP}] ) + lametric? ( ~dev-python/demetriek-0.2.4[${PYTHON_USEDEP}] ) + landisgyr_heat_meter? ( ~dev-python/ultraheat-api-0.4.1[${PYTHON_USEDEP}] ) + lastfm? ( ~dev-python/pylast-4.2.1[${PYTHON_USEDEP}] ) + launch_library? ( ~dev-python/pylaunches-1.3.0[${PYTHON_USEDEP}] ) + laundrify? ( ~dev-python/laundrify-aio-1.1.2[${PYTHON_USEDEP}] ) + lcn? ( ~dev-python/pypck-0.7.15[${PYTHON_USEDEP}] ) + led_ble? ( ~dev-python/led-ble-0.10.1[${PYTHON_USEDEP}] ) + lg_netcast? ( ~dev-python/pylgnetcast-0.3.7[${PYTHON_USEDEP}] ) + lg_soundbar? ( ~dev-python/temescal-0.5[${PYTHON_USEDEP}] ) + life360? ( ~dev-python/life360-4.1.1[${PYTHON_USEDEP}] ) + lifx? ( ~dev-python/aiolifx-0.8.2[${PYTHON_USEDEP}] ~dev-python/aiolifx-effects-0.2.2[${PYTHON_USEDEP}] ) + lifx_legacy? ( ~dev-python/liffylights-0.9.4[${PYTHON_USEDEP}] ) + lightwave? ( ~dev-python/lightwave-0.20[${PYTHON_USEDEP}] ) + limitlessled? ( ~dev-python/limitlessled-1.1.3[${PYTHON_USEDEP}] ) + linode? ( ~dev-python/linode-api-4.1.9_beta1[${PYTHON_USEDEP}] ) + linux_battery? ( ~dev-python/batinfo-0.4.2[${PYTHON_USEDEP}] ) + litejet? ( ~dev-python/pylitejet-0.3.0[${PYTHON_USEDEP}] ) + litterrobot? ( ~dev-python/pylitterbot-2022.9.1[${PYTHON_USEDEP}] ) + logi_circle? ( ~dev-python/logi-circle-0.2.3[${PYTHON_USEDEP}] ) + london_underground? ( ~dev-python/london-tube-status-0.5[${PYTHON_USEDEP}] ) + lookin? ( ~dev-python/aiolookin-0.1.1[${PYTHON_USEDEP}] ) + loopenergy? ( ~dev-python/pyloopenergy-0.2.1[${PYTHON_USEDEP}] ) + luci? ( ~dev-python/openwrt-luci-rpc-1.1.11[${PYTHON_USEDEP}] ) + luftdaten? ( ~dev-python/luftdaten-0.7.2[${PYTHON_USEDEP}] ) + lupusec? ( ~dev-python/lupupy-0.0.24[${PYTHON_USEDEP}] ) + lutron? ( ~dev-python/pylutron-0.2.8[${PYTHON_USEDEP}] ) + lutron_caseta? ( ~dev-python/pylutron-caseta-0.13.1[${PYTHON_USEDEP}] ) + lw12wifi? ( ~dev-python/lw12-0.9.2[${PYTHON_USEDEP}] ) + lyft? ( ~dev-python/lyft_rides-0.2[${PYTHON_USEDEP}] ) + lyric? ( ~dev-python/aiolyric-1.0.8[${PYTHON_USEDEP}] ) + magicseaweed? ( ~dev-python/magicseaweed-1.0.3[${PYTHON_USEDEP}] ) + mailgun? ( ~dev-python/pymailgunner-1.4[${PYTHON_USEDEP}] ) + mariadb? ( dev-python/mysqlclient[${PYTHON_USEDEP}] ) + marytts? ( ~dev-python/speak2mary-1.4.0[${PYTHON_USEDEP}] ) + mastodon? ( ~dev-python/Mastodon-py-1.5.1[${PYTHON_USEDEP}] ) + matrix? ( ~dev-python/matrix-client-0.4.0[${PYTHON_USEDEP}] ) + maxcube? ( ~dev-python/maxcube-api-0.4.3[${PYTHON_USEDEP}] ) + mazda? ( ~dev-python/pymazda-0.3.7[${PYTHON_USEDEP}] ) + mcp23017? ( ~dev-python/RPi-GPIO-0.7.1_alpha4[${PYTHON_USEDEP}] ~dev-python/adafruit-circuitpython-mcp230xx-2.2.2[${PYTHON_USEDEP}] ) + meater? ( ~dev-python/meater-python-0.0.8[${PYTHON_USEDEP}] ) + mediaroom? ( ~dev-python/pymediaroom-0.6.5.4[${PYTHON_USEDEP}] ) + media_extractor? ( ~net-misc/youtube-dl-2021.12.17 ) + melcloud? ( ~dev-python/pymelcloud-2.5.6[${PYTHON_USEDEP}] ) + melissa? ( ~dev-python/py-melissa-climate-2.1.4[${PYTHON_USEDEP}] ) + melnor? ( ~dev-python/melnor-bluetooth-0.0.15[${PYTHON_USEDEP}] ) + message_bird? ( ~dev-python/messagebird-1.2.0[${PYTHON_USEDEP}] ) + met? ( ~dev-python/PyMetno-0.9.0[${PYTHON_USEDEP}] ) + meteoalarm? ( ~dev-python/meteoalertapi-0.3.0[${PYTHON_USEDEP}] ) + meteoclimatic? ( ~dev-python/pymeteoclimatic-0.0.6[${PYTHON_USEDEP}] ) + meteo_france? ( ~dev-python/meteofrance-api-1.0.2[${PYTHON_USEDEP}] ) + metoffice? ( ~dev-python/datapoint-0.9.8[${PYTHON_USEDEP}] ) + met_eireann? ( ~dev-python/PyMetEireann-2021.8.0[${PYTHON_USEDEP}] ) + mfi? ( ~dev-python/mficlient-0.3.0[${PYTHON_USEDEP}] ) + mhz19? ( ~dev-python/pmsensor-0.4[${PYTHON_USEDEP}] ) + microsoft? ( ~dev-python/pycsspeechtts-1.0.4[${PYTHON_USEDEP}] ) + mikrotik? ( ~dev-python/librouteros-3.2.0[${PYTHON_USEDEP}] ) + mill? ( ~dev-python/millheater-0.9.0[${PYTHON_USEDEP}] ~dev-python/mill-local-0.1.1[${PYTHON_USEDEP}] ) + minecraft_server? ( ~dev-python/aiodns-3.0.0[${PYTHON_USEDEP}] ~dev-python/getmac-0.8.2[${PYTHON_USEDEP}] ~dev-python/mcstatus-6.0.0[${PYTHON_USEDEP}] ) + minio? ( ~dev-python/minio-5.0.10[${PYTHON_USEDEP}] ) + moat? ( ~dev-python/moat-ble-0.1.1[${PYTHON_USEDEP}] ) + mobile_app? ( ~dev-python/pynacl-1.5.0[${PYTHON_USEDEP}] ) + mochad? ( ~dev-python/pymochad-0.2.0[${PYTHON_USEDEP}] ) + modbus? ( ~dev-python/pymodbus-2.5.3[${PYTHON_USEDEP}] ) + modem_callerid? ( ~dev-python/phone-modem-0.1.1[${PYTHON_USEDEP}] ) + modern_forms? ( ~dev-python/aiomodernforms-0.1.8[${PYTHON_USEDEP}] ) + moehlenhoff_alpha2? ( ~dev-python/moehlenhoff-alpha2-1.2.1[${PYTHON_USEDEP}] ) + monoprice? ( ~dev-python/pymonoprice-0.3[${PYTHON_USEDEP}] ) + mosquitto? ( app-misc/mosquitto ) + motioneye? ( ~dev-python/motioneye-client-0.3.12[${PYTHON_USEDEP}] ) + motion_blinds? ( ~dev-python/motionblinds-0.6.13[${PYTHON_USEDEP}] ) + mpd? ( ~dev-python/python-mpd2-3.0.5[${PYTHON_USEDEP}] ) + mqtt? ( ~dev-python/paho-mqtt-1.6.1[${PYTHON_USEDEP}] ) + msteams? ( ~dev-python/pymsteams-0.1.12[${PYTHON_USEDEP}] ) + mullvad? ( ~dev-python/mullvad-api-1.0.0[${PYTHON_USEDEP}] ) + mutesync? ( ~dev-python/mutesync-0.0.1[${PYTHON_USEDEP}] ) + mvglive? ( ~dev-python/PyMVGLive-1.1.4[${PYTHON_USEDEP}] ) + mychevy? ( ~dev-python/mychevy-2.1.1[${PYTHON_USEDEP}] ) + mycroft? ( ~dev-python/mycroftapi-2.0[${PYTHON_USEDEP}] ) + myq? ( ~dev-python/pymyq-3.1.4[${PYTHON_USEDEP}] ) + mysensors? ( ~dev-python/pymysensors-0.24.0[${PYTHON_USEDEP}] ) + mysql? ( dev-python/mysqlclient[${PYTHON_USEDEP}] ) + mystrom? ( ~dev-python/python-mystrom-1.1.2[${PYTHON_USEDEP}] ) + mythicbeastsdns? ( ~dev-python/mbddns-0.1.2[${PYTHON_USEDEP}] ) + nad? ( ~dev-python/nad-receiver-0.3.0[${PYTHON_USEDEP}] ) + nam? ( ~dev-python/nettigo-air-monitor-1.4.2[${PYTHON_USEDEP}] ) + namecheapdns? ( ~dev-python/defusedxml-0.7.1[${PYTHON_USEDEP}] ) + nanoleaf? ( ~dev-python/aionanoleaf-0.2.0[${PYTHON_USEDEP}] ) + neato? ( ~dev-python/pybotvac-0.0.23[${PYTHON_USEDEP}] ) + nederlandse_spoorwegen? ( ~dev-python/nsapi-3.0.5[${PYTHON_USEDEP}] ) + nello? ( ~dev-python/pynello-2.0.3[${PYTHON_USEDEP}] ) + ness_alarm? ( ~dev-python/nessclient-0.10.0[${PYTHON_USEDEP}] ) + nest? ( ~dev-python/python-nest-4.2.0[${PYTHON_USEDEP}] ~dev-python/google-nest-sdm-2.0.0[${PYTHON_USEDEP}] ) + netatmo? ( ~dev-python/pyatmo-6.2.4[${PYTHON_USEDEP}] ) + netdata? ( ~dev-python/netdata-1.0.1[${PYTHON_USEDEP}] ) + netgear? ( ~dev-python/pynetgear-0.10.8[${PYTHON_USEDEP}] ) + netgear_lte? ( ~dev-python/eternalegypt-0.0.12[${PYTHON_USEDEP}] ) + netio? ( ~dev-python/pynetio-0.1.9.1[${PYTHON_USEDEP}] ) + network? ( ~dev-python/ifaddr-0.1.7[${PYTHON_USEDEP}] ) + neurio_energy? ( ~dev-python/neurio-0.3.1[${PYTHON_USEDEP}] ) + nexia? ( ~dev-python/nexia-2.0.2[${PYTHON_USEDEP}] ) + nextbus? ( ~dev-python/py-nextbusnext-0.1.5[${PYTHON_USEDEP}] ) + nextcloud? ( ~dev-python/nextcloudmonitor-1.1.0[${PYTHON_USEDEP}] ) + nextdns? ( ~dev-python/nextdns-1.1.1[${PYTHON_USEDEP}] ) + nfandroidtv? ( ~dev-python/notifications-android-tv-0.1.5[${PYTHON_USEDEP}] ) + nightscout? ( ~dev-python/py-nightscout-1.2.2[${PYTHON_USEDEP}] ) + niko_home_control? ( ~dev-python/niko-home-control-0.2.1[${PYTHON_USEDEP}] ) + nilu? ( ~dev-python/niluclient-0.1.2[${PYTHON_USEDEP}] ) + nina? ( ~dev-python/PyNINA-0.1.8[${PYTHON_USEDEP}] ) + nissan_leaf? ( ~dev-python/pycarwings2-2.13[${PYTHON_USEDEP}] ) + nmap_tracker? ( ~dev-python/netmap-0.7.0.2[${PYTHON_USEDEP}] ~dev-python/getmac-0.8.2[${PYTHON_USEDEP}] ~dev-python/mac-vendor-lookup-0.1.11[${PYTHON_USEDEP}] ) + nmbs? ( ~dev-python/pyrail-0.0.3[${PYTHON_USEDEP}] ) + noaa_tides? ( ~dev-python/noaa-coops-0.1.8[${PYTHON_USEDEP}] ) + norway_air? ( ~dev-python/PyMetno-0.9.0[${PYTHON_USEDEP}] ) + notify_events? ( ~dev-python/notify-events-1.0.4[${PYTHON_USEDEP}] ) + notion? ( ~dev-python/aionotion-3.0.2[${PYTHON_USEDEP}] ) + nsw_fuel_station? ( ~dev-python/nsw-fuel-api-client-1.1.0[${PYTHON_USEDEP}] ) + nsw_rural_fire_service_feed? ( ~dev-python/aio-geojson-nsw-rfs-incidents-0.4[${PYTHON_USEDEP}] ) + nuheat? ( ~dev-python/nuheat-0.3.0[${PYTHON_USEDEP}] ) + nuki? ( ~dev-python/pynuki-1.5.2[${PYTHON_USEDEP}] ) + numato? ( ~dev-python/numato-gpio-0.10.0[${PYTHON_USEDEP}] ) + nut? ( ~dev-python/pynut2-2.1.2[${PYTHON_USEDEP}] ) + nws? ( ~dev-python/pynws-1.4.1[${PYTHON_USEDEP}] ) + nx584? ( ~dev-python/pynx584-0.5[${PYTHON_USEDEP}] ) + nzbget? ( ~dev-python/pynzbgetapi-0.2.0[${PYTHON_USEDEP}] ) + oasa_telematics? ( ~dev-python/oasatelematics-0.3[${PYTHON_USEDEP}] ) + obihai? ( ~dev-python/pyobihai-1.3.2[${PYTHON_USEDEP}] ) + octoprint? ( ~dev-python/pyoctoprintapi-0.1.8[${PYTHON_USEDEP}] ) + oem? ( ~dev-python/oemthermostat-1.1.1[${PYTHON_USEDEP}] ) + ohmconnect? ( ~dev-python/defusedxml-0.7.1[${PYTHON_USEDEP}] ) + ombi? ( ~dev-python/pyombi-0.1.10[${PYTHON_USEDEP}] ) + omnilogic? ( ~dev-python/omnilogic-0.4.5[${PYTHON_USEDEP}] ) + oncue? ( ~dev-python/aiooncue-0.3.4[${PYTHON_USEDEP}] ) + ondilo_ico? ( ~dev-python/ondilo-0.2.0[${PYTHON_USEDEP}] ) + onewire? ( ~dev-python/pyownet-0.10.0[${PYTHON_USEDEP}] ) + onkyo? ( ~dev-python/onkyo-eiscp-1.2.7[${PYTHON_USEDEP}] ) + onvif? ( ~dev-python/onvif-zeep-async-1.2.1[${PYTHON_USEDEP}] ~dev-python/WSDiscovery-2.0.0[${PYTHON_USEDEP}] ) + openerz? ( ~dev-python/openerz-api-0.1.0[${PYTHON_USEDEP}] ) + openevse? ( ~dev-python/openevsewifi-1.1.0[${PYTHON_USEDEP}] ) + opengarage? ( ~dev-python/open-garage-0.2.0[${PYTHON_USEDEP}] ) + openhome? ( ~dev-python/openhomedevice-2.0.2[${PYTHON_USEDEP}] ) + opensensemap? ( ~dev-python/opensensemap-api-0.2.0[${PYTHON_USEDEP}] ) + opentherm_gw? ( ~dev-python/pyotgw-2.0.3[${PYTHON_USEDEP}] ) + openuv? ( ~dev-python/pyopenuv-2022.4.0[${PYTHON_USEDEP}] ) + openweathermap? ( ~dev-python/pyowm-3.2.0[${PYTHON_USEDEP}] ) + open_meteo? ( ~dev-python/open-meteo-0.2.1[${PYTHON_USEDEP}] ) + opnsense? ( ~dev-python/pyopnsense-0.2.0[${PYTHON_USEDEP}] ) + opple? ( ~dev-python/pyoppleio-1.0.5[${PYTHON_USEDEP}] ) + orangepi_gpio? ( ~dev-python/OPi-GPIO-0.5.2[${PYTHON_USEDEP}] ) + oru? ( ~dev-python/oru-0.1.11[${PYTHON_USEDEP}] ) + orvibo? ( ~dev-python/orvibo-1.1.1[${PYTHON_USEDEP}] ) + osramlightify? ( ~dev-python/lightify-1.0.7.3[${PYTHON_USEDEP}] ) + otp? ( ~dev-python/pyotp-2.6.0[${PYTHON_USEDEP}] ) + overkiz? ( ~dev-python/pyoverkiz-1.5.0[${PYTHON_USEDEP}] ) + ovo_energy? ( ~dev-python/ovoenergy-1.2.0[${PYTHON_USEDEP}] ) + owntracks? ( ~dev-python/pynacl-1.5.0[${PYTHON_USEDEP}] ) + ozw? ( ~dev-python/python-openzwave-mqtt-1.4.0[${PYTHON_USEDEP}] ) + p1_monitor? ( ~dev-python/p1monitor-2.1.0[${PYTHON_USEDEP}] ) + panasonic_bluray? ( ~dev-python/panacotta-0.1[${PYTHON_USEDEP}] ) + panasonic_viera? ( ~dev-python/panasonic-viera-0.3.6[${PYTHON_USEDEP}] ) + pandora? ( ~dev-python/pexpect-4.6.0[${PYTHON_USEDEP}] ) + pcal9535a? ( ~dev-python/pcal9535a-0.7[${PYTHON_USEDEP}] ) + peco? ( ~dev-python/peco-0.0.29[${PYTHON_USEDEP}] ) + pencom? ( ~dev-python/pencompy-0.0.3[${PYTHON_USEDEP}] ) + philips_js? ( ~dev-python/ha-philipsjs-2.9.0[${PYTHON_USEDEP}] ) + pi4ioe5v9xxxx? ( ~dev-python/pi4ioe5v9xxxx-0.0.2[${PYTHON_USEDEP}] ) + picnic? ( ~dev-python/python-picnic-api-1.1.0[${PYTHON_USEDEP}] ) + piglow? ( ~dev-python/piglow-1.2.4[${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.7.0[${PYTHON_USEDEP}] ) + pjlink? ( ~dev-python/pypjlink2-1.2.1[${PYTHON_USEDEP}] ) + plaato? ( ~dev-python/pyplaato-0.0.18[${PYTHON_USEDEP}] ) + plex? ( ~dev-python/PlexAPI-4.13.0[${PYTHON_USEDEP}] ~dev-python/plexauth-0.0.6[${PYTHON_USEDEP}] ~dev-python/plexwebsocket-0.0.13[${PYTHON_USEDEP}] ) + plugwise? ( ~dev-python/plugwise-0.18.7[${PYTHON_USEDEP}] ) + plum_lightpad? ( ~dev-python/plumlightpad-0.0.11[${PYTHON_USEDEP}] ) + pocketcasts? ( ~dev-python/pycketcasts-1.0.1[${PYTHON_USEDEP}] ) + point? ( ~dev-python/pypoint-2.3.0[${PYTHON_USEDEP}] ) + poolsense? ( ~dev-python/poolsense-0.0.8[${PYTHON_USEDEP}] ) + powerwall? ( ~dev-python/tesla-powerwall-0.3.18[${PYTHON_USEDEP}] ) + profiler? ( ~dev-python/pyprof2calltree-1.4.5[${PYTHON_USEDEP}] ~dev-python/guppy3-3.1.2[${PYTHON_USEDEP}] ~dev-python/objgraph-3.5.0[${PYTHON_USEDEP}] ) + progettihwsw? ( ~dev-python/ProgettiHWSW-0.1.1[${PYTHON_USEDEP}] ) + proliphix? ( ~dev-python/proliphix-0.4.1[${PYTHON_USEDEP}] ) + prometheus? ( ~dev-python/prometheus_client-0.7.1[${PYTHON_USEDEP}] ) + prosegur? ( ~dev-python/pyprosegur-0.0.5[${PYTHON_USEDEP}] ) + proxmoxve? ( ~dev-python/proxmoxer-1.3.1[${PYTHON_USEDEP}] ) + proxy? ( ~dev-python/pillow-9.2.0[${PYTHON_USEDEP}] ) + prusalink? ( ~dev-python/pyprusalink-1.0.1[${PYTHON_USEDEP}] ) + ps4? ( ~dev-python/pyps4-2ndscreen-1.3.1[${PYTHON_USEDEP}] ) + pulseaudio_loopback? ( ~dev-python/pulsectl-20.2.4[${PYTHON_USEDEP}] ) + pure_energie? ( ~dev-python/gridnet-4.0.0[${PYTHON_USEDEP}] ) + pushbullet? ( ~dev-python/pushbullet-py-0.11.0[${PYTHON_USEDEP}] ) + pushover? ( ~dev-python/pushover_complete-1.1.1[${PYTHON_USEDEP}] ) + pvoutput? ( ~dev-python/pvo-0.2.2[${PYTHON_USEDEP}] ) + pvpc_hourly_pricing? ( ~dev-python/aiopvpc-3.0.0[${PYTHON_USEDEP}] ) + python_script? ( ~dev-python/RestrictedPython-5.2[${PYTHON_USEDEP}] ) + qbittorrent? ( ~dev-python/python-qbittorrent-0.4.2[${PYTHON_USEDEP}] ) + qingping? ( ~dev-python/qingping-ble-0.7.0[${PYTHON_USEDEP}] ) + qld_bushfire? ( ~dev-python/georss-qld-bushfire-alert-client-0.5[${PYTHON_USEDEP}] ) + qnap? ( ~dev-python/qnapstats-0.4.0[${PYTHON_USEDEP}] ) + qnap_qsw? ( ~dev-python/aioqsw-0.2.2[${PYTHON_USEDEP}] ) + qrcode? ( ~dev-python/pillow-9.2.0[${PYTHON_USEDEP}] ~dev-python/pyzbar-0.1.7[${PYTHON_USEDEP}] ) + quantum_gateway? ( ~dev-python/quantum-gateway-0.0.8[${PYTHON_USEDEP}] ) + qvr_pro? ( ~dev-python/pyqvrpro-0.52[${PYTHON_USEDEP}] ) + qwikswitch? ( ~dev-python/pyqwikswitch-0.93[${PYTHON_USEDEP}] ) + rachio? ( ~dev-python/RachioPy-1.0.3[${PYTHON_USEDEP}] ) + radiotherm? ( ~dev-python/radiotherm-2.1.0[${PYTHON_USEDEP}] ) + radio_browser? ( ~dev-python/radios-0.1.1[${PYTHON_USEDEP}] ) + rainbird? ( ~dev-python/pyrainbird-0.4.3[${PYTHON_USEDEP}] ) + raincloud? ( ~dev-python/raincloudy-0.0.7[${PYTHON_USEDEP}] ) + rainforest_eagle? ( ~dev-python/aioeagle-1.1.0[${PYTHON_USEDEP}] ~dev-python/eagle100-0.1.1[${PYTHON_USEDEP}] ) + rainmachine? ( ~dev-python/regenmaschine-2022.9.1[${PYTHON_USEDEP}] ) + raspihats? ( ~dev-python/raspihats-2.2.3[${PYTHON_USEDEP}] ~dev-python/smbus-cffi-0.5.1[${PYTHON_USEDEP}] ) + raspyrfm? ( ~dev-python/raspyrfm-client-1.2.8[${PYTHON_USEDEP}] ) + rdw? ( ~dev-python/vehicle-0.4.0[${PYTHON_USEDEP}] ) + recollect_waste? ( ~dev-python/aiorecollect-1.0.8[${PYTHON_USEDEP}] ) + recorder? ( ~dev-python/sqlalchemy-1.4.40[${PYTHON_USEDEP}] ~dev-python/fnvhash-0.1.0[${PYTHON_USEDEP}] ) + recswitch? ( ~dev-python/pyrecswitch-1.0.2[${PYTHON_USEDEP}] ) + reddit? ( ~dev-python/praw-7.5.0[${PYTHON_USEDEP}] ) + rejseplanen? ( ~dev-python/rjpl-0.3.6[${PYTHON_USEDEP}] ) + remember_the_milk? ( ~dev-python/RtmAPI-0.7.2[${PYTHON_USEDEP}] ~dev-python/httplib2-0.20.4[${PYTHON_USEDEP}] ) + remote_rpi_gpio? ( ~dev-python/gpiozero-1.6.2[${PYTHON_USEDEP}] ~dev-python/pigpio-1.78[${PYTHON_USEDEP}] ) + renault? ( ~dev-python/renault-api-0.1.11[${PYTHON_USEDEP}] ) + repetier? ( ~dev-python/pyrepetierng-0.1.0[${PYTHON_USEDEP}] ) + rest? ( ~dev-python/jsonpath-0.82[${PYTHON_USEDEP}] ~dev-python/xmltodict-0.13.0[${PYTHON_USEDEP}] ) + rflink? ( ~dev-python/rflink-0.0.63[${PYTHON_USEDEP}] ) + rfxtrx? ( ~dev-python/pyRFXtrx-0.30.0[${PYTHON_USEDEP}] ) + ridwell? ( ~dev-python/aioridwell-2022.3.0[${PYTHON_USEDEP}] ) + ring? ( ~dev-python/ring-doorbell-0.7.2[${PYTHON_USEDEP}] ) + ripple? ( ~dev-python/python-ripple-api-0.0.3[${PYTHON_USEDEP}] ) + risco? ( ~dev-python/pyrisco-0.5.5[${PYTHON_USEDEP}] ) + rituals_perfume_genie? ( ~dev-python/pyrituals-0.0.6[${PYTHON_USEDEP}] ) + rmvtransport? ( ~dev-python/PyRMVtransport-0.3.3[${PYTHON_USEDEP}] ) + rocketchat? ( ~dev-python/rocketchat-API-0.6.1[${PYTHON_USEDEP}] ) + roku? ( ~dev-python/rokuecp-0.17.0[${PYTHON_USEDEP}] ) + roomba? ( ~dev-python/roombapy-1.6.5[${PYTHON_USEDEP}] ) + roon? ( ~dev-python/roonapi-0.1.1[${PYTHON_USEDEP}] ) + route53? ( ~dev-python/boto3-1.20.24[${PYTHON_USEDEP}] ) + rova? ( ~dev-python/rova-0.3.0[${PYTHON_USEDEP}] ) + rpi_gpio? ( ~dev-python/RPi-GPIO-0.7.1_alpha4[${PYTHON_USEDEP}] ) + rpi_gpio_pwm? ( ~dev-python/pwmled-1.6.10[${PYTHON_USEDEP}] ) + rpi_pfio? ( ~dev-python/pifacecommon-4.2.2[${PYTHON_USEDEP}] ~dev-python/pifacedigitalio-3.0.5[${PYTHON_USEDEP}] ) + rpi_power? ( ~dev-python/rpi-bad-power-0.1.0[${PYTHON_USEDEP}] ) + rpi_rf? ( ~dev-python/rpi-rf-0.9.7[${PYTHON_USEDEP}] ~dev-python/RPi-GPIO-0.7.1_alpha4[${PYTHON_USEDEP}] ) + rtsp_to_webrtc? ( ~dev-python/rtsp-to-webrtc-0.5.1[${PYTHON_USEDEP}] ) + ruckus_unleashed? ( ~dev-python/pyruckus-0.16[${PYTHON_USEDEP}] ) + russound_rio? ( ~dev-python/russound-rio-0.1.8[${PYTHON_USEDEP}] ) + russound_rnet? ( ~dev-python/russound-0.1.9[${PYTHON_USEDEP}] ) + sabnzbd? ( ~dev-python/pysabnzbd-1.1.1[${PYTHON_USEDEP}] ) + saj? ( ~dev-python/pysaj-0.0.16[${PYTHON_USEDEP}] ) + samsungtv? ( ~dev-python/getmac-0.8.2[${PYTHON_USEDEP}] ~dev-python/samsungctl-0.7.1[${PYTHON_USEDEP}] ~dev-python/samsungtvws-2.5.0[${PYTHON_USEDEP}] ~dev-python/wakeonlan-2.1.0[${PYTHON_USEDEP}] ~dev-python/async-upnp-client-0.31.2[${PYTHON_USEDEP}] ) + satel_integra? ( ~dev-python/satel-integra-0.3.7[${PYTHON_USEDEP}] ) + schluter? ( ~dev-python/py-schluter-0.1.7[${PYTHON_USEDEP}] ) + scrape? ( ~dev-python/beautifulsoup4-4.11.1[${PYTHON_USEDEP}] ~dev-python/lxml-4.9.1[${PYTHON_USEDEP}] ) + screenlogic? ( ~dev-python/screenlogicpy-0.5.4[${PYTHON_USEDEP}] ) + scsgate? ( ~dev-python/scsgate-0.1.0[${PYTHON_USEDEP}] ) + season? ( ~dev-python/ephem-4.1.2[${PYTHON_USEDEP}] ) + sendgrid? ( ~dev-python/sendgrid-6.8.2[${PYTHON_USEDEP}] ) + sense? ( ~dev-python/sense-energy-0.10.4[${PYTHON_USEDEP}] ) + sensehat? ( ~dev-python/python-sense-hat-2.2.0[${PYTHON_USEDEP}] ) + senseme? ( ~dev-python/aiosenseme-0.6.1[${PYTHON_USEDEP}] ) + sensibo? ( ~dev-python/pysensibo-1.0.20[${PYTHON_USEDEP}] ) + sensorpro? ( ~dev-python/sensorpro-ble-0.5.0[${PYTHON_USEDEP}] ) + sensorpush? ( ~dev-python/sensorpush-ble-1.5.2[${PYTHON_USEDEP}] ) + sentry? ( ~dev-python/sentry-sdk-1.9.5[${PYTHON_USEDEP}] ) + senz? ( ~dev-python/aiosenz-1.0.0[${PYTHON_USEDEP}] ) + serial? ( ~dev-python/pyserial-asyncio-0.6[${PYTHON_USEDEP}] ) + serial_pm? ( ~dev-python/pmsensor-0.4[${PYTHON_USEDEP}] ) + sesame? ( ~dev-python/pysesame2-1.0.1[${PYTHON_USEDEP}] ) + seventeentrack? ( ~dev-python/py17track-2021.12.2[${PYTHON_USEDEP}] ) + seven_segments? ( ~dev-python/pillow-9.2.0[${PYTHON_USEDEP}] ) + sharkiq? ( ~dev-python/sharkiq-0.0.1[${PYTHON_USEDEP}] ) + shelly? ( ~dev-python/aioshelly-2.0.1[${PYTHON_USEDEP}] ) + shiftr? ( ~dev-python/paho-mqtt-1.6.1[${PYTHON_USEDEP}] ) + shodan? ( ~dev-python/shodan-1.28.0[${PYTHON_USEDEP}] ) + sht31? ( ~dev-python/Adafruit-GPIO-1.0.3[${PYTHON_USEDEP}] ~dev-python/Adafruit-SHT31-1.0.2[${PYTHON_USEDEP}] ) + sia? ( ~dev-python/pysiaalarm-3.0.2[${PYTHON_USEDEP}] ) + sighthound? ( ~dev-python/pillow-9.2.0[${PYTHON_USEDEP}] ~dev-python/simplehound-0.3[${PYTHON_USEDEP}] ) + signal_messenger? ( ~dev-python/pysignalclirestapi-0.3.18[${PYTHON_USEDEP}] ) + simplepush? ( ~dev-python/simplepush-1.1.4[${PYTHON_USEDEP}] ) + simplisafe? ( ~dev-python/simplisafe-python-2022.7.1[${PYTHON_USEDEP}] ) + sinch? ( ~dev-python/clx-sdk-xms-1.0.0[${PYTHON_USEDEP}] ) + sisyphus? ( ~dev-python/sisyphus-control-3.1.2[${PYTHON_USEDEP}] ) + skybeacon? ( ~dev-python/pygatt-4.0.5[${PYTHON_USEDEP}] ) + skybell? ( ~dev-python/aioskybell-22.7.0[${PYTHON_USEDEP}] ) + sky_hub? ( ~dev-python/pyskyqhub-0.1.4[${PYTHON_USEDEP}] ) + slack? ( ~dev-python/slackclient-2.5.0[${PYTHON_USEDEP}] ) + sleepiq? ( ~dev-python/asyncsleepiq-1.2.3[${PYTHON_USEDEP}] ) + slide? ( ~dev-python/goslide-api-0.5.1[${PYTHON_USEDEP}] ) + slimproto? ( ~dev-python/aioslimproto-2.1.1[${PYTHON_USEDEP}] ) + sma? ( ~dev-python/pysma-0.6.12[${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.3[${PYTHON_USEDEP}] ~dev-python/pysmartthings-0.7.6[${PYTHON_USEDEP}] ) + smarttub? ( ~dev-python/python-smarttub-0.0.33[${PYTHON_USEDEP}] ) + smarty? ( ~dev-python/pysmarty-0.8[${PYTHON_USEDEP}] ) + smart_meter_texas? ( ~dev-python/smart-meter-texas-0.4.7[${PYTHON_USEDEP}] ) + smhi? ( ~dev-python/smhi-pkg-1.0.15[${PYTHON_USEDEP}] ) + sms? ( ~dev-python/python-gammu-3.2.4[${PYTHON_USEDEP}] ) + snapcast? ( ~dev-python/snapcast-2.1.3[${PYTHON_USEDEP}] ) + snmp? ( ~dev-python/pysnmplib-5.0.15[${PYTHON_USEDEP}] ) + socat? ( net-misc/socat ) + sochain? ( ~dev-python/python-sochain-api-0.0.2[${PYTHON_USEDEP}] ) + solaredge? ( ~dev-python/solaredge-0.0.2[${PYTHON_USEDEP}] ~dev-python/stringcase-1.2.0[${PYTHON_USEDEP}] ) + solaredge_local? ( ~dev-python/solaredge-local-0.2.0[${PYTHON_USEDEP}] ) + solarlog? ( ~dev-python/sunwatcher-0.2.1[${PYTHON_USEDEP}] ) + solax? ( ~dev-python/solax-0.2.9[${PYTHON_USEDEP}] ) + soma? ( ~dev-python/pysoma-0.0.10[${PYTHON_USEDEP}] ) + somfy? ( ~dev-python/pymfy-0.11.0[${PYTHON_USEDEP}] ) + somfy_mylink? ( ~dev-python/somfy-mylink-synergy-1.0.6[${PYTHON_USEDEP}] ) + sonarr? ( ~dev-python/aiopyarr-22.7.0[${PYTHON_USEDEP}] ) + songpal? ( ~dev-python/python-songpal-0.15.1[${PYTHON_USEDEP}] ) + sonos? ( ~dev-python/soco-0.28.0[${PYTHON_USEDEP}] ) + sony_projector? ( ~dev-python/pySDCP-1[${PYTHON_USEDEP}] ) + soundtouch? ( ~dev-python/libsoundtouch-0.8.0[${PYTHON_USEDEP}] ) + spc? ( ~dev-python/pyspcwebgw-0.4.0[${PYTHON_USEDEP}] ) + speedtestdotnet? ( ~net-analyzer/speedtest-cli-2.1.3[${PYTHON_USEDEP}] ) + spider? ( ~dev-python/spiderpy-1.6.1[${PYTHON_USEDEP}] ) + splunk? ( ~dev-python/hass-splunk-0.1.1[${PYTHON_USEDEP}] ) + spotify? ( ~dev-python/spotipy-2.20.0[${PYTHON_USEDEP}] ) + sql? ( ~dev-python/sqlalchemy-1.4.40[${PYTHON_USEDEP}] ) + squeezebox? ( ~dev-python/pysqueezebox-0.6.0[${PYTHON_USEDEP}] ) + srp_energy? ( ~dev-python/srpenergy-1.3.6[${PYTHON_USEDEP}] ) + ssdp? ( ~dev-python/async-upnp-client-0.31.2[${PYTHON_USEDEP}] ) + ssl? ( dev-libs/openssl app-crypt/certbot net-proxy/haproxy ) + starline? ( ~dev-python/starline-0.1.5[${PYTHON_USEDEP}] ) + starlingbank? ( ~dev-python/starlingbank-3.2[${PYTHON_USEDEP}] ) + startca? ( ~dev-python/xmltodict-0.13.0[${PYTHON_USEDEP}] ) + statsd? ( ~dev-python/statsd-3.2.1[${PYTHON_USEDEP}] ) + steamist? ( ~dev-python/aiosteamist-0.3.2[${PYTHON_USEDEP}] ~dev-python/discovery30303-0.2.1[${PYTHON_USEDEP}] ) + steam_online? ( ~dev-python/steamodd-4.21[${PYTHON_USEDEP}] ) + stiebel_eltron? ( ~dev-python/pystiebeleltron-0.0.1[${PYTHON_USEDEP}] ) + stookalert? ( ~dev-python/stookalert-0.1.4[${PYTHON_USEDEP}] ) + stream? ( ~dev-python/PyTurboJPEG-1.6.7[${PYTHON_USEDEP}] ~dev-python/ha-av-10.0.0_beta4 ) + streamlabswater? ( ~dev-python/streamlabswater-1.0.1[${PYTHON_USEDEP}] ) + subaru? ( ~dev-python/subarulink-0.5.0[${PYTHON_USEDEP}] ) + suez_water? ( ~dev-python/pysuez-0.1.19[${PYTHON_USEDEP}] ) + supla? ( ~dev-python/asyncpysupla-0.0.5[${PYTHON_USEDEP}] ) + surepetcare? ( ~dev-python/surepy-0.7.2[${PYTHON_USEDEP}] ) + swiss_hydrological_data? ( ~dev-python/swisshydrodata-0.1.0[${PYTHON_USEDEP}] ) + swiss_public_transport? ( ~dev-python/python-opendata-transport-0.3.0[${PYTHON_USEDEP}] ) + switchbot? ( ~dev-python/PySwitchbot-0.19.10[${PYTHON_USEDEP}] ) + switcher_kis? ( ~dev-python/aioswitcher-2.0.6[${PYTHON_USEDEP}] ) + switchmate? ( ~dev-python/PySwitchmate-0.5.1[${PYTHON_USEDEP}] ) + syncthing? ( ~dev-python/aiosyncthing-0.5.1[${PYTHON_USEDEP}] ) + syncthru? ( ~dev-python/PySyncThru-0.7.10[${PYTHON_USEDEP}] ~dev-python/url-normalize-1.4.3[${PYTHON_USEDEP}] ) + synology_dsm? ( ~dev-python/py-synologydsm-api-1.0.8[${PYTHON_USEDEP}] ) + synology_srm? ( ~dev-python/synology-srm-0.2.0[${PYTHON_USEDEP}] ) + systemmonitor? ( ~dev-python/psutil-5.9.1[${PYTHON_USEDEP}] ) + system_bridge? ( ~dev-python/systembridgeconnector-3.4.4[${PYTHON_USEDEP}] ) + tado? ( ~dev-python/python-tado-0.12.0[${PYTHON_USEDEP}] ) + tahoma? ( ~dev-python/tahoma-api-0.0.16[${PYTHON_USEDEP}] ) + tailscale? ( ~dev-python/tailscale-0.2.0[${PYTHON_USEDEP}] ) + tankerkoenig? ( ~dev-python/pytankerkoenig-0.0.6[${PYTHON_USEDEP}] ) + tank_utility? ( ~dev-python/tank-utility-1.4.1[${PYTHON_USEDEP}] ) + tapsaff? ( ~dev-python/tapsaff-0.2.1[${PYTHON_USEDEP}] ) + tasmota? ( ~dev-python/HATasmota-0.6.0[${PYTHON_USEDEP}] ) + tautulli? ( ~dev-python/pytautulli-21.11.0[${PYTHON_USEDEP}] ) + ted5000? ( ~dev-python/xmltodict-0.13.0[${PYTHON_USEDEP}] ) + telegram_bot? ( ~dev-python/python-telegram-bot-13.1[${PYTHON_USEDEP}] ~dev-python/PySocks-1.7.1[${PYTHON_USEDEP}] ) + tellduslive? ( ~dev-python/tellduslive-0.10.11[${PYTHON_USEDEP}] ) + tellstick? ( ~dev-python/tellcore-net-0.4[${PYTHON_USEDEP}] ~dev-python/tellcore-py-1.1.2[${PYTHON_USEDEP}] ) + temper? ( ~dev-python/temperusb-1.5.3[${PYTHON_USEDEP}] ) + tesla? ( ~dev-python/teslajsonpy-0.18.3[${PYTHON_USEDEP}] ) + tesla_wall_connector? ( ~dev-python/tesla-wall-connector-1.0.2[${PYTHON_USEDEP}] ) + tfiac? ( ~dev-python/pytfiac-0.4[${PYTHON_USEDEP}] ) + thermobeacon? ( ~dev-python/thermobeacon-ble-0.3.2[${PYTHON_USEDEP}] ) + thermopro? ( ~dev-python/thermopro-ble-0.4.3[${PYTHON_USEDEP}] ) + thermoworks_smoke? ( ~dev-python/stringcase-1.2.0[${PYTHON_USEDEP}] ~dev-python/thermoworks-smoke-0.1.8[${PYTHON_USEDEP}] ) + thingspeak? ( ~dev-python/thingspeak-1.0.0[${PYTHON_USEDEP}] ) + thinkingcleaner? ( ~dev-python/pythinkingcleaner-0.0.3[${PYTHON_USEDEP}] ) + tibber? ( ~dev-python/pyTibber-0.24.0[${PYTHON_USEDEP}] ) + tikteck? ( ~dev-python/tikteck-0.4[${PYTHON_USEDEP}] ) + tile? ( ~dev-python/pytile-2022.2.0[${PYTHON_USEDEP}] ) + tmb? ( ~dev-python/tmb-0.0.4[${PYTHON_USEDEP}] ) + todoist? ( ~dev-python/todoist-python-8.0.0[${PYTHON_USEDEP}] ) + tof? ( ~dev-python/VL53L1X2-0.1.5[${PYTHON_USEDEP}] ) + tolo? ( ~dev-python/tololib-0.1.0_beta3[${PYTHON_USEDEP}] ) + tomorrowio? ( ~dev-python/pytomorrowio-0.3.4[${PYTHON_USEDEP}] ) + toon? ( ~dev-python/toonapi-0.2.1[${PYTHON_USEDEP}] ) + totalconnect? ( ~dev-python/total-connect-client-2022.5[${PYTHON_USEDEP}] ) + touchline? ( ~dev-python/pytouchline-0.7[${PYTHON_USEDEP}] ) + tplink? ( ~dev-python/python-kasa-0.5.0[${PYTHON_USEDEP}] ) + tplink_lte? ( ~dev-python/tp-connected-0.0.4[${PYTHON_USEDEP}] ) + traccar? ( ~dev-python/pytraccar-1.0.0[${PYTHON_USEDEP}] ~dev-python/stringcase-1.2.0[${PYTHON_USEDEP}] ) + trackr? ( ~dev-python/pytrackr-0.0.5[${PYTHON_USEDEP}] ) + tractive? ( ~dev-python/aiotractive-0.5.4[${PYTHON_USEDEP}] ) + tradfri? ( ~dev-python/pytradfri-9.0.0[${PYTHON_USEDEP}] ) + trafikverket_ferry? ( ~dev-python/pytrafikverket-0.2.0.1[${PYTHON_USEDEP}] ) + trafikverket_train? ( ~dev-python/pytrafikverket-0.2.0.1[${PYTHON_USEDEP}] ) + trafikverket_weatherstation? ( ~dev-python/pytrafikverket-0.2.0.1[${PYTHON_USEDEP}] ) + transmission? ( ~dev-python/transmissionrpc-0.11[${PYTHON_USEDEP}] ) + transport_nsw? ( ~dev-python/PyTransportNSW-0.1.1[${PYTHON_USEDEP}] ) + travisci? ( ~dev-python/TravisPy-0.3.5[${PYTHON_USEDEP}] ) + trend? ( ~dev-python/numpy-1.23.2[${PYTHON_USEDEP}] ) + tts? ( ~media-libs/mutagen-1.45.1 ) + tuya? ( ~dev-python/tuya-iot-py-sdk-0.6.6[${PYTHON_USEDEP}] ) + twentemilieu? ( ~dev-python/twentemilieu-0.6.1[${PYTHON_USEDEP}] ) + twilio? ( ~dev-python/twilio-6.32.0[${PYTHON_USEDEP}] ) + twinkly? ( ~dev-python/ttls-1.4.3[${PYTHON_USEDEP}] ) + twitch? ( ~dev-python/twitchAPI-2.5.2[${PYTHON_USEDEP}] ) + twitter? ( ~dev-python/TwitterAPI-2.7.12[${PYTHON_USEDEP}] ) + ubus? ( ~dev-python/openwrt-ubus-rpc-0.0.2[${PYTHON_USEDEP}] ) + ukraine_alarm? ( ~dev-python/uasiren-0.0.1[${PYTHON_USEDEP}] ) + unifi? ( ~dev-python/aiounifi-34[${PYTHON_USEDEP}] ) + unifiled? ( ~dev-python/unifiled-0.11[${PYTHON_USEDEP}] ) + unifiprotect? ( ~dev-python/pyunifiprotect-4.2.0[${PYTHON_USEDEP}] ~dev-python/unifi-discovery-1.1.6[${PYTHON_USEDEP}] ) + unifi_direct? ( ~dev-python/pexpect-4.6.0[${PYTHON_USEDEP}] ) + upb? ( ~dev-python/upb-lib-0.4.12[${PYTHON_USEDEP}] ) + upcloud? ( ~dev-python/upcloud-api-2.0.0[${PYTHON_USEDEP}] ) + upc_connect? ( ~dev-python/connect-box-0.2.8[${PYTHON_USEDEP}] ) + updater? ( ~dev-python/distro-1.5.0[${PYTHON_USEDEP}] ) + upnp? ( ~dev-python/async-upnp-client-0.31.2[${PYTHON_USEDEP}] ~dev-python/getmac-0.8.2[${PYTHON_USEDEP}] ) + uptimerobot? ( ~dev-python/pyuptimerobot-22.2.0[${PYTHON_USEDEP}] ) + usb? ( ~dev-python/pyudev-0.23.2[${PYTHON_USEDEP}] ~dev-python/pyserial-3.5[${PYTHON_USEDEP}] ) + uscis? ( ~dev-python/uscisstatus-0.1.1[${PYTHON_USEDEP}] ) + usgs_earthquakes_feed? ( ~dev-python/aio-geojson-usgs-earthquakes-0.1[${PYTHON_USEDEP}] ) + utility_meter? ( ~dev-python/croniter-1.0.6[${PYTHON_USEDEP}] ) + uvc? ( ~dev-python/uvcclient-0.11.0[${PYTHON_USEDEP}] ) + vallox? ( ~dev-python/vallox-websocket-api-2.12.0[${PYTHON_USEDEP}] ) + vasttrafik? ( ~dev-python/vtjp-0.1.14[${PYTHON_USEDEP}] ) + velbus? ( ~dev-python/velbus-aio-2022.9.1[${PYTHON_USEDEP}] ) + velux? ( ~dev-python/pyvlx-0.2.20[${PYTHON_USEDEP}] ) + venstar? ( ~dev-python/venstarcolortouch-0.18[${PYTHON_USEDEP}] ) + vera? ( ~dev-python/pyvera-0.3.13[${PYTHON_USEDEP}] ) + verisure? ( ~dev-python/vsure-1.8.1[${PYTHON_USEDEP}] ) + versasense? ( ~dev-python/pyversasense-0.0.6[${PYTHON_USEDEP}] ) + version? ( ~dev-python/pyhaversion-22.8.0[${PYTHON_USEDEP}] ) + vesync? ( ~dev-python/pyvesync-2.0.3[${PYTHON_USEDEP}] ) + vicare? ( ~dev-python/PyViCare-2.17.0[${PYTHON_USEDEP}] ) + vilfo? ( ~dev-python/vilfo-api-client-0.3.2[${PYTHON_USEDEP}] ) + vivotek? ( ~dev-python/libpyvivotek-0.4.0[${PYTHON_USEDEP}] ) + vizio? ( ~dev-python/pyvizio-0.1.57[${PYTHON_USEDEP}] ) + vlc? ( ~dev-python/python-vlc-1.1.2[${PYTHON_USEDEP}] ) + vlc_telnet? ( ~dev-python/aiovlc-0.1.0[${PYTHON_USEDEP}] ) + volkszaehler? ( ~dev-python/volkszaehler-0.3.2[${PYTHON_USEDEP}] ) + volumio? ( ~dev-python/pyvolumio-0.1.5[${PYTHON_USEDEP}] ) + volvooncall? ( ~dev-python/volvooncall-0.10.0[${PYTHON_USEDEP}] ) + vulcan? ( ~dev-python/vulcan-api-2.1.1[${PYTHON_USEDEP}] ) + vultr? ( ~dev-python/vultr-0.1.2[${PYTHON_USEDEP}] ) + w800rf32? ( ~dev-python/pyW800rf32-0.1[${PYTHON_USEDEP}] ) + wake_on_lan? ( ~dev-python/wakeonlan-2.1.0[${PYTHON_USEDEP}] ) + wallbox? ( ~dev-python/wallbox-0.4.9[${PYTHON_USEDEP}] ) + waqi? ( ~dev-python/waqiasync-1.0.0[${PYTHON_USEDEP}] ) + waterfurnace? ( ~dev-python/waterfurnace-1.1.0[${PYTHON_USEDEP}] ) + watson_iot? ( ~dev-python/ibmiotf-0.3.4[${PYTHON_USEDEP}] ) + watson_tts? ( ~dev-python/ibm-watson-5.2.2[${PYTHON_USEDEP}] ) + watttime? ( ~dev-python/aiowatttime-0.1.1[${PYTHON_USEDEP}] ) + waze_travel_time? ( ~dev-python/WazeRouteCalculator-0.14[${PYTHON_USEDEP}] ) + webostv? ( ~dev-python/aiowebostv-0.2.0[${PYTHON_USEDEP}] ) + wemo? ( ~dev-python/pywemo-0.9.1[${PYTHON_USEDEP}] ) + whirlpool? ( ~dev-python/whirlpool-sixth-sense-0.17.0[${PYTHON_USEDEP}] ) + whois? ( ~dev-python/whois-0.9.16[${PYTHON_USEDEP}] ) + wiffi? ( ~dev-python/wiffi-1.1.0[${PYTHON_USEDEP}] ) + wilight? ( ~dev-python/pywilight-0.0.74[${PYTHON_USEDEP}] ) + wink? ( ~dev-python/pubnubsub-handler-1.0.9[${PYTHON_USEDEP}] ~dev-python/python-wink-1.10.5[${PYTHON_USEDEP}] ) + wirelesstag? ( ~dev-python/wirelesstagpy-0.8.1[${PYTHON_USEDEP}] ) + withings? ( ~dev-python/withings-api-2.4.0[${PYTHON_USEDEP}] ) + wiz? ( ~dev-python/pywizlight-0.5.14[${PYTHON_USEDEP}] ) + wled? ( ~dev-python/wled-0.14.1[${PYTHON_USEDEP}] ) + wolflink? ( ~dev-python/wolf_smartset-0.1.11[${PYTHON_USEDEP}] ) + workday? ( ~dev-python/holidays-0.14.2[${PYTHON_USEDEP}] ) + ws66i? ( ~dev-python/pyws66i-1.1[${PYTHON_USEDEP}] ) + xbee? ( ~dev-python/xbee-helper-0.0.7[${PYTHON_USEDEP}] ) + xbox? ( ~dev-python/xbox-webapi-2.0.11[${PYTHON_USEDEP}] ) + xbox_live? ( ~dev-python/xboxapi-2.0.1[${PYTHON_USEDEP}] ) + xeoma? ( ~dev-python/pyxeoma-1.4.1[${PYTHON_USEDEP}] ) + xiaomi_aqara? ( ~dev-python/PyXiaomiGateway-0.13.4[${PYTHON_USEDEP}] ) + xiaomi_ble? ( ~dev-python/xiaomi-ble-0.10.0[${PYTHON_USEDEP}] ) + xiaomi_miio? ( ~dev-python/construct-2.10.56[${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}] ) + xmpp? ( ~dev-python/slixmpp-1.8.2[${PYTHON_USEDEP}] ) + xs1? ( ~dev-python/xs1-api-client-3.0.0[${PYTHON_USEDEP}] ) + yalexs_ble? ( ~dev-python/yalexs-ble-1.9.2[${PYTHON_USEDEP}] ) + yale_smart_alarm? ( ~dev-python/yalesmartalarmclient-0.3.9[${PYTHON_USEDEP}] ) + yamaha? ( ~dev-python/rxv-0.7.0[${PYTHON_USEDEP}] ) + yamaha_musiccast? ( ~dev-python/aiomusiccast-0.14.4[${PYTHON_USEDEP}] ) + yandex_transport? ( ~dev-python/aioymaps-1.2.2[${PYTHON_USEDEP}] ) + yeelight? ( ~dev-python/yeelight-0.7.10[${PYTHON_USEDEP}] ~dev-python/async-upnp-client-0.31.2[${PYTHON_USEDEP}] ) + yeelightsunflower? ( ~dev-python/yeelightsunflower-0.0.10[${PYTHON_USEDEP}] ) + yi? ( ~dev-python/aioftp-0.12.0[${PYTHON_USEDEP}] ) + yolink? ( ~dev-python/yolink-api-0.0.9[${PYTHON_USEDEP}] ) + youless? ( ~dev-python/youless-api-0.16[${PYTHON_USEDEP}] ) + zabbix? ( ~dev-python/py-zabbix-1.1.7[${PYTHON_USEDEP}] ) + zengge? ( ~dev-python/bluepy-1.3.0[${PYTHON_USEDEP}] ~dev-python/zengge-0.2[${PYTHON_USEDEP}] ) + zeroconf? ( ~dev-python/zeroconf-0.39.1[${PYTHON_USEDEP}] ) + zerproc? ( ~dev-python/pyzerproc-0.4.8[${PYTHON_USEDEP}] ) + zestimate? ( ~dev-python/xmltodict-0.13.0[${PYTHON_USEDEP}] ) + zha? ( ~dev-python/bellows-0.33.1[${PYTHON_USEDEP}] ~dev-python/pyserial-3.5[${PYTHON_USEDEP}] ~dev-python/pyserial-asyncio-0.6[${PYTHON_USEDEP}] ~dev-python/zha-quirks-0.0.79[${PYTHON_USEDEP}] ~dev-python/zigpy-deconz-0.18.1[${PYTHON_USEDEP}] ~dev-python/zigpy-0.50.3[${PYTHON_USEDEP}] ~dev-python/zigpy-xbee-0.15.0[${PYTHON_USEDEP}] ~dev-python/zigpy-zigate-0.9.2[${PYTHON_USEDEP}] ~dev-python/zigpy-znp-0.8.2[${PYTHON_USEDEP}] ) + zhong_hong? ( ~dev-python/zhong-hong-hvac-1.0.9[${PYTHON_USEDEP}] ) + ziggo_mediabox_xl? ( ~dev-python/ziggo-mediabox-xl-1.1.0[${PYTHON_USEDEP}] ) + zoneminder? ( ~dev-python/zm-py-0.5.2[${PYTHON_USEDEP}] ) + zwave_js? ( ~dev-python/pyserial-3.5[${PYTHON_USEDEP}] ~dev-python/zwave-js-server-python-0.41.1[${PYTHON_USEDEP}] ) + zwave_me? ( ~dev-python/zwave-me-ws-0.2.4[${PYTHON_USEDEP}] ~dev-python/url-normalize-1.4.3[${PYTHON_USEDEP}] )" + +BDEPEND="${RDEPEND} + test? ( + ~dev-python/astroid-2.12.5[${PYTHON_USEDEP}] + ~dev-python/codecov-2.1.12[${PYTHON_USEDEP}] + ~dev-python/coverage-6.4.4[${PYTHON_USEDEP}] + ~dev-python/freezegun-1.2.1[${PYTHON_USEDEP}] + ~dev-python/mock-open-1.4.0[${PYTHON_USEDEP}] + ~dev-python/mypy-0.981[${PYTHON_USEDEP}] + =dev-python/pycryptodome-3.6.6[${PYTHON_USEDEP}] !~dev-python/pydantic-1.9.1[${PYTHON_USEDEP}] - ~dev-python/pyjwt-2.4.0[${PYTHON_USEDEP}] + ~dev-python/pyjwt-2.5.0[${PYTHON_USEDEP}] ~dev-python/pynacl-1.5.0[${PYTHON_USEDEP}] - ~dev-python/pyopenssl-22.0.0[${PYTHON_USEDEP}] ~dev-python/pyserial-3.5[${PYTHON_USEDEP}] >=dev-python/python-engineio-3.13.1[${PYTHON_USEDEP}]