add simplisafe-python
This commit is contained in:
5
dev-python/simplisafe-python/Manifest
Normal file
5
dev-python/simplisafe-python/Manifest
Normal file
@@ -0,0 +1,5 @@
|
||||
DIST simplisafe-python-3.1.14.tar.gz 20272 BLAKE2B 51a7b4d392267ad320e45e51c2bb26bf925012f9bd23416735a2c115affa878a3d03cfc06edb97f3d68203a775515ca57f0f3b0abdd482c00eb3c5b1377f52dd SHA512 4dfa6c423e14106dc062c16c266f39ed0ffd26679f30b4a4cf1288147cb1b78ee888bb3e10e03ca0bc5be894460c6683c33f1f1f7268bdec561e2eee23e0023a
|
||||
DIST simplisafe-python-3.4.1.tar.gz 20330 BLAKE2B defad308661222bdf88aa7a0686f7e4461a7e0e9c0076c92e394a549770fd0670bdcaae9a2d48aa9893728e6085dcd4b4ed49804347c3f8fc5c76eeb89f0ac3b SHA512 f4d507bb52d528ff15ce8d51a6eda3ff6f678f979290219d7ff3db0477eed6e6f768690f810f75342e97a04024a118bb837a89b70920c91144ea4e09f91e14f6
|
||||
EBUILD simplisafe-python-3.1.14.ebuild 735 BLAKE2B b428201724a76bb66398b3b0a33741e0388d2a8f2a4dacd7670faa4b595f2259dcdbd7370646da3051af861d471b95ee0e49a2075a9ea51d78c244a7976a1bef SHA512 84b00d120d707d9b5cf3ef3477904cbd198a66a0c222e3f6299524d894b8f30fa2e2d8d2b09bb6c861a572dab3c6a37b1c06212a9e01c02726ea4344b6663f6f
|
||||
EBUILD simplisafe-python-3.4.1.ebuild 735 BLAKE2B b428201724a76bb66398b3b0a33741e0388d2a8f2a4dacd7670faa4b595f2259dcdbd7370646da3051af861d471b95ee0e49a2075a9ea51d78c244a7976a1bef SHA512 84b00d120d707d9b5cf3ef3477904cbd198a66a0c222e3f6299524d894b8f30fa2e2d8d2b09bb6c861a572dab3c6a37b1c06212a9e01c02726ea4344b6663f6f
|
||||
MISC metadata.xml 343 BLAKE2B 5a3b6c850698baa7bf4889f8d2c6aa8b2b94e4cbf399ff622e22f16970ab7737b0f5f1096286cf353881aa5032cd5f7cda140ab41668bb3c7b3318e85c6c7bf7 SHA512 9944f606edd3f7d4428cf3237a936dfd3367d11fa97cf832753e7d8a4ac2d43d888c4120895b95dabd592542ebf7af2f48031de755996405d04646de7fb8cd85
|
||||
12
dev-python/simplisafe-python/metadata.xml
Normal file
12
dev-python/simplisafe-python/metadata.xml
Normal 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">simplisafe-python</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
30
dev-python/simplisafe-python/simplisafe-python-3.1.14.ebuild
Normal file
30
dev-python/simplisafe-python/simplisafe-python-3.1.14.ebuild
Normal 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="A Python3, async interface to the SimpliSafe API"
|
||||
HOMEPAGE="https://github.com/bachya/simplisafe-python https://pypi.org/project/simplisafe-python/"
|
||||
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=""
|
||||
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/simplisafe-python/simplisafe-python-3.4.1.ebuild
Normal file
30
dev-python/simplisafe-python/simplisafe-python-3.4.1.ebuild
Normal 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="A Python3, async interface to the SimpliSafe API"
|
||||
HOMEPAGE="https://github.com/bachya/simplisafe-python https://pypi.org/project/simplisafe-python/"
|
||||
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=""
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user