dev-python/amcrest: add 1.9.8

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2023-10-20 23:36:45 +02:00
committed by Andreas Billmeier
parent 023b89f238
commit 46253010ae
2 changed files with 36 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
DIST amcrest-1.9.7.tar.gz 920028 BLAKE2B 637a39f9fdfb1307db85bc0c34151c6fb39e73f860d3d3e9ac734aeb0d37e8ef2c4e36a74ac4ad0e0f1f65c5b9b6e6ae4125c519b7e60aac03d70acd63d062ba SHA512 27444fba955b63454461dcf16c4a321f696c24de7c07254af209942c4b88202cfc7471899a326851eeb84b516bc31def827340c8b776e2fa5459200dcb4ca818
DIST amcrest-1.9.8.tar.gz 43565 BLAKE2B 028fd8b939e445d9230875b99afa3b6826135700902e9fd2ed1fec12da191fd88047360b96fa1eb188befc65a3ac086a50530836bb80d27ccc91974ffd0122b2 SHA512 093ecf9fe9bbfb80aff6064394e5cec024c2abb5100da22a0dac953394d776b6ae34c77ac35d272756d4c37b1cbe8965f4f1e4aa948f43af2b2394c6060844ef
EBUILD amcrest-1.9.7.ebuild 824 BLAKE2B e5b4471b1a92f49c6dc2a312cc660a811356a104e829bcd08520ee51d8ad4edc3e37215a576e0dcfc19c74ab780539c75162bfa90f4ed331959c7f298d2c4ba1 SHA512 f590a112f0c94e5cba26a94cd9b18a9f4e394886f282439c401d1e982f4d3970d5e5dc56e929b6141ae8042c3d862daee106b673659f660204d3009ef641be93
EBUILD amcrest-1.9.8.ebuild 824 BLAKE2B e5b4471b1a92f49c6dc2a312cc660a811356a104e829bcd08520ee51d8ad4edc3e37215a576e0dcfc19c74ab780539c75162bfa90f4ed331959c7f298d2c4ba1 SHA512 f590a112f0c94e5cba26a94cd9b18a9f4e394886f282439c401d1e982f4d3970d5e5dc56e929b6141ae8042c3d862daee106b673659f660204d3009ef641be93
MISC metadata.xml 585 BLAKE2B dec7982b7fdda552c48493044260b90774d15d8a38f74846848f3e19908e247cfce585b1a64f092c80f474f19b89f68de658cbadc18dffd39262e961405f75c3 SHA512 13eeacd51755a654fcb45195046ae1fb3852bfaf28a6a5df48f9176a1b5be9f1c45101ee20fed2f33a65941ed41f4ffe36b602e76ecba2a7af95f951e343457f

View File

@@ -0,0 +1,34 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Python wrapper implementation for Amcrest cameras."
HOMEPAGE="https://github.com/tchellomello/python-amcrest https://pypi.org/project/amcrest/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/httpx[${PYTHON_USEDEP}]
dev-python/argcomplete[${PYTHON_USEDEP}]
dev-python/urllib3[${PYTHON_USEDEP}]
dev-python/typing-extensions[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest