add py-august-0.9.0 / py-august-0.7.0
This commit is contained in:
parent
31ec75af0c
commit
3546b1be75
@ -23,6 +23,7 @@
|
||||
* downgrade sharp_aquos_rc-0.3.2
|
||||
* arcam-fmj-0.4.3 & aionursery-0.3.0
|
||||
* add asterisk_mbox-0.5.0
|
||||
* add py-august-0.9.0 / py-august-0.7.0
|
||||
|
||||
2019-11-21 homeassistant-0.102.0
|
||||
* bump homeassistant-0.102.0
|
||||
|
5
dev-python/py-august/Manifest
Normal file
5
dev-python/py-august/Manifest
Normal file
@ -0,0 +1,5 @@
|
||||
DIST py-august-0.7.0.tar.gz 5540 BLAKE2B 636caf3f7f993eb536ccb2be95738f0fb6792f13e7b1542c1983dc911bc8c1b32410cf238bf89697f9acb1d99e8d103462ecebb67dbb09ce06fe97207b5eeee2 SHA512 3b603c34fccd07570038aba5fafca28220c26d2d274523f35a8de312043337330587506147798ab06a7b5cf2a9f534c5ee4633a222fb3e6138dd842232722821
|
||||
DIST py-august-0.9.0.tar.gz 5842 BLAKE2B a740af2aaa4f786515ece808c473490d96cef5da0c37f3e47705391952c26e7415e11ff8c51b7917560345d81e1b01e2821c22a83dd239dc32aa1a6bf9e460bb SHA512 8befa6583a3e7633dbb7d133b75bdd915c3764cedcbba20be753597a1bdede1c336899e39cf5ebacaf1eac56062e79f8a7c7736293333194df44bd276483f8df
|
||||
EBUILD py-august-0.7.0.ebuild 714 BLAKE2B 0e8f266f902f09239df0a9f611a5fce696533eae1935a3b33e9dd8f41178ffd54afd59cb50b7f58446de7d47869ea880ab28a36d7a6f1a99e19fee1c31f7911d SHA512 098563781f1d34e0d124836a4e55008f23969d64e402013127339e653b114375c4608a7df8cb11b56ccfa90a0b4bceca7421ad2fca4c3152e70f0e098e594df1
|
||||
EBUILD py-august-0.9.0.ebuild 714 BLAKE2B 0e8f266f902f09239df0a9f611a5fce696533eae1935a3b33e9dd8f41178ffd54afd59cb50b7f58446de7d47869ea880ab28a36d7a6f1a99e19fee1c31f7911d SHA512 098563781f1d34e0d124836a4e55008f23969d64e402013127339e653b114375c4608a7df8cb11b56ccfa90a0b4bceca7421ad2fca4c3152e70f0e098e594df1
|
||||
MISC metadata.xml 453 BLAKE2B 9ba00b8455f039b177d6abe0fa6ed8bf50f9a9b38aa52ee574d958180f48602e9d4e83680422d5e3c3544e2516002eb5a940201e04fbf6b07da7fab4662a8382 SHA512 7dad4518b2b7076e62f8a6edd78540661b5c1e9cc55d103271c4fdb34c3db828b13fa50ee070593ec19cfca42a132635badd5d45443a4cfa9460242d929e64f8
|
16
dev-python/py-august/metadata.xml
Normal file
16
dev-python/py-august/metadata.xml
Normal 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">py-august</remote-id>
|
||||
<maintainer status="unknown">
|
||||
<email>snjoetw@gmail.com</email>
|
||||
<name>snjoetw</name>
|
||||
</maintainer>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
30
dev-python/py-august/py-august-0.7.0.ebuild
Normal file
30
dev-python/py-august/py-august-0.7.0.ebuild
Normal file
@ -0,0 +1,30 @@
|
||||
# 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="Python API for August Smart Lock and Doorbell"
|
||||
HOMEPAGE="https://github.com/snjoetw/py-august https://pypi.org/project/py-august/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~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
|
||||
}
|
30
dev-python/py-august/py-august-0.9.0.ebuild
Normal file
30
dev-python/py-august/py-august-0.9.0.ebuild
Normal file
@ -0,0 +1,30 @@
|
||||
# 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="Python API for August Smart Lock and Doorbell"
|
||||
HOMEPAGE="https://github.com/snjoetw/py-august https://pypi.org/project/py-august/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~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
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user