add russound-rio-0.1.7

This commit is contained in:
2019-11-24 11:25:37 +01:00
parent 6f795f6e21
commit 305d5da93e
4 changed files with 51 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,3 @@
DIST russound-rio-0.1.7.tar.gz 4017 BLAKE2B bf2751a1814bdd98271abc9b632016a5dec5e8fe14c41fbae700284ffb30f3cdf16c64845833b1bb30f97d5e45acbaf2c51e4ada68eb05853cdebdde32f8723d SHA512 1c0a539f0fa529192fd2629b4e7d4c4d2fc25d330394976a8a6459d323e2772af5af5271c9c257ea9f026ed7fca908afea52386981047d5cb223d00114436425
EBUILD russound-rio-0.1.7.ebuild 754 BLAKE2B 6e9a16da506f87e3bd8730cebdc803b8c2d81007127b1fe8ec70a2523c4a11adc4da4c45e75f2741a4f45247a861ec7d0699b4bb53c1ad67a11ea64863dbb3a0 SHA512 0504d69b73a73eef0e64c7282c5a382b796bc7e27ba51a0911603ac6d9e42e1817ad8db4f7d9602cc2c5a85f93c339f88835befa39d1e4151eecea7242d00965
MISC metadata.xml 338 BLAKE2B 226164623d7ed6e941033c567ac0e38a59a45b95f9c5bacdca45889680389f570692da893112a16d62370feec80f9a42607d8646a1ef1779bb56c8a539e2176f SHA512 0c441068fbf0d0cd3532dee5596499954d9e2c5dbd6f780565a23e94c77e641cce38a281863ca7d99acc8419f03f85d1968d0d5a9e32eb213117780a5a91b29d

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">russound-rio</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,33 @@
# 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
MY_PN=${PN//-/_}
DESCRIPTION="Asyncio client for Russound RIO devices"
HOMEPAGE="https://github.com/wickerwaka/russound_rio https://pypi.org/project/russound-rio/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
S="${WORKDIR}/${MY_PN}-${PV}"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}