add homeassistant.components.amcrest

This commit is contained in:
Andreas Billmeier 2019-04-28 09:35:38 +02:00
parent 82f525cf54
commit 2ede732214
5 changed files with 113 additions and 0 deletions

View File

@ -0,0 +1,7 @@
DIST amcrest-1.3.0.tar.gz 60453 BLAKE2B 4f6f475f57ed106fb5a1559db6f7d8eb961a09390ff219168dd9d4e2f1cbf363ebdb773dacf46ce9ea678d87917dfa19d3746ba60ecc0d65ca361ebd4bfce7a0 SHA512 bb439d3b606137b1a3dff879b3e84459d11bd537d5cfaf338f5183b5f71a9baf852a6f53ba9cf793b1137d3b5056db696268b9a0e226edcf751758aeace7d967
DIST amcrest-1.4.0.tar.gz 61039 BLAKE2B ac1c2211df582dee49c4bda5c4c48789d369ef87d5e1dff0e049d41a66cf05a01c36bc962a5384390b2726a5111c8b9141b7d8ff5c784e974b13b028d6098435 SHA512 7eb30eaee40d754a30723d69c368993dff10d29f0a8af852eab104b9d36f6bfc20fe294165bf0471e7e9ae4f116f326e886c256e076ec79e371ef33c10a280d4
DIST amcrest-1.4.1.tar.gz 60902 BLAKE2B d9b893b7d41eed6d590330a1f4513ac3fb582fcc577de039af71854c8af7432a50a63659b46c47607835f790f4e4c021472d93bce2a6ce2f505d8ba03d19cc88 SHA512 2c197d1f2f2a45e32cd4a6d072a1e166b927f397506d4e72f10ed5e3c4fe298e2440840ee25439904e89d9b7f3f7bdd3c3a8c8ca2c1e4b2d6ffa0be980173057
EBUILD amcrest-1.3.0.ebuild 731 BLAKE2B 71b22c138214a0c8e393a65f6f093af4876191b83d5db52130e0b1bb5a08fac707c3d0dd42375116b9c7304e9f0dcec035ca3c8d73b32088d21c0d84d2830729 SHA512 4e1ba4c93c31569f25053e0dee6fc00c6fd0e926eeb2b4188f701def4609996e69a4462d034c22366cafdae77d517f170d0147dcdc5c061081e138f968b67f40
EBUILD amcrest-1.4.0.ebuild 731 BLAKE2B 71b22c138214a0c8e393a65f6f093af4876191b83d5db52130e0b1bb5a08fac707c3d0dd42375116b9c7304e9f0dcec035ca3c8d73b32088d21c0d84d2830729 SHA512 4e1ba4c93c31569f25053e0dee6fc00c6fd0e926eeb2b4188f701def4609996e69a4462d034c22366cafdae77d517f170d0147dcdc5c061081e138f968b67f40
EBUILD amcrest-1.4.1.ebuild 731 BLAKE2B 71b22c138214a0c8e393a65f6f093af4876191b83d5db52130e0b1bb5a08fac707c3d0dd42375116b9c7304e9f0dcec035ca3c8d73b32088d21c0d84d2830729 SHA512 4e1ba4c93c31569f25053e0dee6fc00c6fd0e926eeb2b4188f701def4609996e69a4462d034c22366cafdae77d517f170d0147dcdc5c061081e138f968b67f40
MISC metadata.xml 523 BLAKE2B 24534bbf4e7fd2ea5f053f640b9af15d33a49933d75249a9da1194de5bbf27510f48b92035f63c5ab7f374556e162835ddddac441f58eafcc5829057889a23b0 SHA512 c87e91fd5b94f1ec02274c2ab1685f35230ea3d81f0a300b60f02895211f317b7aff27d155da3cc0adcf88b8cac2f6763357bc4bb13d1adb552e862d216b8fb7

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Python wrapper implementation for Amcrest cameras."
HOMEPAGE="http://github.com/tchellomello/python-amcrest https://pypi.org/project/amcrest/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPLv2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
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
}

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Python wrapper implementation for Amcrest cameras."
HOMEPAGE="http://github.com/tchellomello/python-amcrest https://pypi.org/project/amcrest/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPLv2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
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
}

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Python wrapper implementation for Amcrest cameras."
HOMEPAGE="http://github.com/tchellomello/python-amcrest https://pypi.org/project/amcrest/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPLv2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
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
}

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">amcrest</remote-id>
<maintainer status="unknown">
<email>dougsland@gmail.com, tchello.mello@gmail.com</email>
<name>Douglas Schilling Landgraf, Marcelo Moreira de Mello</name>
</maintainer>
</upstream>
</pkgmetadata>