update sisyphus-control-3.0

This commit is contained in:
Andreas Billmeier 2020-11-09 21:32:00 +01:00 committed by Andreas Billmeier
parent 16256f3a57
commit 83836ab40a
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 37 additions and 0 deletions

View File

@ -14,6 +14,7 @@
* bump colorlog-4.6.2
* bump HATasmota-0.0.27
* bump broadlink-0.16.0
* update sisyphus-control-3.0
2020-11-07
* update xknx-0.15.0-r1 (add a dep for standalone installation)

View File

@ -1,3 +1,5 @@
DIST sisyphus-control-2.2.1.tar.gz 10145 BLAKE2B b4db68275aef76a9fb075cd54c8af4c08a81a01cddfdc7bd199b08d5f6c8ad408717e9bba64c3e7a1e0482566356110b1520ce69249af70159efb61f959c57a3 SHA512 bb6d0c897d61a265ec75775c1e2da0c96a552565ce908257f635b5ca9e85f7472009c247b85dec8f5ecc524d7af573afd1e404bcdb9c99ea386ee17fa4100b31
DIST sisyphus-control-3.0.tar.gz 13060 BLAKE2B 063b0f3a6f412fa18985415d46d69c8f140644eaf561efb93afc652caf386338b75042713891cc553aef3aded695b7277336f5ca65d64237be606f6b664c006c SHA512 f4dedfc1ec217ae7e42a94c05b3062816a477f6e0b5c6178c2b18a710c09551978b1453bac2595871736709cfe61c83e27843a3e6ef87e7fe29738559b25d223
EBUILD sisyphus-control-2.2.1-r1.ebuild 876 BLAKE2B 05de0f2e3e349549b39eb124e26b678cd13d8baf1401ea1a705b59592ea6c0e03ebcb8dd2d7a352938583b6aec6fb9e1878e65a78d3e63d954605c6aabacbbdd SHA512 db43fc04ccc5e483b1a0936e0e5e0dc8dd91c8eb53fe5299d998331c150d4e84afc4263e34c9e7ccf76b165ccdc9ad7c0dee494ea7072c3eb8b82fe4bbf31e07
EBUILD sisyphus-control-3.0.ebuild 889 BLAKE2B c71644ee3653ec73ff006bec31ee4ef87c46348ceb1855ae96c4c3ae8f421726151b0681ba36025b793e6985cd66249ed941970041e4420795570d840aa18f2a SHA512 212d053376b4c2c7f934f418cd9e58b981b7da2f1bd2f353203f39ecd8b5f3372130f3b59394e1e8477fcbb64deaf4e87874c5f5aadda016901b31d2f20a496a
MISC metadata.xml 335 BLAKE2B fef677fb92f4f94e9d441a6673f247367d57c69d2f4f2f7376190d2fc539c993ae3d3cf2b57e4e49c23d5decebaeb46f9ea2b65b71d78fe70119b0690cf0585a SHA512 b68e39c79ae16765757e85204aea828ac7937d7440c2175b711db1092dc35a4bfcaeefda83b2b7cbfa6d6e3d0d215ef82d021083fd2cb0a8ddcf22f967ce4b2b

View File

@ -0,0 +1,34 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{5..8} )
inherit distutils-r1
DESCRIPTION="Control your Sisyphus kinetic art tables (sisyphus-industries.com)"
HOMEPAGE="https://github.com/jkeljo/sisyphus-control https://pypi.org/project/sisyphus-control/"
SRC_URI="https://github.com/jkeljo/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/netifaces[${PYTHON_USEDEP}]
dev-python/python-socketio[${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
}