diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-09-25 05:58:04 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-09-25 06:38:57 +0200 |
commit | 2df57b442ba682633f9ff4c87c8a06515aa468c9 (patch) | |
tree | 3b5d8500d78b572b5713cae95e2c7ee54d5d84cd /dev-python/denonavr | |
parent | dev-python/spake2: Bump to 0.9 (diff) | |
download | gentoo-2df57b442ba682633f9ff4c87c8a06515aa468c9.tar.gz gentoo-2df57b442ba682633f9ff4c87c8a06515aa468c9.tar.bz2 gentoo-2df57b442ba682633f9ff4c87c8a06515aa468c9.zip |
dev-python/denonavr: Bump to 1.0.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/denonavr')
-rw-r--r-- | dev-python/denonavr/Manifest | 1 | ||||
-rw-r--r-- | dev-python/denonavr/denonavr-1.0.0.ebuild | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/dev-python/denonavr/Manifest b/dev-python/denonavr/Manifest index 3f750dd7e8b4..e10425dacb60 100644 --- a/dev-python/denonavr/Manifest +++ b/dev-python/denonavr/Manifest @@ -1 +1,2 @@ DIST denonavr-0.11.6.tar.gz 181608 BLAKE2B 6078aa16ce879417d21d1f9260bc18e86de9c33054b46592a6af821a349973e6fe69c64a23a23b2b2278edf12180fe37cb218b83c0c0abc536928124fa5dad9a SHA512 538127e30fe71f14643acada521bbd9090999464a4ead1b95805d759d23efd55a87a8a2daf26cd8eebf6c0396850430cac2ef7328ee79921df0862c2713e5208 +DIST denonavr-1.0.0.tar.gz 182189 BLAKE2B 044f5bc2dd37ecf58c0c13c56c638c8e336b206eb6a6333364ee72af0b9dcf309b85ae0ae701a3da5e7b02211f4baa5c109f71bbda03fec5075dd27f823a25c5 SHA512 8c562dd61d1cfec6110c880e1c052f8234b2d026791aafd528c526f55decbfc7f57ecb06bf4668ed2a7abd9fc2fa1cef12991dab7bb7368847356e21517a237b diff --git a/dev-python/denonavr/denonavr-1.0.0.ebuild b/dev-python/denonavr/denonavr-1.0.0.ebuild new file mode 100644 index 000000000000..2f160c89d6eb --- /dev/null +++ b/dev-python/denonavr/denonavr-1.0.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..13} ) +PYTHON_REQ_USE="xml(+)" + +inherit distutils-r1 pypi + +DESCRIPTION="Automation Library for Denon AVR receivers" +HOMEPAGE=" + https://github.com/ol-iver/denonavr/ + https://pypi.org/project/denonavr/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + >=dev-python/asyncstdlib-3.10.2[${PYTHON_USEDEP}] + >=dev-python/attrs-21.2.0[${PYTHON_USEDEP}] + >=dev-python/defusedxml-0.7.1[${PYTHON_USEDEP}] + >=dev-python/ftfy-6.1.1[${PYTHON_USEDEP}] + >=dev-python/httpx-0.23.1[${PYTHON_USEDEP}] + >=dev-python/netifaces-0.11.0[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + >=dev-python/async-timeout-4.0.2[${PYTHON_USEDEP}] + ' 3.{8..10}) +" +BDEPEND=" + test? ( + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + dev-python/pytest-httpx[${PYTHON_USEDEP}] + dev-python/pytest-timeout[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest |