add pilight-0.1.1

This commit is contained in:
Andreas Billmeier 2019-11-23 22:06:43 +01:00
parent 67cca369d0
commit 4ceee5ffd8
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add pilight-0.1.1
* add piglow-1.2.5
* add ha-philipsjs-0.0.8
* add pencompy-0.0.4

View File

@ -0,0 +1,3 @@
DIST pilight-0.1.1.tar.gz 19497 BLAKE2B 68fd0e2dae31745c486ad4917b3dc953572de79554b59e83c05c8c4ea64c1dff3228281460cbe2e250e24c79fc0e0383d6736dd034e8c3291ed67c239f11875a SHA512 135cb7d6f60148defb178ce93da25ee37f1e9068827d1bfd52bb2ab1b8e4ce074c2eec4059b47ff636768bf4b79c651b0c1b11afd1de38f3ec8d2dc50c0c06eb
EBUILD pilight-0.1.1.ebuild 709 BLAKE2B 2b742d0edcce3a81f3c3e1a16e28a43b3c395569c83fe55706762b549980f2aba5de74a6bcf4198dbe9f02f22ff8accd4ea23e205d7129330d73366f99b14a45 SHA512 ec8dcbf424f9a1ee87d39d4c6432a77e6d1a8063e65ae99a27fc88bfabf079ce3e712f2830db06a1c99867abbfed1c39694287e0c44804ab3f1c52b8baf9710f
MISC metadata.xml 464 BLAKE2B e6202550f1e87576596f4d9cdd772c40d43f346c1a8858c85d2a13d123de9d99efb40d773101c2c56fd51718de9c180e5a0fdc76d7fad29c72f40f89037d6202 SHA512 6734dd1f85ad646dd4b2f00851293947d7666afb137c8429f22bd88228bdfe1e9180ec0fa5653a6111829b828103c0205efa447a34fa4b10499cbf18aba68609

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">pilight</remote-id>
<maintainer status="unknown">
<email>David-Leon.Pohl@rub.de</email>
<name>David-Leon Pohl</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="A pure python module to connect to a pilight daemon to send and receive commands."
HOMEPAGE="https://github.com/DavidLP/pilight https://pypi.org/project/pilight/"
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=""
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
}