dev-python/homematicip: bump 1.0.11
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
DIST homematicip-1.0.11.tar.gz 132575 BLAKE2B 8c8bfc4cdcfd70d7b65cf10c6941a38ee3cd527d9175fc1d305ade713d5d94c01e367ad6a4097c61d1ab5ab2c50e6b280642a72848b83126e91daf5f934ed744 SHA512 a3c63f3f26a52ae9d295fcdbd9ca9c930991624e82bf5d8aef71596d404e96b8f54e033eda8a82e4fbe1f56f322904b8e923e0cfed5a2bc01a69212aebef6c98
|
||||
DIST homematicip-1.0.7.tar.gz 127790 BLAKE2B d8d38cb199d27bc47028f633a0b15b2cab8091849561e74f3c1388f7e590292e89e9549aea6ec08163bd2ab700bbf720032e54af54c7282b1ec8d329664522d9 SHA512 fde6d234f63c17fef3cd42fe6c1b024968002b3ac65a86af5dd2d3b062cda6a66d4d1d6641a52aa2ae8efe83de5b3966d1a3197ba5e111d7d3c05f07a50af2d4
|
||||
EBUILD homematicip-1.0.7.ebuild 961 BLAKE2B b282a61698770d861cfaae1640281a2474dc738f50c715c18e554d84fbcc52f16927d04dbbb0b7b7b858b50b77633952b63b86f6dcbd26df58e177d4f77131c3 SHA512 0b096075333f5f6ad44354e846dda09f9860df74c3e1a2ab78facdc04a233a2ebc008c5c1dd3c18c0dee4062a4ec11e40aee9c75b531bbdde1e894bf6c589c11
|
||||
MISC metadata.xml 455 BLAKE2B 43fe0ff218d8d60193aeffdc4e6b6981819618e208ac9a2eff1f6cb88c8393d492b082175fabafe449793e46312e444bac9bb94cfb3b950d5cc9d7072097c4a3 SHA512 ca605da32ba2c98ccd0e7827522341540ea09c426210b01d9b2c2366faa0d1f48ee0763e84c7fd7221fa21bfa1d750ad5e94320adf6022a23f875243d7cdca47
|
||||
EBUILD homematicip-1.0.11.ebuild 992 BLAKE2B 6208aef1f95382631013da25e30c9aaf1727e88b1adb759821550533c1c1fc28873892a01eb6db6287c81182a57e2d7526251736bf8cd7f484184cf3f9904eb4 SHA512 bbd50add18149c5781bcdd7b88557a3cd31729f32272a716f49eb4302046b418e0aa7f009d61459f8ba726317106962066aa8297564958a5041eeb2d3a2d7312
|
||||
EBUILD homematicip-1.0.7.ebuild 993 BLAKE2B 139e6621dbd21edde54dc6770221226a2922127efd81061b3041a2937350efa9887c9c4d82c75150e970803f443145532bef7f40b339d991e8537a60c6b058d5 SHA512 25d16f5bf5c54fc855694505240eabeccbaa3186639b46401b56210bfd59ea1418f99bf766e3a7dd98a6c964edd23de40245ce80d13b916d436675e652137aeb
|
||||
MISC metadata.xml 525 BLAKE2B 5f5d79bbce4836648fb0163c16e22811e5491bd70b02dc812091e7bb4213b99f30b0696ea719e22be55bc6319dbec10b0deaf0a005b4d81001e448a40142d23e SHA512 bd248c5bc704f603ba21b366581b0a3d57b5ebe89789d3e0a9e3f34d179b93b0369bf483011ec68adf10a7fbcd1626c13a32d427a9249d7ab159a630fee2e8ca
|
||||
|
||||
39
dev-python/homematicip/homematicip-1.0.11.ebuild
Normal file
39
dev-python/homematicip/homematicip-1.0.11.ebuild
Normal file
@@ -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=setuptools
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="An API for the homematicip cloud"
|
||||
HOMEPAGE="https://github.com/hahn-th/homematicip-rest-api https://pypi.org/project/homematicip/"
|
||||
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/requests-2.24.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/websocket-client-1.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/websockets-8.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/aiohttp-3.6.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/async-timeout-3.0.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/aenum-2.2.4[${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
|
||||
@@ -4,6 +4,7 @@
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..11} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="pypi">homematicip</remote-id>
|
||||
<remote-id type="github">hahn-th/homematicip-rest-api</remote-id>
|
||||
<maintainer status="unknown">
|
||||
<email>post@thomas-hahn.org</email>
|
||||
<name>Thomas Hahn</name>
|
||||
|
||||
Reference in New Issue
Block a user