add mficlient-0.3.0

This commit is contained in:
Andreas Billmeier 2019-11-23 14:56:25 +01:00
parent 665b0786e8
commit 00a11eea89
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 53 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add mficlient-0.3.0
* add datapoint-0.9.5 and datapoint-0.4.3
* add messagebird-1.5.0
* add py-melissa-climate-2.1.3

View File

@ -0,0 +1,3 @@
DIST mficlient-0.3.0.tar.gz 8537 BLAKE2B 1228aacf161f84826b94cbef9c29319d0c20bef12e895bae7c57f3339384b14140f74b5450983595ac7fa107080d57a751a488d730b3cc6d29ddb2dabfdfaa9c SHA512 61d92b0074f835eec2c95e738b0ba2c77648ff9e95680dd05e1da04f0eae975c8e2d8ece3b8b6689473a5ba777b072c831cd91d78d47599e56858c129a19a754
EBUILD mficlient-0.3.0.ebuild 786 BLAKE2B 461d30d22c0579c5b32ed9a4a6bceb647c02fbebc9483094e28c14e725cdece77a4d3c2dab021a8a3e3c24af43179af124aae2a099d6b2fc19ec5bf706e29bdf SHA512 8d322516226dc17337fa087fc14fb020c1c4c61f166d5cd97299ae3b8f1a0c24715f88cf009a0df79f1fadbc671726e4c0d500bf8478fffae15c865c9f635cb4
MISC metadata.xml 468 BLAKE2B d8a311b3a6d01368acd3c4fb493b970a01497d308e46ae4e6977e431deb82be494cfe6ada2122d8adb45ad1450d0a12ebdbc7cf4439548cba354c200f3515132 SHA512 561b4611082a8a104ee620f2e80bf6d69f00c3abef9d990d29d15b4f2405a9f33355d0f741e9e3ee9532d5e9a23b514813c78ff53a21d2ff1862af533f038db4

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">mficlient</remote-id>
<maintainer status="unknown">
<email>dsmith+mficlient@danplanet.com</email>
<name>Dan Smith</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,33 @@
# 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="A remote control client for Ubiquiti's mFi system"
HOMEPAGE="http://github.org/kk7ds/mficlient https://pypi.org/project/mficlient/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="all-rights-reserved"
RESTRICT="mirror"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}