add pyblackbird-0.5

This commit is contained in:
Andreas Billmeier 2019-02-18 19:40:03 +01:00
parent 76377fd054
commit 3a0b0638a5
3 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST pyblackbird-0.5.tar.gz 4555 BLAKE2B cfbc1133063ba8bcc434f20893e0b840b0598c9a6d91c4fcb299e3b718671480f12251cc299770eb38bc5a883e4b413f5678a9a6dd77e1ade16c40a2a547cc38 SHA512 88d81a674499ea562ffbc5924194f6fe2b4269a3cb2f99dc9c1a0994f71f6164c9204cc6a7ca10ed6f483bdf642262fc5807e532491c7eba9207d8bf03005921
EBUILD pyblackbird-0.5.ebuild 707 BLAKE2B 117dcc1fa9f0e9347e58dddde56e4d5a98398b39fcaf7b950fdd8e0facb12f4ac305ee806a68a9a60d2e23726962ed307054f760885f0e216bdcf435cee29f3c SHA512 70eddee9c479cbd14eaaeed2ce3fa376055885a455f35647dc0c25b63c8a3cfe8fdefd80c3c9f885581edf08d82077a81305fb01c80d035942f483c406b9d37b
MISC metadata.xml 363 BLAKE2B b8c7a82ffd57b1fabaf2879141a921d1ad4d0c65324d7c26ead940aefda08bedb0abeb2c51e320a4b96a5397020f9a48d1df9f4279b21d00e427d69e0480a54c SHA512 83a93ade61ed0697dfadfd971afd01d4e25ba87f8e1cee8ebe11b7ba874d3db65972ec4beecb2768f146051f14f1b2f88c6c5fbf433f23242439bcef0e35d531

View File

@ -0,0 +1,12 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<upstream>
<remote-id type="pypi">pyblackbird</remote-id>
<maintainer status="unknown">
<email>koolsb@my.uwstout.edu</email>
<name>Ben Kools</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v3.0
EAPI=6
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Python API for talking to Monoprice Blackbird 4k 8x8 HDBaseT Matrix"
HOMEPAGE="https://github.com/koolsb/pyblackbird https://pypi.org/project/pyblackbird/"
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
}