bump motioneye-client-0.3.12

This commit is contained in:
Andreas Billmeier 2021-12-04 23:19:14 +01:00 committed by Andreas Billmeier
parent 2f98f4effa
commit 4aed60489c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 36 additions and 0 deletions

View File

@ -1,5 +1,7 @@
DIST motioneye-client-0.3.11.tar.gz 12343 BLAKE2B dd9149af082bb5076a681ce45d766a89a29d4071a6145d3400d96e038ffa0686c94e07fcc7852059c6b9c0bbffb2cd621d298ec93726d22a803aa524c9c0db45 SHA512 1fc37d2c5a3c5196a1ffb40995aac401a3ee33d47adac4cebf936224e38df0a054d119826d73938eaff3b22fa9ba220cfe0151d6b16fe44518d40187ce2b6cc5
DIST motioneye-client-0.3.12.tar.gz 12287 BLAKE2B 7cccd9418557824c052acfdcef14691c1542de8b8d3646c81c2d2aab96265a1c7e88c72b4bf1817da88586daefb868a8c61a952df7875a8a68ee8c0a9ac71de6 SHA512 ad476b1540da02d020536b0d13ba4e502331634336c9c8400bdce1f79f7e28232498e92101ddbdb8445faa13627fd79939f0df94b3595d910b5c4c0aff203dc2
DIST motioneye-client-0.3.6.tar.gz 11799 BLAKE2B f5b036ff6c25fa03de22063a4eef5d6f54744bf0727297362c435290c1611b323a2d9e778aa6bed65adcccc1e21127ee37642f2b5003a6ebd6b894ffaf689929 SHA512 4322746fe466f2a8577b51e08be7f53c43088304c940bedfae54bdfb447cb11399b18253fb6fe2b0686f3099eca5a8bbe3a6e43522b1e9980f93d244671f93ac
EBUILD motioneye-client-0.3.11.ebuild 838 BLAKE2B f6146b91700827b17bfeaa9837738aa767026380c17d4c4544717001ded88505321f13eb630666855c55c79668eea2f71d104278c9104689a813131812afb49b SHA512 f0d3bdb6f18436bf7ef4f44c48dc42faa736548840cb84d7ee39885bf75d9e77243e02d8096af40ef5c0fceb248f49d2142e2ae3a3dd7ed453a35cd7ca153ad2
EBUILD motioneye-client-0.3.12.ebuild 836 BLAKE2B 048fffb9317f2452bc49ac35062f36318f0e5d22adee4c704289b532bb8d46cdaea750be9d9d48bca1ef3fc768556b116595499c09fbf4bcaedb95f42b6f1f7d SHA512 1d2cc3bf37b67a9011ba68b51c3e8cc81dba53efcecbc377632ea6861a5e723b837763c17c7d3c7f72a3af4cdae1fcc39c28d1246013dd9cb6a9cb41b8389772
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=8
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
}