add raspyrfm-client-1.2.8

This commit is contained in:
Andreas Billmeier 2019-11-23 23:01:55 +01:00
parent a4e09f13c7
commit cf9d9a7425
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 53 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add raspyrfm-client-1.2.8
* add raspihats-2.3.0
* add eagle200-reader-0.2.2
* add raincloudy-0.0.7

View File

@ -0,0 +1,3 @@
DIST raspyrfm-client-1.2.8.tar.gz 34643 BLAKE2B e5caf8e9f4eda5a027c3b22a0ae1b92229c2c7e698487a4e6b09667ab24cb81bb4ea113f9704e25018420c23e906b24178f185ad3e8de204f8d94231476585c4 SHA512 9eee488a2cb2989177f2bae8de4e6018322094308663b87fc00829919f76e27f4f6353fbce7d3d543057844cad7622e67f668fb9cbe10f292fa4c8278fdda018
EBUILD raspyrfm-client-1.2.8.ebuild 786 BLAKE2B 5d5448ec518e77790efc1905d035673675236cfe41a9583216d25517477134af1f94097210676de5cc2b609067d55b4fe249fed92bc793a57450e82b6108a42a SHA512 b3e0bd27a88b5306eefd6ef1549b049ccb774466c6bb824d549899e9eb1384d5834a58732613f0fb0712fe51327a150be4bbd150547bc55a23b5232da7f8e562
MISC metadata.xml 468 BLAKE2B 4507fe7f7a66622bf7aed7ce8dc977815ebac7c3df7855b3ca0aba2a8e071ecfcc0411fa8ea9557f3742de084c379db18c1f1adaab52753c3d0792194e17f2c1 SHA512 1c85a3cb23b7f1c9bc36b166a7fd3f1beaeb1ef350f1bd66349187befc421ff2ad1b5d7e20c60a433cebc654a98fd0e26581c0355128a8e6d6b4acc9c2fe42fb

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">raspyrfm-client</remote-id>
<maintainer status="unknown">
<email>mail@markusressel.de</email>
<name>Markus Ressel</name>
</maintainer>
</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="A library to send rc signals with the RaspyRFM module"
HOMEPAGE="https://github.com/markusressel/raspyrfm-client https://pypi.org/project/raspyrfm-client/"
SRC_URI="https://github.com/markusressel/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3+"
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
}