add nad_receiver-0.0.11

This commit is contained in:
Andreas Billmeier 2019-11-23 15:40:54 +01:00
parent d030b16ace
commit 4335498d04
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 46 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add nad_receiver-0.0.11
* add mbddns-0.1.2
* add pymysensors-0.18.0 and get-mac-0.8.1
* add mycroftapi-2.0 (Homepage dead and License missing)

View File

@ -0,0 +1,3 @@
DIST nad_receiver-0.0.11.tar.gz 5030 BLAKE2B cb5444094a80cf9064de31e986c42ca15bed91a5677d43843b2ea485ee768ee3f19e4299d347da1527e0a92b968e61bb7a7442d6d2a94945f204bebc45e64c8c SHA512 c9af5f8fb70ebf512cf0c5edece24e237fbd95914f25a6e650b2a952ba820ac1b2d72ee0b2f259c4d3334f360b2af272e184506a357eb6b3e9457d16bc2b2846
EBUILD nad_receiver-0.0.11.ebuild 752 BLAKE2B 5c42d42e60a5203b13cccafcbe324bd0651558122a25b20888b1cf3645335440f8699b7fdcf57d1895e466ba031e160d22a9ac7ecbcd7b3b89d70a1112034651 SHA512 587fec1225ad2552a084230922a0f0184dd44719bae395366cb382f08c06c7523065024c0cb87d2220e900fca121068caabeb8dfdc03887bcddbb3e80740b439
MISC metadata.xml 338 BLAKE2B 074dca62963f01faed63dd77677aaff9b413b4d0fb0fd77e6fde7d4873926b07940cdebb6fa6561816c754ef333596b74ecef41728db383cc4e7e9451ef79a0a SHA512 d33afd623d3064c99917bbfc5b29e8f868f8d47b39167d28be21e4c01d40454101819b3da5f7f0bf93cad08fe3d7ad4635e87cf97885b67bf74599af51f88b6c

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">nad_receiver</remote-id>
</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="Library to interface with NAD receivers through RS232, TCP and telnet"
HOMEPAGE="https://github.com/joopert/nad_receiver https://pypi.org/project/nad_receiver/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/pyserial-3.2.1[${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
}