add python-family-hub-local-0.0.2

This commit is contained in:
Andreas Billmeier 2019-11-22 19:37:23 +01:00
parent c4c2812934
commit bad4f70bc6
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 52 additions and 0 deletions

View File

@ -75,6 +75,7 @@
* add epson-projector-0.1.3
* bump PyEssent-0.13
* add evohome-async-0.3.4_beta1
* python-family-hub-local-0.0.2
2019-11-21 homeassistant-0.102.0
* bump homeassistant-0.102.0

View File

@ -0,0 +1,3 @@
DIST python-family-hub-local-0.0.2.zip 4719 BLAKE2B 69cabba6befe0dcae56f3df95abae023d12a2777cb55bdb678acdbe6acfc7120064e156f2cde0be659580e42c176a71ea09c3e4ea104615dcd617198997ada20 SHA512 25acc1aaa9d89db7382aec2fb7469d8027621888486363d98f76706c2b5e85ef7b261b205690da779ba72d49dfd0c2b4a54e4b7910282c9306bd2521532e909c
EBUILD python-family-hub-local-0.0.2.ebuild 851 BLAKE2B aeca40f701692bf34b4c14b07d459698c0bcd24ad32352ac98942af1979dbbb1f38c02ea66dd834f0ccd3f0dbf2c299f87abdcdb544ca5b480eff0be4a84a5a0 SHA512 e02e371b3d908f5570904796ea3cebb2e0379bf704cf7e3354758ecac204ad3181a0ded91920587ccfb05b24ca1331ee27386caaac58ee9cf1204efa18df0086
MISC metadata.xml 478 BLAKE2B f03c728715f37e906729b12d248f56459ad08e37d5e7895676bf8a5529a02497b877e913f25cbdb0f1c6175d5b34e51a2d9a6e712722d00d876e567dc7db1b5a SHA512 6f8eefadcfd0050dfa7202016a19899b5038059923675e59ccbfc2166ae17edad4da2df50d885e1f19c7bb4478b1fd4a9fc6d745af009eab0aa6557a0700d1ee

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">python-family-hub-local</remote-id>
<maintainer status="unknown">
<email>gregbenner1@gmail.com</email>
<name>Gregory Benner</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="Python API for accessing information from Samsung FamilyHub fridges locally."
HOMEPAGE="https://github.com/Klathmon/python-family-hub-local https://pypi.org/project/python-family-hub-local/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.zip"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/async_timeout[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]"
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
}