upgraded esphomeyaml to 1.10.1

This commit is contained in:
Andreas Billmeier 2019-01-27 10:53:00 +01:00
parent 63094d2b69
commit 5bb51d216b
2 changed files with 43 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST esphomeyaml-1.10.0.tar.gz 419016 BLAKE2B ee00fca805f41d655b33cbf84bd10139a5a280848e00b2db39761d9ebb5f2274466709e4666162ffefb4b9b2cb5596d43b6edd5f91f7f7bfe499f5efa748c60f SHA512 46fc2dddb793d77969532be93dfe2fb7ec7f95087e1ea551e16cba3c3035aee869e0a926aca196ffebe42fc89df7167d2738785c86964f5d2d22f2720dc7cc96
DIST esphomeyaml-1.10.1.tar.gz 419161 BLAKE2B 392fecae54de0c4ce95ddd576a44071c83893fffadf215bedfe0b564f932d31f214468a47191eea44830f531d5f90bae93238ef6f373f324b401ad3dda1b5247 SHA512 8649ec9240c971a823930f1cc8a1dff015006851018d3631546f2a2f35c5dd78e720e06f57ec070e30473353c5782f806990c3470068b3b0eb34e8c2de9551e2
EBUILD esphomeyaml-1.10.0.ebuild 1154 BLAKE2B 0f4edfe6188629fb8adf9ed4d296a6eead380ce6e0cdbeba85529619cf2ae2cc1f1e7d219b5428d2e26476632f30f38188ee1be09e630f3faef906d390e5a3b3 SHA512 5b1889f9fef76a60193174bc5ffdc4328f7d018569f2720c56c5f1f7675899c8939722531c15d1188a8fee5e92d4752c71f9814a4bcdeec5cacb1b798d5476cc
EBUILD esphomeyaml-1.10.1.ebuild 1196 BLAKE2B 68df459a3b70204a26253d088ae40ef7f7e8d77e2ee7adaeb4f52996ec8d9a3f3fe4ae0a243a8d50ca1c954ffdb2a403cd270b0ca5333dc4bc73cf547f89463e SHA512 54555c947a3fefcc290f47a93dae5821fd232bcab6d9515c8bd0cc0872a9ebcc50cb9841fe0d9bbdec183e99e8dd04e8a6eaba667f519564e557a01f75e93b72
MISC metadata.xml 252 BLAKE2B 507e0ddc9d50b879ff374b903b142f85d020dfd6c486aba2af84fe082c878e780edbb79188ae10104d57db0eb775c86814cc8c06891a3854c9da840a4d377050 SHA512 9470ac9c8a5a4f80e3f767e7aa198addc7b21866c63b2a310e9f41ce65817672fb77423117bdd619e99cb62322025aeadf50717e23eafabf99080fcc106820af

View File

@ -0,0 +1,41 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Make creating custom firmwares for ESP32/ESP8266 super easy."
HOMEPAGE="https://github.com/OttoWinter/esphomeyaml https://pypi.org/project/esphomeyaml/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
>=dev-python/tzlocal-1.4[${PYTHON_USEDEP}]
>=dev-python/voluptuous-0.11.1[${PYTHON_USEDEP}]
>=dev-embedded/platformio-3.5.3
>=dev-python/pyyaml-3.12[${PYTHON_USEDEP}]
>=dev-python/paho-mqtt-1.3.1[${PYTHON_USEDEP}]
>=dev-python/colorlog-3.1.2[${PYTHON_USEDEP}]
>=www-servers/tornado-5.0.0[${PYTHON_USEDEP}]
>=dev-embedded/esptool-2.3.1[${PYTHON_USEDEP}]
>=dev-python/typing-3.0.0[${PYTHON_USEDEP}]
>=dev-python/protobuf-python-3.4[${PYTHON_USEDEP}]
>=dev-python/pyserial-3.4[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}