bump pydaikin-2.4.3

This commit is contained in:
Andreas Billmeier 2021-06-27 19:57:57 +02:00 committed by Andreas Billmeier
parent d76b45f394
commit c58b828f69
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 38 additions and 0 deletions

View File

@ -1,5 +1,7 @@
DIST pydaikin-2.4.1.tar.gz 12866 BLAKE2B adbe0ffd859b35f99eecf059118c80405a5505e313862f3d58408bf9d6a2d4c1752553602e761b908a1520dafc68995b91300c94fd91149f6e761c5b7634ea7b SHA512 046ec3c0c1a111e3bd7db42d786bfaf62628d9c0a6f3f204aaf9bfa7ae45b6d5e91de11c45fd253c3184243c3e12966a2e3b7ea5c10371e78a81811568ae2fcf
DIST pydaikin-2.4.2.tar.gz 14904 BLAKE2B 7dd664a542fc69bb64ed2995fabf2fcf915cccd0c9e3a5aa9ce337691b4ad4f2ec25f629f7d994725efc48bfb27507a745627016be931986e92d3a1e83999fec SHA512 cab3dabcf34bd34c852bb75f7aa35c0cb63b1353fbef7ad36d1c10c57fd55a92347a31659e1d24784c472483b678674a0c45be2a9a99b06e248cc0c7fb4615c2
DIST pydaikin-2.4.3.tar.gz 15150 BLAKE2B dcfa974c5b6305187305ef9280f7161bcd766a57dc897ae47fdb9de968060cb045efc400f20cc680cc45f63ee3c0297a1c8ce916a1bc485e157db89b3f6aa42d SHA512 fa93297cf9b9aed0047370ed63ead730aa4c545a45f54d4c5ee0154194a4f69aa728b1b5e3782f3174372f93905d2dd5a3f3c596004e80208f41ae570812eafa
EBUILD pydaikin-2.4.1.ebuild 841 BLAKE2B 5c1f16ec0cdcadd1bdcf5c57c8fea811c0946dc4984fb4b904625f0679239d3db44858c137edc58c44ed74879926d5d23fa9cfd2c2e2c5994cba7858080c02b8 SHA512 8eabd324309fec2fa4f6c693cca14470dfdf9d5bf5ec3958b6cd4f592cb9cb5a20683fc3c56ec847ce67b025e1bd14ee3ae827b8fb64c3ee99fa4ca40eb4ac7a
EBUILD pydaikin-2.4.2.ebuild 897 BLAKE2B dfe80e67166b0ab6e0d1ce37399584ddebb180d02db2e09fe18dd2f4808b91322db6238c92658894bf95ff1d874f106c0a24dccff52c0744056f445609b4616e SHA512 5ac78b247e8d37acc26ce1a73f27a0970656309368edc72ddea7a6d17355884446b5a303d90a05672f0a549d831c9c91f4c74cf3af2ab5c6125faf3bc2f5d93a
EBUILD pydaikin-2.4.3.ebuild 897 BLAKE2B dfe80e67166b0ab6e0d1ce37399584ddebb180d02db2e09fe18dd2f4808b91322db6238c92658894bf95ff1d874f106c0a24dccff52c0744056f445609b4616e SHA512 5ac78b247e8d37acc26ce1a73f27a0970656309368edc72ddea7a6d17355884446b5a303d90a05672f0a549d831c9c91f4c74cf3af2ab5c6125faf3bc2f5d93a
MISC metadata.xml 559 BLAKE2B e869745ca7a6e17ba8a1ac965fd440e1bbb11e37e5fae7c8f4e8ffbe60a5fd3b2b9b92e77b2b788096fc8c105cd0085e9ad209dc76228d3c4b0acab4b231d5ae SHA512 02b9d7cbf71d41277481cace8c820146ea153b937e225b29b0275bb42b58775e94881ede006a72b95d935f15a5d8ae28441d32b4495fb58a3a46c92d61b0ba88

View File

@ -0,0 +1,36 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Python Daikin HVAC appliances interface"
HOMEPAGE="https://bitbucket.org/mustang51/pydaikin https://pypi.org/project/pydaikin/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/netifaces[${PYTHON_USEDEP}]
dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/urllib3[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/freezegun[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}