add pyrecswitch-1.0.2

This commit is contained in:
Andreas Billmeier 2019-11-23 23:10:45 +01:00
parent 4504bb18a3
commit 4bc0f0603f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add pyrecswitch-1.0.2
* add recollect-waste-1.0.1
* add raspyrfm-client-1.2.8
* add raspihats-2.3.0

View File

@ -0,0 +1,3 @@
DIST pyrecswitch-1.0.2.tar.gz 7226 BLAKE2B ffed473961dad13bce9ce51a33b1d73b1c0584126206a01224c1f3af7bfad0a53936bc0b5de3447b19b53b812847e93ad3b35d85b0beec7e15b4c1a551a74222 SHA512 81cad79a3cb142598fe78faed0805173e2b97fa245b987ffd5e7ca2b746435960cb7d3974d4b3456a596999ea19a67639b19db165e8db81e70c9bc6a10d4e2d4
EBUILD pyrecswitch-1.0.2.ebuild 757 BLAKE2B e663898e340c3fec7bdd1c0a64f64dbe52e5debc28fabf0111fb68a7a63fa28e6dd9288a2870dbf4b9b21c61600b9534e82d505163feb95a85cfdeed7a769a6b SHA512 f463ef42404fbbdab73527beaeb3fad8f0d8cc50d01e296dc935b64df774841d8d26c4d676b1bd09723cd894d128244607e54ad141898cdb037e44c2ef4b67b6
MISC metadata.xml 467 BLAKE2B 1a8b5fee8aca7682bfbb477d14ef35f88974e04e9d3a032d09f91c5a766e4b357e3787feff38c897d7c83a793556ffc257704b2acc22622084b06d79c981c439 SHA512 1afa68296eafdb80bacda73f3449cb2f086024a78acacc42c7cdfe4fd112d534bbe1f9187e62bc0008a1aff2bda3432d2d74c402966311684f4038893032614c

View File

@ -0,0 +1,16 @@
<?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">pyrecswitch</remote-id>
<maintainer status="unknown">
<email>marco.lertora@gmail.com</email>
<name>Marco Lertora</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -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 pure-python interface for controlling Ankuoo RecSwitch MS6126"
HOMEPAGE="https://github.com/marcolertora/pyrecswitch https://pypi.org/project/pyrecswitch/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="AGPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/pycryptodome-3.6.6[${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
}