add wiffi-1.0.0

This commit is contained in:
Andreas Billmeier 2020-05-16 09:16:49 +02:00
parent 2bfabbc959
commit 20be624705
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 49 additions and 0 deletions

View File

@ -27,6 +27,7 @@
* bump aiounifi-22
* bump PlexAPI-3.6.0
* bump broadlink-0.14.0
* add wiffi-1.0.0
2020-05-09 homeassistant-0.109.6
* aiohttp-cors-0.7.0-r1 from main repo is now OK again

View File

@ -0,0 +1,3 @@
DIST wiffi-1.0.0.tar.gz 3124 BLAKE2B 75cf1cf3a134ea92f6d35ad50d1e376516b10c44e9390000381dec4ebeee142bf034e3010f3823812e09dce5319103290421adfe35635b3883c5d428dd732b57 SHA512 1d6c6646cb71ed9299f9ab13b12a0c07abb28801bcd33f230ad1d79f46b36d665620c1b1ee3366ebd519586a9ae0709963b7990ce0c00baa667da3466005a6cb
EBUILD wiffi-1.0.0.ebuild 695 BLAKE2B f146796456e113c8d4781896f41c9adddc6654c7f6078c1e26ff01fa724f630dd8431221b80f72a8d6b087b69a1fb0241a09e7fe775053a45bbf3ccf8baf506d SHA512 79b2c75355a70ca94e528b8ea0ef0b2effcef988222ce4bc8831b1d79d5d10ab3ac27e401056eb446fb7da438194fa163149842fca89c3b44452510d8bf5810f
MISC metadata.xml 457 BLAKE2B 82afbf2e72b24ad367b23dd8a3f17a5c9321db2b67e3064c331d3515d582c438de5cb0ef0c9c04c55c5ef72e337af134920686dbf4e59ca869e56766cff55911 SHA512 2ba71177a042e3921c876876a4f95a4362b528e622bdb19bb23dec55cadae3bfc455615571f4958a0c4c590feb13c4bbe9b47f2477af00582043d15dd89a43e7

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">wiffi</remote-id>
<maintainer status="unknown">
<email>mampfes@users.noreply.github.com</email>
<name>mampfes</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Python 3 package to interface devices from STALL WIFFI."
HOMEPAGE="https://github.com/mampfes/python-wiffi https://pypi.org/project/wiffi/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~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
}