add home-assistant-frontend-20190109.0

This commit is contained in:
Andreas Billmeier 2019-01-10 17:55:40 +01:00
parent 326ba7defb
commit a821042d39
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,2 @@
DIST home-assistant-frontend-20190109.0.tar.gz 18146586 BLAKE2B 8604a7aea84d998049dc986e6d2dc6e34e7b6faf4b155d8fa6a9e7e35340df05b2a3e6a716b5dfee292e31e308db62685edc67786c401d66de6d6c069b788d65 SHA512 113f3714f20c27b3fcdc3e6df609207029af14677a40b89fe4f0ac05d6616bac05d0608fc550cbdead95ccd0c98e98f2cd5e0775689afe3c899f7cbe9b0b930c
EBUILD home-assistant-frontend-20190109.0.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
}