add sisyphus-control-2.2.1

This commit is contained in:
Andreas Billmeier 2019-08-18 09:01:10 +02:00
parent b90470596c
commit 5066f2d49d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 61 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST sisyphus-control-2.2.1.tar.gz 10145 BLAKE2B b4db68275aef76a9fb075cd54c8af4c08a81a01cddfdc7bd199b08d5f6c8ad408717e9bba64c3e7a1e0482566356110b1520ce69249af70159efb61f959c57a3 SHA512 bb6d0c897d61a265ec75775c1e2da0c96a552565ce908257f635b5ca9e85f7472009c247b85dec8f5ecc524d7af573afd1e404bcdb9c99ea386ee17fa4100b31
EBUILD sisyphus-control-2.2.1.ebuild 1567 BLAKE2B 009bc5ade4e7ef59cede41992c759a4bb355a88d4ff129178d776c6067a3ea447a6cd5bb77a748bbd7926dabd331a70303a21ff309af8dd2596a4e7c7740e122 SHA512 97fb714045cff80a300d10d5122cef4d7c006526627a64da72ccd4b7b45be4070147d76ed70c5e8ec693a35a2f8d873f1539ba82c7e1b44bcfd7a1291b436da2
MISC metadata.xml 342 BLAKE2B d9f656927d1e3e9b6426fbd45b3eaf26905d8d89b4d61775fbf03a21abb6b210bc4367f012eaf2f927c23a720488ab2331a2138e5c6acea8a657dcf4faebd185 SHA512 49fc47cc3b20adb4617df0a6a07620958cb3ec9bd929255617481656f7c7b59347b95e8d47e027cd5b1943f59d2de78d6c2f15f93cd7ddf70f0dc9e629c5fd3d

View File

@ -0,0 +1,12 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">sisyphus-control</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,46 @@
# 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="Control your Sisyphus kinetic art tables (sisyphus-industries.com)"
HOMEPAGE="https://github.com/jkeljo/sisyphus-control https://pypi.org/project/sisyphus-control/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
SRC_URI="https://github.com/jkeljo/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE=""
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="~dev-python/aiohttp-3.5.4[${PYTHON_USEDEP}]
~dev-python/async-timeout-3.0.1[${PYTHON_USEDEP}]
~dev-python/attrs-19.1.0[${PYTHON_USEDEP}]
~dev-python/certifi-2019.6.16[${PYTHON_USEDEP}]
~dev-python/chardet-3.0.4[${PYTHON_USEDEP}]
~dev-python/idna-2.8[${PYTHON_USEDEP}]
~dev-python/idna-ssl-1.1.0[${PYTHON_USEDEP}]
~dev-python/multidict-4.5.2[${PYTHON_USEDEP}]
~dev-python/requests-2.22.0[${PYTHON_USEDEP}]
~dev-python/six-1.12.0[${PYTHON_USEDEP}]
~dev-python/socketIO-client-nexus-0.7.6[${PYTHON_USEDEP}]
~dev-python/typing-extensions-3.7.4[${PYTHON_USEDEP}]
~dev-python/urllib3-1.25.3[${PYTHON_USEDEP}]
~dev-python/websocket-client-0.56.0[${PYTHON_USEDEP}]
~dev-python/yarl-1.3.0[${PYTHON_USEDEP}]"
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
}