add motioneye-client-0.3.6

This commit is contained in:
Andreas Billmeier 2021-05-15 12:17:14 +02:00 committed by Andreas Billmeier
parent db7ba767b6
commit 2dac066a5f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 53 additions and 0 deletions

View File

@ -44,6 +44,7 @@
* bump HATasmota-0.2.12
* update homeassistant-2021.5.2
* add mutesync-0.0.2
* add motioneye-client-0.3.6
2021-05-14
* update astral-2.2

View File

@ -0,0 +1,3 @@
DIST motioneye-client-0.3.6.tar.gz 11799 BLAKE2B f5b036ff6c25fa03de22063a4eef5d6f54744bf0727297362c435290c1611b323a2d9e778aa6bed65adcccc1e21127ee37642f2b5003a6ebd6b894ffaf689929 SHA512 4322746fe466f2a8577b51e08be7f53c43088304c940bedfae54bdfb447cb11399b18253fb6fe2b0686f3099eca5a8bbe3a6e43522b1e9980f93d244671f93ac
EBUILD motioneye-client-0.3.6.ebuild 842 BLAKE2B df13ce3598e02b8c6fcdb1b1216513c1ef2752934d22b01b0a0e62eaba18b112c1770e4a9c3393963c299669b7d23d923d85398785c96ca6e0009c6d429e28b6 SHA512 8d961ef1d1ab06fd70e0c620452e5b57cfffda47865a786073d9db6d575b082ed928b1112ce44bf70740e3c4df425c9e10f0d30543cf8c485a3416528028752c
MISC metadata.xml 463 BLAKE2B 5abdc6aec4e8852ff6d147266aa0e7c009dc22a18d711d99c070608ed6d461fa667b3a4b5661b2a68adccf74ad1f891f9016cccbb89e46f23dba310e9eab1761 SHA512 821303a88c2c29420c09ca9f6c3238feb22cf488c99745845b7c59cac0deea5b27b19d7ec2bde32da9f0d3dc18ce7347e241aa69005890b573b2cd8d5bf8cea5

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">motioneye-client</remote-id>
<maintainer status="unknown">
<email>dermot.duffy@gmail.com</email>
<name>Dermot Duffy</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,34 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
DESCRIPTION="motionEye client library Python Package"
HOMEPAGE="https://github.com/dermotduffy/motioneye-client https://pypi.org/project/motioneye-client/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.7.4[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}