add ziggo-mediabox-xl-1.1.0

This commit is contained in:
Andreas Billmeier 2019-11-24 21:59:55 +01:00
parent c91e02b497
commit d0b432a216
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 52 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* add ziggo-mediabox-xl-1.1.0
* add xbee-helper-0.0.7 with XBee-2.3.2
* add pyzabbix-0.7.5, zhong-hong-hvac-1.0.9
* add ya-ma-0.3.8, yeelight-0.5.0, YesssSMS-0.4.2

View File

@ -0,0 +1,3 @@
DIST ziggo-mediabox-xl-1.1.0.tar.gz 4314 BLAKE2B b2b859abb6c887976c5e00d11094a5de11a83e69f4a057b20644a246a5fcd6b08cc8d9f7dd73893f999f3a469b7998a40a4c7cdb8546245dff08fd3705e8ed6b SHA512 66448adf64069d89beceec55fc3177272db137701998844e3ce9c9fc853e4834f7793faa9be6d5acb06b518e77533d41068c4e09f69b7100e65f205682a83705
EBUILD ziggo-mediabox-xl-1.1.0.ebuild 801 BLAKE2B 75fef7380ce90819193bc0282a1e5a99179f8a077772a5bca1c7e221b7b8017111eb9e16de669a009df44a6461ea23000976fd61d1a04bd9f24ec4a5277cd418 SHA512 7904ca9ff904e6ece61ba4ce359481a314ff8ca54b64bd742c3818353ccbd033ca5cd2db5f587fa95327a049863425a88e71611ac67927c8bc89a5ba2dfc0e29
MISC metadata.xml 461 BLAKE2B 8c598e393d558bcf4df99523f0c4d4821facdd28d835c57e8d3b15943a9850d6bae159b848eb8004b06150fed7e66a04b2cfecb54c7a937e0a3acccbfc6c761f SHA512 789f422be8c0ad622446a6f3cdfaca6c1edf67b7d17397d5069cd2d255f604670f81300bb6738e7e3bbf8be06957423287cb1aa905495bc74f1f25f463e6065d

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">ziggo-mediabox-xl</remote-id>
<maintainer status="unknown">
<email>menno@b10m.net</email>
<name>Menno Blom</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 interface to Ziggo's Mediabox XL"
HOMEPAGE="https://github.com/b10m/ziggo_mediabox_xl https://pypi.org/project/ziggo-mediabox-xl/"
MY_PN=${PN//-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/requests-2.20[${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
}