update motioneye-client-0.3.11

This commit is contained in:
Andreas Billmeier 2021-08-07 08:13:08 +02:00 committed by Andreas Billmeier
parent 57acd6a46f
commit 7d3db966e7
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 38 additions and 2 deletions

View File

@ -1,3 +1,5 @@
DIST motioneye-client-0.3.11.tar.gz 12343 BLAKE2B dd9149af082bb5076a681ce45d766a89a29d4071a6145d3400d96e038ffa0686c94e07fcc7852059c6b9c0bbffb2cd621d298ec93726d22a803aa524c9c0db45 SHA512 1fc37d2c5a3c5196a1ffb40995aac401a3ee33d47adac4cebf936224e38df0a054d119826d73938eaff3b22fa9ba220cfe0151d6b16fe44518d40187ce2b6cc5
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
EBUILD motioneye-client-0.3.11.ebuild 838 BLAKE2B f6146b91700827b17bfeaa9837738aa767026380c17d4c4544717001ded88505321f13eb630666855c55c79668eea2f71d104278c9104689a813131812afb49b SHA512 f0d3bdb6f18436bf7ef4f44c48dc42faa736548840cb84d7ee39885bf75d9e77243e02d8096af40ef5c0fceb248f49d2142e2ae3a3dd7ed453a35cd7ca153ad2
EBUILD motioneye-client-0.3.6.ebuild 843 BLAKE2B af43cd81432e1e647f0795b0c59768cf1a096f275f5cd98e65b6e52276a18c3d3b52469108eb28a7f9158e776a55d4d6dcb9703782247b8a2091e55cf74a5051 SHA512 6cb745a4e59053facba4b5e158489e055ca49d5acc133fbe8d98556965603f3097409fa898b57fc5ec601d9ec49d2733041c4dba8bccc54ffc43437993a0376a
MISC metadata.xml 463 BLAKE2B 5abdc6aec4e8852ff6d147266aa0e7c009dc22a18d711d99c070608ed6d461fa667b3a4b5661b2a68adccf74ad1f891f9016cccbb89e46f23dba310e9eab1761 SHA512 821303a88c2c29420c09ca9f6c3238feb22cf488c99745845b7c59cac0deea5b27b19d7ec2bde32da9f0d3dc18ce7347e241aa69005890b573b2cd8d5bf8cea5

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_{8..10} )
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
}

View File

@ -3,7 +3,7 @@
EAPI="7"
PYTHON_COMPAT=( python3_{7..9} )
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1