This commit is contained in:
2022-02-05 22:28:01 +01:00
committed by onkelbeh
parent 80310fe1a3
commit c0f566e02a
2 changed files with 31 additions and 0 deletions
@@ -11,4 +11,5 @@ EBUILD home-assistant-frontend-20220201.0.ebuild 741 BLAKE2B a43c03bbfbfe1bf9c32
EBUILD home-assistant-frontend-20220202.0.ebuild 741 BLAKE2B a43c03bbfbfe1bf9c32c5f5ea012baad174a225d655e29069485d5e89e49a90845d8225f12e366aafac36d3eca07cdbfe33afac6a6a0653141327c3506cfe1e8 SHA512 ef2d28090475965f341816cacb7e7c29148a8b7947a1633b89438ee1300e11bbcaacf286cedc9224590ba803c2d46a764ad3efb3d19c3ec78f0f1316dc2e5a32
EBUILD home-assistant-frontend-20220203.0-r1.ebuild 1021 BLAKE2B d53ca414f4e169eee3a22b1c36287a475be9d07934b8a9e07a2ff0aa832d397e380ecc0480db4b7f73911e57e3dcc4a1c1f0b8dc21601bc6d62967c23a4a03ce SHA512 431c450077fa23be40d97d6c52ff0b821be25860badd512b1beb6f8dd250e128db585825248dadb577c78a5520345ff3cdca25bc4bd7571484cd4b25c5a34d39
EBUILD home-assistant-frontend-20220203.0.ebuild 935 BLAKE2B 3135d7c53358383fc6e4598c6ad2955f673cafc99afca8dd18c753987f73b1a360c1a5b1a3a720e189ac84d71b78e9797e6de742c650446a7de3e74da9731b63 SHA512 56d24f869ce0830071c6ab58a448d06cd44c8a4c75e4ae8f800b06f09040646b38433c59436af3e315d726f949d45906f034c1326f64511e286011e0ca816081
MISC home-assistant-frontend-20220202.0-r1.ebuild_ 777 BLAKE2B 417eb301a1ffd51b42d1ff2a4f281c46c12e2e421bedca9cc65341624c011db33d51fbd29609e8f4f03dc740c49e36c92b1c17dc17f8bc26696fa60c381adc94 SHA512 f6030b7299c8c98338e8e77a3ac34b2acee525c0069c0bc6f488e2f96e2a6b1056ad441dbe5bf9e139244d28291c71c3926fda027d9005d59b3a61954006fc92
MISC metadata.xml 485 BLAKE2B db31a294d5ca2f4824e6ab06aaf266b0182e1c9b49d5aeafd299fd408fc5a96d0db3ac4d72732291b0c7f74480dab6cd4febcbeced136372db499d67eb46edac SHA512 c5a5ddd828915cd14975e480b2c6c9aa599aeb32ee6d7bfef4995450fa8b6d4cdc4b281c34c4cc34d4b15f8443c1d780bf72b5f5443edbcd50054fa434f367e5
@@ -0,0 +1,30 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="The Home Assistant frontend"
HOMEPAGE="https://github.com/home-assistant/frontend https://pypi.org/project/home-assistant-frontend/"
SRC_URI="https://github.com/cdce8p/ha-frontend/releases/download/v0.1.3/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="~dev-python/user-agents-2.0[${PYTHON_USEDEP}]"
BDEPEND="${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
}