add enigma2.media_player

This commit is contained in:
Andreas Billmeier 2019-03-12 22:54:51 +01:00
parent f0b643cbbe
commit c0d156da6a
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST openwebifpy-1.2.7.tar.gz 14395 BLAKE2B 9b3f4bc095510d16713de7e88feb5c91e87ab4f1a0bdcc6304aead63827fbe7dffd31ca31db9f54702476cf637db8075d43cf0411fe44a4c7d9aab5175834d91 SHA512 aa0c993c07e27434d0123a405411b6454e67b7fd3c77ad8f0f6164a04ffad634dbb0bc30e9399f74d5c79d382d1088e3c04320ed5b515d6dc1243c905e0f43c4
EBUILD openwebifpy-1.2.7.ebuild 787 BLAKE2B 179f627bc78a94a05d32ec5cd59e949bbe8b096dbbcda8cb4143558eac09f1120ac3be0555c382e9242695ef3000cd7016ec8f8c23ee384572471bc1565ae5d7 SHA512 a97d2847766724712c6282395d2b6c1478012b3941bdd929b87f311a4caceb69bdecc9929f265e44d18f439949f1b0e4efef4e348f10f6c0481be45f00c0aca0
MISC metadata.xml 463 BLAKE2B 78c9988ac68ae94029bd55dd776424189988ad07a32c8e195f37d4051c634b51ec114eb102e7dbf3f738abdfb3b71fc92a9aa0f3f9e7783733891a72decbf664 SHA512 c28b61670a47923af8bd54685be76f198cfc2364d07d5b441ceb6732f303d61d1891ee9e079b21b156829beddc20c0c35b1d1e418f0c3205b57edad3f669f80d

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">openwebifpy</remote-id>
<maintainer status="unknown">
<email>fbradyirl@github.io</email>
<name>Finbarr Brady</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Provides a python interface to interact with a device running OpenWebIf"
HOMEPAGE="https://github.com/fbradyirl/openwebifpy https://pypi.org/project/openwebifpy/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT license"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="=dev-python/requests-2.21.0-r1"
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
}