add pylutron-caseta-0.5.0 and pylutron-caseta-0.5.1

This commit is contained in:
Andreas Billmeier 2019-11-24 15:49:55 +01:00
parent fa28201b14
commit 506a92a5a1
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 81 additions and 0 deletions

View File

@ -0,0 +1,5 @@
DIST pylutron-caseta-0.5.0.tar.gz 4836 BLAKE2B c6506c994c15f713ca3a25e1ec4cf3fa92c0916c50589a562dc96b45687d9db61bc3a879f17cdf704c7f62e140cf11b1f9a6bb0260dbcb49cfea4dc690e8af29 SHA512 475f4a273f5b8362648f233313849d39c92090e79de435d67c887ea262a1c25a89d1564b0921ee88c7e78d9cec15dc5fea4cc2ec0391bd94d4e4ac2163cd4eb1
DIST pylutron-caseta-0.5.1.tar.gz 5099 BLAKE2B e8c2decb3ad72b81d9ade45d77fada6fd786f1efb068554d0b4ef7fe54062f3b48e2ba94fd1682fa952fae395f1c99f40433ec1b8df01e70d11e9bce38fcf790 SHA512 b8936f3af3490261670eb5d9b110a3d4a8587199ad86bccbff2327c393f65ab321ba4d286e0cd0f1708ce587fc68a486d85a4a3154cbfe6254fc38d792c8a61d
EBUILD pylutron-caseta-0.5.0.ebuild 766 BLAKE2B b2ca816b9a3d945d9c1a19ebe7825aa76ded555a8218d051cfabe529295ae9ab04b1f0e0688bb61dde93ea21dc7418435894ce48db95a22aef226280a30e393d SHA512 340c689b249400575a6175f841a42df26fca0fe4a09c38942ddb53d6271946716170fa26bd665690ee6bd664c604920f9b37353f41a4a700c7dc55ef1cb775d5
EBUILD pylutron-caseta-0.5.1.ebuild 766 BLAKE2B b2ca816b9a3d945d9c1a19ebe7825aa76ded555a8218d051cfabe529295ae9ab04b1f0e0688bb61dde93ea21dc7418435894ce48db95a22aef226280a30e393d SHA512 340c689b249400575a6175f841a42df26fca0fe4a09c38942ddb53d6271946716170fa26bd665690ee6bd664c604920f9b37353f41a4a700c7dc55ef1cb775d5
MISC metadata.xml 341 BLAKE2B 50ce55480bf130d4bc8b457b2de074b13678471194503d51754033f9d704bfb4bd15c4307839a43cba6cbb77ae77796c12ab63b835a2f3a87b6a0558e11d6bb3 SHA512 0766f11f1709f5ec2525e1860b9149507ca76b486ffca674cfaa8574368b0420ff17841f2b7cf76f876eb09213fcd4b34a484bb82533cf39d8a601e589a176af

View File

@ -0,0 +1,12 @@
<?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">pylutron-caseta</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="Provides an API to the Lutron Smartbridge"
HOMEPAGE="https://github.com/gurumitts/pylutron-caseta https://pypi.org/project/pylutron-caseta/"
MY_PN=${PN/-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="Apache-2.0"
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,32 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="Provides an API to the Lutron Smartbridge"
HOMEPAGE="https://github.com/gurumitts/pylutron-caseta https://pypi.org/project/pylutron-caseta/"
MY_PN=${PN/-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="Apache-2.0"
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
}