update home-assistant-frontend-20190109.1

This commit is contained in:
Andreas Billmeier 2019-01-12 00:42:08 +01:00
parent 9c00ddec0f
commit 5f3fb0b3e2
2 changed files with 33 additions and 0 deletions

View File

@ -1,2 +1,4 @@
DIST home-assistant-frontend-20190109.0.tar.gz 18146586 BLAKE2B 8604a7aea84d998049dc986e6d2dc6e34e7b6faf4b155d8fa6a9e7e35340df05b2a3e6a716b5dfee292e31e308db62685edc67786c401d66de6d6c069b788d65 SHA512 113f3714f20c27b3fcdc3e6df609207029af14677a40b89fe4f0ac05d6616bac05d0608fc550cbdead95ccd0c98e98f2cd5e0775689afe3c899f7cbe9b0b930c
DIST home-assistant-frontend-20190109.1.tar.gz 18144304 BLAKE2B 741e9bec3f6864fe1914d08d35d2e48323e502f32dc7ac45b4f632d9c71efdab199f4a8a17e345bd70844d5d227fd4387c09efc4c45e4671ca35d6866d7f8f98 SHA512 11982e92975eb2f91a58b3cdd594bd14766bd163d5bce94e29a6656d018f770ca1f941acb1d65d1d1b401b8c1199b46da89e806e3c62f93f41bc82580ba8610d
EBUILD home-assistant-frontend-20190109.0.ebuild 718 BLAKE2B 0331dd0311dfb5719c37769dd7085620b6fcec0c65363cedbddf665b3ff5a88752a16f9b746e41d610562f909447f2cfc4d273cea5a8c6952ae121e424c52e28 SHA512 a9f1670c64ed93fc696657146a5c6227aea2083728ee2089f417b102df55161b8a2d6d4c3fa12a77fe251e965b6f209cdedf9d9ea295957be6640f46023db476
EBUILD home-assistant-frontend-20190109.1.ebuild 718 BLAKE2B 0331dd0311dfb5719c37769dd7085620b6fcec0c65363cedbddf665b3ff5a88752a16f9b746e41d610562f909447f2cfc4d273cea5a8c6952ae121e424c52e28 SHA512 a9f1670c64ed93fc696657146a5c6227aea2083728ee2089f417b102df55161b8a2d6d4c3fa12a77fe251e965b6f209cdedf9d9ea295957be6640f46023db476

View File

@ -0,0 +1,31 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="The Home Assistant frontend"
HOMEPAGE="https://github.com/home-assistant/home-assistant-polymer https://pypi.org/project/home-assistant-frontend/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache License 2.0"
SLOT="0"
KEYWORDS="~amd64 ~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
}