-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3384 Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
4 changed files
with
35 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
DIST arcam-fmj-1.4.0.tar.gz 18650 BLAKE2B d66a491f2b038da9ae89f7b2ae4a4f306038a4b665a00934f773d925bab81dad400be38c539a1d9c170ca6193c0076c7c94452098482dad0d428e71294a58ccb SHA512 b4403f10f43c8334d348e9abe31eeda3a9b8b991277e83e382f00308dafa35a672c53a400797688af4b48870f15a1d00e67de4e6a7f92f2454826d183268352d | ||
EBUILD arcam-fmj-1.4.0.ebuild 841 BLAKE2B 811fa6858b52c8cb3797ac535e2575b46ffd5fb042715d518d5625fc526700a0ce29b133a47da4769bf292a46281dd70de9390a8f42f60d9f22a070f744b76a9 SHA512 a99b721afeee6d8a9dca98b36b245461a029f416f72326de84aba06dd7b905a2c0158045dfa604acf0a985b989bf7c36559293432afe4bfae6731680b5d5b800 | ||
DIST arcam_fmj-1.5.2.tar.gz 23053 BLAKE2B 397752fb8f227990c67ad0b4a98a32242c17645701d7f6c5ee5554677aa09b2c8021b4a6a67ba5bea296fe6331654f055b0048f7105d31d8c6b4d41f1c10fabc SHA512 dc7714aa4daf2952180f6bb565120281735d2c1d6a60988e9877c8f96e703a023b17d9bd81001633af4d3604bce80731584670154589b2030cfe58c24cd5c6d6 | ||
EBUILD arcam-fmj-1.4.0.ebuild 841 BLAKE2B 683de1af135d23a593163348f32d56d2c0252d60296f9e2222763e2da9932424e2a878e1cceb9b9a9a29f7e356000b0ce670d2c2ef586cc4a2af4d65617e85d8 SHA512 8e7ee243c3a197ed7da4898c8da4d2a0d2d77b75b09c318be337cd4fcfadb079b34a439ecb404a1b93b64587ee82745221fa01fa29bae93408caeba96656e34e | ||
EBUILD arcam-fmj-1.5.2.ebuild 742 BLAKE2B 4ff7598443c26706716dfca775b8ecd0fee20be1d42db10eb40e8c1f6ee6be837ca3cb98d2c44ae7a049f6f8aee6247617cc20fb5f1ae26a6f686bcd7c5e63c7 SHA512 15a36b950e1720c00dd230ec2a240cdb19b8704680eb50b0433bee89be20212e2990e042056cac0c68b6ff358f1faa4e8adc5c836ce4242f507a8ab3b3a48478 | ||
MISC metadata.xml 386 BLAKE2B 469a0f30165e7b32177f6394ee5820971a50a55ee9c633326dea83f9a1654e6a30e3e0b361b8f92d81704ea6e8278002c34b3058e3ec77913f8eed3ce743bd33 SHA512 a1e8cb4edc820c4377fc03866482d94cbc5aff84490e99a08b5623dca353d2b538630f55e19c033b987798d2e9ab9b50e6755bb4088ce94a52bbb77ec352767d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{11..13} ) | ||
DISTUTILS_USE_PEP517=setuptools | ||
inherit distutils-r1 pypi | ||
DESCRIPTION="A python library for speaking to Arcam receivers" | ||
HOMEPAGE="https://github.com/elupus/arcam_fmj https://pypi.org/project/arcam-fmj/" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.rst" | ||
|
||
RDEPEND=">=dev-python/attrs-18.1[${PYTHON_USEDEP}]" | ||
BDEPEND=" | ||
test? ( | ||
dev-python/asynctest[${PYTHON_USEDEP}] | ||
dev-python/coveralls[${PYTHON_USEDEP}] | ||
dev-python/pytest-aiohttp[${PYTHON_USEDEP}] | ||
dev-python/pytest-cov[${PYTHON_USEDEP}] | ||
)" | ||
|
||
distutils_enable_tests pytest |