diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 5a63e6aa3..0919a962d 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,5 @@ 2019-11 23 (reverse added today) + * add satel-integra-0.3.4 * update pysaj-0.0.14 * add pysabnzbd-1.1.0 * add russound-rio-0.1.7.ebuild diff --git a/dev-python/satel-integra/Manifest b/dev-python/satel-integra/Manifest new file mode 100644 index 000000000..695face2e --- /dev/null +++ b/dev-python/satel-integra/Manifest @@ -0,0 +1,3 @@ +DIST satel-integra-0.3.4.tar.gz 17988 BLAKE2B 880c5863f723288270813ab8b4651975258b81930c795c088ef7a52662ebc055f9f3fe24fc6d57e3d103bcd6197b3b257d98f44060c25cb30db4a1a4359e5c81 SHA512 a4105c1deb9cd5eada05234e0ad64c5cddeeec45566dfe7f71cc46f82ce9601e8d872e15b24da6f2c7e02c338a7a4c5fa7185adcbafb9ac4bb16d382db7742bc +EBUILD satel-integra-0.3.4.ebuild 881 BLAKE2B 107f2717a28f292521d2404fdf1294823fba100f8a3ce1d8d4a232b3f2506e6154288e6db16b0cd79d5f61b7bf576b04795e8e68df8ebdbe68ac675c0e9c265e SHA512 2f0fe1b1e8a23a2f8bf947ccdf7db139db553dc8e45678442fdc37874e7ee62ded3e58ce0068243e18214969ba20b826b4424de3a09346e88e244301da1a03be +MISC metadata.xml 486 BLAKE2B 6f6910108a7952d21f11c6334ea46f9a2ed7e93296caf01fe7640bf562abb5461d713f179e0b28ad557f6b93a7f9ad4c8a7fe24f5fffd51ff542920f731d1dea SHA512 d7b6ad5a27e6dd520becf792fa79489fcc9b0916220fcc27f603d43245ccafdb84a6c76c9edeb857ba7c1b5f56801bbb55278530313bad9c80182a39198f46ae diff --git a/dev-python/satel-integra/metadata.xml b/dev-python/satel-integra/metadata.xml new file mode 100644 index 000000000..b7ea1ef92 --- /dev/null +++ b/dev-python/satel-integra/metadata.xml @@ -0,0 +1,16 @@ + + + + + b@edevau.net + Andreas Billmeier + + python + + satel-integra + + krzysztof.machelski+pypi@gmail.com + Krzysztof Machelski + + + diff --git a/dev-python/satel-integra/satel-integra-0.3.4.ebuild b/dev-python/satel-integra/satel-integra-0.3.4.ebuild new file mode 100644 index 000000000..350626907 --- /dev/null +++ b/dev-python/satel-integra/satel-integra-0.3.4.ebuild @@ -0,0 +1,33 @@ +# 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 + +MY_PN=${PN/-/_} +DESCRIPTION="Communication library and basic testing tool for Satel Integra alarm system. Communication via tcpip protocol published by SATEL." +HOMEPAGE="https://github.com/c-soft/satel_integra https://pypi.org/project/satel-integra/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND=">=dev-python/click-6.0[${PYTHON_USEDEP}]" +DEPEND="${REDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +S="${WORKDIR}/${MY_PN}-${PV}" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +}