add rpi-rf-0.9.7

This commit is contained in:
Andreas Billmeier 2019-11-23 23:46:48 +01:00
parent bdd4ba81ef
commit c869abf7d5
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11-22 (reverse added today)
* add rpi-rf-0.9.7
* add pifacecommon-4.2.2
* add pwmled-1.4.1, Adafruit-PCA9685-1.0.1, python-singleton-0.1.2
* add rocketchat-API-0.6.35

View File

@ -0,0 +1,3 @@
DIST rpi-rf-0.9.7.tar.gz 5764 BLAKE2B 553891aec5318f07aaf5e1c9dd38cf4924e025dff245acce5463321e3a24c6497626635f14c3084e6f3234b0963f1b0f9b67ba914410062c9180f6226b67a8bf SHA512 dcddc30a9b5cf4b7cbeb02cc6a808576d3792beea4e46fd098d8a3d00a392b5fc1f9e424792ad28beff50516b1706c957749020842f48f929bdfc359b3813077
EBUILD rpi-rf-0.9.7.ebuild 775 BLAKE2B 179d2ba1cf2027438854d69f4ec496c573d23980d05390d1933e95235c78fbc0b5fb34518555db87c77c21234388612a8b39703c4c1d6e7a6a4011779b59ade4 SHA512 36f762443cbed90e564f5de7f1a7e32b3a39364a6622820d40019a1d611532821dffe9d024f48916c9cf59fc8d69be8efae7ecab10553df9c5a0ae2fcd0c54f9
MISC metadata.xml 458 BLAKE2B a3257ea5958509d1a4d8346befd8dd6396e9ac805792a002bbd624c4cc09b81b4423f4102316516c4df62f1fcd02aa5fc99bee290d2706a816e47e187fdc25e0 SHA512 c87f71e48058c0f50e4a9bc7407c1b5a235d498be26d32e535c8b439785e36fd364ba3a3ab001787a57a426ee26497702ea1fb61c16d7a9eca37357aa2da1b9a

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">rpi-rf</remote-id>
<maintainer status="unknown">
<email>micha.laqua@gmail.com</email>
<name>Micha LaQua</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="Sending and receiving 433/315MHz signals with low-cost GPIO RF modules on a Raspberry Pi"
HOMEPAGE="https://github.com/milaq/rpi-rf https://pypi.org/project/rpi-rf/"
SRC_URI="https://github.com/milaq/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/RPi-GPIO[${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
}