add pypjlink2-1.2.0

This commit is contained in:
Andreas Billmeier 2019-11-23 22:08:34 +01:00
parent 4ceee5ffd8
commit f158d1eb02
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 pypjlink2-1.2.0
* add pilight-0.1.1
* add piglow-1.2.5
* add ha-philipsjs-0.0.8

View File

@ -0,0 +1,3 @@
DIST pypjlink2-1.2.0.tar.gz 6585 BLAKE2B 3c1bbca41681570ae4a323056fc4e9edf9be2bb2e0562f3676d13dab33d72db0d533b529f98ca4aef80e88e9af6ed1c696b315094a11d3c50b9dd7839c37980d SHA512 359c6bbd490eae450ab5c9c7ee209f1d124badc485fa228a98a316cf6e30c33012568de9ae9621363ba337f10490b0cf332f9f85dea27d978b5383443fa40715
EBUILD pypjlink2-1.2.0.ebuild 730 BLAKE2B c931ca9bf5f21d7cb618445c17131cefd42c373c555c3590e37005d80fcdab44dad00c6f2394692432a3cabff22bdb547cd6a20d8f7edfcf975d329ff258261f SHA512 a08939b8b2ad94c2a4312cc5a73fddd3cd8dd69a1124917afee54e5df6797cd633b1b0de35844564968ede998d628246438a0fad98affb9f7f7c47446d1c6f9e
MISC metadata.xml 575 BLAKE2B 1f154f635fd98c60780bf8823eb6c4f16be017cbd89a7ea15bfd6d448e6da82823c73d0c7f8e44e5debe58c098a36a8e58bdf96769dade38db171c14f435dfd4 SHA512 f8ffaeb5f43ae94bc6bbae00a36bb444ec92e3bd5047766057fa7d9527f442907ebf18ae0cadc096d7334ff43958e6d388b8ed674b4c0c88a6ea38d7a9d919bd

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">pypjlink2</remote-id>
<maintainer status="unknown">
<email>pypjlink@mm.st</email>
<name>Peter Ward &lt;peteraward@gmail.com&gt;, Gaetano Guerriero &lt;gaetano.guerriero@spacespa.it&gt;, Benoit Louy &lt;pypjlink@mm.st&gt;</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="PJLink is a standard for controlling data projectors."
HOMEPAGE="https://github.com/benoitlouy/pypjlink https://pypi.org/project/pypjlink2/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/appdirs[${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
}