diff --git a/dev-python/pyintesishome/Manifest b/dev-python/pyintesishome/Manifest index fb65b7862..3855536bb 100644 --- a/dev-python/pyintesishome/Manifest +++ b/dev-python/pyintesishome/Manifest @@ -1,5 +1,3 @@ -DIST pyintesishome-1.7.6.tar.gz 11322 BLAKE2B 8f3a18c69bf7d7ff8dc49bd9e91d0aeb8cbc5beae0e469d51ad56cb4d5393907629416bafb2fd3296ddc2e7839796718ec7b566acc96a8e66770746e6d54d4ca SHA512 a6dd77f9e9b575ae1445887e25c4863b54b97a368045fa4d9392c7076dec45a8f592f21b55dd9356b0c25a5a05a7872c186e2db5c3f630d5d7d4f7603634b8f1 DIST pyintesishome-1.8.0.tar.gz 13436 BLAKE2B cea19568136fbbe93dcde9dc201caaf7382ad61254ebae6ce004df789d3d22852a5bf360797c5b75df6a7a13758469fb705d51ba18be08f5538c3402eefc9b20 SHA512 7b019bdbfba3240524fb4ffb7db3d42e4bab62543068aba4a77203ac3572813c8baaad8dafdaf7740385e105cbd3042e72ca1be2717407916ec623c2e5d27f3f -EBUILD pyintesishome-1.7.6.ebuild 724 BLAKE2B 82a4ae4c2912b7795bf8d209e5a48c2055c8d8b9ce3440af53bc01150f9eb268fbbc999d7a1ab43944fa23adab0c22a445058e3c31141f82acfae1d0faeb252c SHA512 ec9a3a5c003565db6f24cd2c2575a368441890deffab2e4f6385242b28cc232cf9df6858910d63f37292499e542a895a5e547de10976764c74c30e6cd534c375 -EBUILD pyintesishome-1.8.0.ebuild 755 BLAKE2B c7ab34eaa6fe577a3cb7c754b52ccab4079ea3e67a709448b446b881c706c2114c2f792dfed537fd4967b8a72d68245e555a12713f41600d5e775ab5e1d79e0c SHA512 9bf52ca38f09ef092cbdb141b2088cf1f2f7cbfb9cdb9fb24ea367c509e29fa553c1d8c1a5f101377b8295efcc593f6883f94bc1950b30246f02ae0e68e01211 +EBUILD pyintesishome-1.8.0.ebuild 598 BLAKE2B 93371ce3b887596b06d19b2f26cfd7faaf38e4b4f56446ee3b02e1d2c65b04e8343e46fb368b2d63ba5d371ff7c684af6cdf1b9c9fb212035071e9ac608004b5 SHA512 62221fb6c81eae52426ffdd24096f4cce52c433e4554e8ed8a5467511bd1d63ac61f20db673b4081cdd5236fcadb09f600963f93e6f7234056aaf747364bb8a0 MISC metadata.xml 517 BLAKE2B 6fb6f4b376dda4bbca8dee4ea541b9ddf46b0c8fb73f8c50936884eb23ce863a309a2133cf588cd3cd9d7057614696f33dd6e42e988569067e09948ffd8b2931 SHA512 ec53394b23470ef0de71c9def85ee542c0fdc9bb9fd5c54415a5f98f445a01888955a59b219e5a1a4bf518911360ae365834eeec7a189c8a4cf5824b7239fa57 diff --git a/dev-python/pyintesishome/pyintesishome-1.7.6.ebuild b/dev-python/pyintesishome/pyintesishome-1.7.6.ebuild deleted file mode 100644 index db163f001..000000000 --- a/dev-python/pyintesishome/pyintesishome-1.7.6.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 - -DESCRIPTION="A python3 library for running asynchronus communications with IntesisHome Smart AC Controllers" -HOMEPAGE="https://github.com/jnimmo/pyIntesisHome https://pypi.org/project/pyintesishome/" -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/aiohttp[${PYTHON_USEDEP}]" -BDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - )" - -python_test() { - py.test -v -v || die -} diff --git a/dev-python/pyintesishome/pyintesishome-1.8.0.ebuild b/dev-python/pyintesishome/pyintesishome-1.8.0.ebuild index bfadb79cf..fb80018ab 100644 --- a/dev-python/pyintesishome/pyintesishome-1.8.0.ebuild +++ b/dev-python/pyintesishome/pyintesishome-1.8.0.ebuild @@ -1,15 +1,14 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 +PYTHON_COMPAT=( python3_{10..12} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 pypi DESCRIPTION="A python3 library for running asynchronus communications with IntesisHome Smart AC Controllers" HOMEPAGE="https://github.com/jnimmo/pyIntesisHome https://pypi.org/project/pyintesishome/" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" @@ -20,14 +19,5 @@ RESTRICT="!test? ( test )" DOCS="README.md" RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]" -BDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - )" - -python_test() { - py.test -v -v || die -} distutils_enable_tests pytest