From 87aed54363a92b48a5764dc5d73d4805ea63e0ec Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Tue, 13 Jul 2021 21:30:05 +0200 Subject: [PATCH] update pyinsteon-1.0.11 --- dev-python/pyinsteon/Manifest | 2 ++ dev-python/pyinsteon/pyinsteon-1.0.11.ebuild | 37 ++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 dev-python/pyinsteon/pyinsteon-1.0.11.ebuild diff --git a/dev-python/pyinsteon/Manifest b/dev-python/pyinsteon/Manifest index 9118140f0..efb1f927f 100644 --- a/dev-python/pyinsteon/Manifest +++ b/dev-python/pyinsteon/Manifest @@ -1,3 +1,5 @@ +DIST pyinsteon-1.0.11.tar.gz 141207 BLAKE2B 84367cf3cf5aece3bd105ac6b551a5f56efefc4aa4b9d149e2f236c286a63c9e40ebe831c4a8afdc30b617fb66945186a3115ada87411de9e2cb2c7e102729ba SHA512 cffa43c389aeaf400a6e2cee13f97dcea5d189a5ec10f80da8fd919a469e16e2934a38ee890de8420c03aa32041043c8e2deee82ad5f91321f32b3c68d2362a0 DIST pyinsteon-1.0.9.tar.gz 139321 BLAKE2B 75df0fb39a8809e6b0c5d4802c7cdad41e15c5203033b739e674ed9b5ee80fdcfb316b0681942d3a18e725cfe8a9bea1acdb8252ad0fd2508a53a96e886cecc3 SHA512 7faedc77f6f7a8d319bd4c735d057b7dd568601a124e6689296f33d3f3114c2ee7e544042873bcf152294e6e8566c7d21ed38dec99f70a84f7936e2474262a19 +EBUILD pyinsteon-1.0.11.ebuild 952 BLAKE2B 24d022ccd0ccd614f55a7cc38a0a654456c8ea5d2078a5c8a2ba28c37dcad67bbad511397ad7115549529bf4c1e2eab5ed8cd480045740f9e9fa3e2d731c53b9 SHA512 c71941a8c68c4359beec7962a1729d7bd788e8b19be18f75425a140a4659f6e890ad0300f8d62f151c790f81073955827b142daa2fb1710e0c342731c76437a6 EBUILD pyinsteon-1.0.9.ebuild 974 BLAKE2B 28ed837ef4beca5e3c8f2f9bfe2fd92c201127c76046c98a17f9f36dad53a9ad8ea4c9cb4238935b3e665331e3f8a35128767aba678b98ef757a780112cb7452 SHA512 be8a140af2b65cefb9cbe3722af722f516e1a8bcd28495c089353c5332a095d59e61aa2027cb863ab1663ae6bbf451d20b185815d773a118c746d2d51acba5d5 MISC metadata.xml 474 BLAKE2B 4b53cc72d0f63f92c79ca63bfb7f99cb137f0e08504813fcf9257383926a3507fee90972c1d8416e0da92350b7fa975358d13925f68aca520343a19c5ffcd85f SHA512 8b0da9a23e1a64cbb6ab665cd2beb8bf111b845f71e4078276a043e756b407835fda4ef91506285efb13e9f9dbe555b0d70b7fe06d613aa71ad391c32a6db5b5 diff --git a/dev-python/pyinsteon/pyinsteon-1.0.11.ebuild b/dev-python/pyinsteon/pyinsteon-1.0.11.ebuild new file mode 100644 index 000000000..d9eddbf3c --- /dev/null +++ b/dev-python/pyinsteon/pyinsteon-1.0.11.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Python API for controlling Insteon devices" +HOMEPAGE="https://github.com/pyinsteon/pyinsteon https://pypi.org/project/pyinsteon/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +DOCS="DESCRIPTION.rst" + +RDEPEND="dev-python/pyserial[${PYTHON_USEDEP}] + dev-python/pyserial-asyncio[${PYTHON_USEDEP}] + dev-python/aiohttp[${PYTHON_USEDEP}] + dev-python/pypubsub[${PYTHON_USEDEP}] + dev-python/aiofiles[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}]" +BDEPEND="${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 +}