From 09332178f7996d1d2353a37909e664a57340987a Mon Sep 17 00:00:00 2001 From: Andreas Billmeier Date: Sun, 3 Mar 2019 18:58:03 +0100 Subject: [PATCH] add simplisafe-python --- dev-python/simplisafe-python/Manifest | 5 ++++ dev-python/simplisafe-python/metadata.xml | 12 ++++++++ .../simplisafe-python-3.1.14.ebuild | 30 +++++++++++++++++++ .../simplisafe-python-3.4.1.ebuild | 30 +++++++++++++++++++ 4 files changed, 77 insertions(+) create mode 100644 dev-python/simplisafe-python/Manifest create mode 100644 dev-python/simplisafe-python/metadata.xml create mode 100644 dev-python/simplisafe-python/simplisafe-python-3.1.14.ebuild create mode 100644 dev-python/simplisafe-python/simplisafe-python-3.4.1.ebuild diff --git a/dev-python/simplisafe-python/Manifest b/dev-python/simplisafe-python/Manifest new file mode 100644 index 000000000..1f839db99 --- /dev/null +++ b/dev-python/simplisafe-python/Manifest @@ -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 diff --git a/dev-python/simplisafe-python/metadata.xml b/dev-python/simplisafe-python/metadata.xml new file mode 100644 index 000000000..0b76cd9a2 --- /dev/null +++ b/dev-python/simplisafe-python/metadata.xml @@ -0,0 +1,12 @@ + + + + + b@edevau.net + Andreas Billmeier + + python + + simplisafe-python + + diff --git a/dev-python/simplisafe-python/simplisafe-python-3.1.14.ebuild b/dev-python/simplisafe-python/simplisafe-python-3.1.14.ebuild new file mode 100644 index 000000000..b0a39b5b3 --- /dev/null +++ b/dev-python/simplisafe-python/simplisafe-python-3.1.14.ebuild @@ -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 +} diff --git a/dev-python/simplisafe-python/simplisafe-python-3.4.1.ebuild b/dev-python/simplisafe-python/simplisafe-python-3.4.1.ebuild new file mode 100644 index 000000000..b0a39b5b3 --- /dev/null +++ b/dev-python/simplisafe-python/simplisafe-python-3.4.1.ebuild @@ -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 +}