add openhomedevice-0.6.3

This commit is contained in:
Andreas Billmeier 2019-11-23 21:24:00 +01:00
parent 1330700cae
commit 2ab34a51bf
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add openhomedevice-0.6.3
* add openevsewifi-0.4
* add onvif-zeep-async-0.2.0
* add oemthermostat-1.1

View File

@ -0,0 +1,3 @@
DIST openhomedevice-0.6.3.tar.gz 11945 BLAKE2B 84b8db5104d78b965d4ebc6956130a2724ee791239c4d614c27f44fa6f99c94c5e4f7dfe5211e7bab5912e5c519a28a401b46cc65f2a96fbf423317913c007a2 SHA512 8d65d30834d678615dea332e35ea1936e218af17c405646c7a67d0320ccc7659b87d55c834ab6b64a34e88a8d804c0be74d63b03259b76c18ec1c52e772ae240
EBUILD openhomedevice-0.6.3.ebuild 784 BLAKE2B 6258c50b9fea165dbf5e5fb002cf83f16cb47e04ffcdc19084795d3ab3b53ff9d12264bff2c0f6be0e7a1e9c894513dc0aa84923d4f44427013575dcf7b05449 SHA512 8fe15a785ffb9630e1c9cb4bff2f0d0bc32e226aaa4fe81616245e85c5d188e9f84919611dc36966be2951b89d5c7aa3373160fcd03753dccee0e7230adca06b
MISC metadata.xml 468 BLAKE2B ad9c85fd8fc3c2894c58ea89d6f85886f6f9f10a2ce81fde6b759dc2689c2acdd21b3109273f1a3d09aa453f96af35ca516aab4cc2cf8c5fd5e592d4b06e93ac SHA512 c1513c4eb495046a56f9cf4427b58b0f979b231fa776cd62f32007366ee003d492f2a239815e158207477928a8c5458977f7f84ea30797907fc4726bca32dca8

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">openhomedevice</remote-id>
<maintainer status="unknown">
<email>barry@bjw.me.uk</email>
<name>Barry John Williams</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# 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="Provides an API for requesting information from an Openhome device"
HOMEPAGE="https://github.com/bazwilliams/openhomedevice https://pypi.org/project/openhomedevice/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/lxml[${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
}