dev-python/motioneye-client: add 0.3.14

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-02-07 09:59:05 +01:00 committed by Andreas Billmeier
parent 5295bff60a
commit 607e3b16b9
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 43 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST motioneye-client-0.3.12.tar.gz 12287 BLAKE2B 7cccd9418557824c052acfdcef14691c1542de8b8d3646c81c2d2aab96265a1c7e88c72b4bf1817da88586daefb868a8c61a952df7875a8a68ee8c0a9ac71de6 SHA512 ad476b1540da02d020536b0d13ba4e502331634336c9c8400bdce1f79f7e28232498e92101ddbdb8445faa13627fd79939f0df94b3595d910b5c4c0aff203dc2
DIST motioneye-client-0.3.14.tar.gz 12752 BLAKE2B 5634919e4f2b380a28757a9a75d0d20e55162be8b12473d1417c77eae36f63e0d8378c343476cab5e52eb55fab0e23dd2c8df242acbcdbe37ddaacbc3b907971 SHA512 82685c3745b3c34ab4af263ae410a0db3b52d4621b890359a4d8d0fd37e3e0a3ce66559c239f7f323af1d2233a9fac93daf640163f4f35b0bbdb3644f23969ab
EBUILD motioneye-client-0.3.12.ebuild 807 BLAKE2B a6835dfe09f7457284b9b5d566db4774e674c859707b0a400450a012ea0f09953cf489d9c7c766f189a36042cdcf13d8836dfb89288e8ed3f05365ab6b9982de SHA512 c5b87cb8970b8b83536d5dfc3ce5effe9803113e3dec0a8619bedb09689c2dba17fddc076fff7a0381f84344fc0300d465db0362844dedf8b9b07f7c72d78716
EBUILD motioneye-client-0.3.14.ebuild 1004 BLAKE2B f73ed3e6256ce960da5506dd24bc1b8b2d96f6be07664a799fa87e7e783c72c071b9c07278a2f3accbefd549c16e5b8c020574271ab0f0a3cd1371c29d6438bf SHA512 cf859951b349d7a61cf558c5a55e211f5bd861ec18b8174f0e217576e68c81d2d446c6a592b0a2cc633d5ca6c41c815c6db5899d0668df47831479ca2d01e24a
MISC metadata.xml 533 BLAKE2B 9deeaaccbfa6a370eedf1a187bee6d22e1777c668bd122fbafebb6f1ea8ab35af6ec8359bdbe0cdafe4171aa776ac3c284dff2528d747d7cf4cfeb23d263702e SHA512 ff7f98b8810e050cd3f789297367528fbaa0605901e52fdaf9a9001b8f08f343fda156d4a20ae55ab531b52f14fdce915921dbb6fa31c7d0cac057c7fa10c24b

View File

@ -0,0 +1,41 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=poetry
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"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.8.1[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest
# include = ["motioneye_client/py.typed", "LICENSE"]
src_prepare() {
sed '/include =/c\include = ["motioneye_client/py.typed"]' -i pyproject.toml || die
eapply_user
}