bump python-izone-1.1.2

This commit is contained in:
Andreas Billmeier 2020-03-13 18:36:51 +01:00
parent b5c8fb39d1
commit a0ed31b720
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 33 additions and 0 deletions

View File

@ -15,6 +15,7 @@
* bump pyicloud-0.9.4
* bump pymelcloud-2.4.0
* bump python-ecobee-api-0.2.2
* bump python-izone-1.1.2
2020-03-08
* bump frontend-20200306.0, remove olds

View File

@ -1,3 +1,5 @@
DIST python-izone-1.1.1.tar.gz 10433 BLAKE2B 2df6bbc7d779fa4191c314ffc37aaf07670c5628cc38154ec1e5704565f96a80847f0a0829854faca2784ffeb06ac53784c903a727febd82b3d024d08a95f988 SHA512 8db7b2a1bcef109130d0b7bc255f5b119a317595c66d69de44b012431733d17958dfbd41e20a82c80dce252f8622ae3bdcf48ae03ad47901f38a7052dba9b549
DIST python-izone-1.1.2.tar.gz 11146 BLAKE2B e3a480b008c8f81a840d4cb6346521f3ce986b7140e2bc1529e148ff2c58b6082930527235ffeb6a689bf6cd0d74cf6aed67de057ccee3c9fc8a411ae5493513 SHA512 ade8215756833a0b8f06e8bbdbefb8c2d42d92573f8d553c2d56c391bc5e9a0fb86b92840f38e6da43d25f067fba31cb7a50785b1006cf6af494baf29bc52406
EBUILD python-izone-1.1.1.ebuild 701 BLAKE2B 37069298666c318a9ceb711a8a303ed73773c364ea7828adc5a260375efe98984bb813fc36eeb9161a70b559ea618c116f29581f4c09fa7c0e9e01b7a677a653 SHA512 167c635529192c52a0f3332387590b6744d7362433c3c2864ac742f2905a30365e362fe81bfc6a6d56e2d658ad6787ff7b8d3d77ea52f4175e9d2dad4cab74dc
EBUILD python-izone-1.1.2.ebuild 701 BLAKE2B 37069298666c318a9ceb711a8a303ed73773c364ea7828adc5a260375efe98984bb813fc36eeb9161a70b559ea618c116f29581f4c09fa7c0e9e01b7a677a653 SHA512 167c635529192c52a0f3332387590b6744d7362433c3c2864ac742f2905a30365e362fe81bfc6a6d56e2d658ad6787ff7b8d3d77ea52f4175e9d2dad4cab74dc
MISC metadata.xml 457 BLAKE2B bbe012e6a52d12a9634d7ed96a568f6641bdf95def9221f703b094c7d71acfbe06013e08f89eee628bf77f66ddff11b943d49f0f4a2ee410adc7456e4a24438c SHA512 6d095447678ddd6fe4d9d09cf74927a44c9b0637c02602a2d25bf33538f2ab78a7acb4919ed3a40bc8afd12cb6d7c19fc28a8d1f15e39e12542e0b3e57d6772f

View File

@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="A python interface to the iZone airconditioner controller"
HOMEPAGE="https://github.com/Swamp-Ig/pizone https://pypi.org/project/python-izone/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
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
}