add pyEzviz-0.1.5.2

This commit is contained in:
2020-02-25 20:32:06 +01:00
parent d25baa3dc7
commit fa9237a09c
4 changed files with 51 additions and 0 deletions
+3
View File
@@ -1,3 +1,6 @@
2020-02-25
* add pyEzviz-0.1.5.2
2020-02-23
* bump env-canada-0.0.35
* bump haanna-0.14.3
+3
View File
@@ -0,0 +1,3 @@
DIST pyEzviz-0.1.5.2.tar.gz 7943 BLAKE2B 2983d47ca98ad6f22584db15c9c8bc5e5f9c41d31e8e5eacd4ca7721427ec38903293e06f3568e8ae1faf92bd57dd4912f66507b3768fcf00607eb18163cb418 SHA512 c02d7106d089dbd8b428aebdac50b821341ae77ece3dc3cbf573f5f5bfdf8e86f2e5cba63877ff389b6d0b3318b39abfdb48baaf21bd79e03d2dd6cc6fa7954a
EBUILD pyEzviz-0.1.5.2.ebuild 702 BLAKE2B cc0baed992dd93cbae97a7a70e294389623c4872a29bc33e7c704cf79eb74475924f8d2d5dcd02023a2313df48f08ce73e5bd1f5fc7c337ad0a957fd22de20f8 SHA512 1761c73915d3ed0bd40d3f4286d8a9522da8dc888315bd3c9f11b9084c082d6171e36d0a2afa6bb2f6771f6166bc9428c718a590e705220a64acfb80ff230b29
MISC metadata.xml 458 BLAKE2B 0dd39917c403ab271d51e8803b4f0eccaa11f2e239328494d6f99bb99e17e39ca3752c7426b39e669b0f874dd8c6dee9dbdf53ff002e768374955db2984a6138 SHA512 43dbbef4e521b87cda74b80302256586cf4353573be6638b6305532702ace071a3025eaa2e1415e3451c64e7cd76eeed6ba88086fc01aa1fa135993eaacfe209
+15
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">pyEzviz</remote-id>
<maintainer status="unknown">
<email>baqs@users.github.com</email>
<name>Pierre Ourdouille</name>
</maintainer>
</upstream>
</pkgmetadata>
+30
View File
@@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Pilot your Ezviz cameras"
HOMEPAGE="http://github.com/baqs/pyEzviz/ https://pypi.org/project/pyEzviz/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}