add russound-0.1.9

This commit is contained in:
Andreas Billmeier 2019-11-24 11:28:40 +01:00
parent 305d5da93e
commit fd54c28b76
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-23 (reverse added today)
* add russound-rio-0.1.7.ebuild
* add russound-0.1.9
2019-11-22 (reverse added today)
* add my own hdate-0.9.3

View File

@ -0,0 +1,3 @@
DIST russound-0.1.9.tar.gz 7095 BLAKE2B 1f88d806bbe07d4941139a0efa24238164b37a3b4693b93ec7f6e19e8d779079275cfe53a1c5adffacb369297ec19ff878288377e0313ac435afbf2cb94072be SHA512 eaa8d9dcf020581cc0ea0a1e7d2cc1bf80f1532637c2e734f0c8a65921037516946c1c972c063615b66c48e46da1f191aca341e1d0c4ac268271c88665a0a84e
EBUILD russound-0.1.9.ebuild 766 BLAKE2B 26483cfaf127c6429ac156925230afaeacf836bf8c6795abdd70e886b4c7a2075e172d54177ab32e9df18c97de83d0bdf14df8fe9b9fd07b0f8d1dc5e1745464 SHA512 c7f3da81edf49dffec275df305d02ee8cfa22f66547bd49413c0ee4d2484602bb372ba7406d27822a1207f7cbc4f7b7a0698d513bbd24416a5aefa30d94507ae
MISC metadata.xml 460 BLAKE2B f826313e2d481a3e79cfb2a9a89213b2be8bf50e52eb7125c0456215af52483a4737d744bbf1f67976857076f808dbb3e932693bbfe06ced499ca5de6714c4ff SHA512 c11cb8f933cba3bc97f810ab461ef35ed74037069e21ba80ea23012c8c13974f5fcf1f8a34a1e52a5ec374474d44f8d8b741ff21fa9d0b82d7048cef2c415a1e

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">russound</remote-id>
<maintainer status="unknown">
<email>neil@lathwood.co.uk</email>
<name>Neil Lathwood</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="Python API for select Russound RNET commands to provide Russound support within home-assistant.io"
HOMEPAGE="https://github.com/laf/russound.git https://pypi.org/project/russound/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${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
}