diff --git a/dev-python/pyintesishome/Manifest b/dev-python/pyintesishome/Manifest new file mode 100644 index 000000000..2bba1174f --- /dev/null +++ b/dev-python/pyintesishome/Manifest @@ -0,0 +1,3 @@ +DIST pyintesishome-1.5.tar.gz 8256 BLAKE2B 87226a09adab7e1660f51973704a091a126708cfcd5ee604556f46354ec71091cd6650947ff6b49f06366d65c9a4cbb30471cdfa2ae8882781eefa24bc9b2d60 SHA512 1a9fe9f8b8f6f49bd3ce41afcb1881fc0cbb04f7a88b3a6c45ced2de4d233f108951751b4b5d0361dc73d4ae12f823ba230000acdb39f784298128aa2f036d51 +EBUILD pyintesishome-1.5.ebuild 733 BLAKE2B d561519da38b5fe61fd679e2377b81512e00b8a09573b13c273b55854ea5bbbc0c1bd8be384f26df7df1127a4470840cc4b9a471ced0bc83b40da1091da02324 SHA512 9b5792ad336a84c58898b18102f97e0b592104b0747cff514ca0a633c81293d395ba0e3096cb32e6fb968a485153ed9ac1526bd9f2a481f35816bb1cc6166fc1 +MISC metadata.xml 462 BLAKE2B fe926a3bf8a3bdf4a433998d26a75188596ffcf38644bf276c7a522681bf615a4a80e0aa5192636f4b3965146d54f386f1712bc896afbd187be67eb14250d9cf SHA512 5e8dc8815969ee0a182e7f6a54adcb29b2d50eb306b567f8e1a2c9dc0a19549656e878f0ba1fd0a912bb94a52a99377e168841a3c701ce3099011444b1d2649a diff --git a/dev-python/pyintesishome/metadata.xml b/dev-python/pyintesishome/metadata.xml new file mode 100644 index 000000000..44f2b58fc --- /dev/null +++ b/dev-python/pyintesishome/metadata.xml @@ -0,0 +1,16 @@ + + + + + b@edevau.net + Andreas Billmeier + + python + + pyintesishome + + james@nimmo.net.nz + James Nimmo + + + diff --git a/dev-python/pyintesishome/pyintesishome-1.5.ebuild b/dev-python/pyintesishome/pyintesishome-1.5.ebuild new file mode 100644 index 000000000..223884577 --- /dev/null +++ b/dev-python/pyintesishome/pyintesishome-1.5.ebuild @@ -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="A python3 library for running asynchronus communications with IntesisHome Smart AC Controllers" +HOMEPAGE="https://github.com/jnimmo/pyIntesisHome https://pypi.org/project/pyintesishome/" +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 +}