unpin pylint in aioesphomeapi-2.6.3-r1

This commit is contained in:
Andreas Billmeier 2020-11-21 10:20:35 +01:00 committed by Andreas Billmeier
parent 4a5611bd7b
commit 36a66bddc8
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 42 additions and 0 deletions

View File

@ -8,6 +8,7 @@
* update zigpy-0.28.0
* add plugwise-0.8.3
* update flake8-3.8.4-r1 (cannot be run with test)
* unpin pylint in aioesphomeapi-2.6.3-r1
2020-11-19 homeassistant-0.118.1
* bump home-assistant-frontend-20201111.2

View File

@ -11,5 +11,6 @@ EBUILD aioesphomeapi-2.4.2-r1.ebuild 799 BLAKE2B 9ed1b7ebcf8b85d014b8972a6cfce16
EBUILD aioesphomeapi-2.5.0.ebuild 799 BLAKE2B 9ed1b7ebcf8b85d014b8972a6cfce16f1e4d346ecedb3cab1fd78ead9562d6c53690a53c071403b1653b22d659ef85bb58f9baf569f81f9183118b179302007e SHA512 3e9938b5fb2bfa306240903238d7b0a9171298430c446f0bc577cbb20aae6dd3791ea44917ef385f34252977fcd21efb17a3725377510538e667b17578a67115
EBUILD aioesphomeapi-2.6.0.ebuild 799 BLAKE2B 9ed1b7ebcf8b85d014b8972a6cfce16f1e4d346ecedb3cab1fd78ead9562d6c53690a53c071403b1653b22d659ef85bb58f9baf569f81f9183118b179302007e SHA512 3e9938b5fb2bfa306240903238d7b0a9171298430c446f0bc577cbb20aae6dd3791ea44917ef385f34252977fcd21efb17a3725377510538e667b17578a67115
EBUILD aioesphomeapi-2.6.1.ebuild 829 BLAKE2B c4e2ae198be0a2d7ef4486f248707c6571135018ebf51a9cccb65bc1bdb7e34bd7f721f3b3611a7f8a86ebbe9d8fb29ae7e62516cc23af9ddece33c64daff183 SHA512 30070ea8324bdf336dc2eb03080c5a84ef18eccfe9a966c66449f48670d6ebb048c6fa09788cc05f35886c0b0b83458edfc5481419a009ce12b53efb1e63d983
EBUILD aioesphomeapi-2.6.3-r1.ebuild 1048 BLAKE2B b1528d82394f16111dba561bae6e13cbd3e1842bc08b24140d74ce8da5c8c2e67ad8d4437a921e5165919e9bea6f60dcc8751b18a77fe43b5a5ed37edf0ee922 SHA512 d6408e45b0a2cc70150c3a595cdc7309300585e4bc3635b3bd5597ef2e09e68cb562c8974a399f2caf4239fe1ad40adc5c8cfc3b9d6c552eb29230723b880007
EBUILD aioesphomeapi-2.6.3.ebuild 954 BLAKE2B 5c1426303266cf95568f03b5d19ca830d2a2266b0502dcb23bad9dab857c249d121e70a95315a42a42801def2419b55cada030ab02850f38371b1a29e80dd64c SHA512 1a4721bac81a1d9b2b64f0f19d59a36b5b97032f9a16620f05d404d026d23c5e0e53afbfca6eca7090cca924a9be5754b9345d312292b749f9454eac85e68858
MISC metadata.xml 460 BLAKE2B 998b7ba34709c00ece6d6009eeac84b47d09d76078d372502774f485d95e793a00fbb6d4ad8d388c9a838c4e689cd396fc548c86704b3759de5f38884f8ef1b6 SHA512 be6c07e78a0188fac9bb7eda3a50bf7401148dec57df821ef3213f43083bb48d0c16177e19800a56000cbf03e0476628ecc119096c82e5bee74dbad8701128bf

View File

@ -0,0 +1,40 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="Python API for interacting with ESPHome devices."
HOMEPAGE="https://esphome.io/ https://pypi.org/project/aioesphomeapi/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
#SRC_URI="https://github.com/esphome/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/attrs-19.3.0[${PYTHON_USEDEP}]
>=dev-python/protobuf-python-3.12.2[${PYTHON_USEDEP}]
>=dev-python/zeroconf-0.28.0[${PYTHON_USEDEP}]"
BDEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pylint[${PYTHON_USEDEP}]
)"
src_prepare() {
sed -e 's;pylint==2.5.3;pylint;' \
-i requirements_test.txt || die
eapply_user
}
python_test() {
nosetests --verbose || die
py.test -v -v || die
}