add python-telnet-vlc

This commit is contained in:
Andreas Billmeier 2019-06-22 08:43:19 +02:00
parent 092894f23d
commit b97c82715d
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST python-telnet-vlc-1.0.4.tar.gz 4138 BLAKE2B 6a74010cbff8caf15e92e6e66516b66c3f5b1a20b81ba27cd13df444a777ef89351e3527a47848d985c8acc06703ba35d5b44bc8e919614534506eea595d18eb SHA512 001d1a0e36c1e4e945b8991ded11cce44e25cbdf452f8cd8b2c624126caa0172dcea80c288c8ea3bc491140968e2155e3e714868911f98dff0a1a59c607b8fb7
EBUILD python-telnet-vlc-1.0.4.ebuild 747 BLAKE2B 98c5482ba230802b30d33305cc283977fb2e66777a2ad9a423a333145869729bf0b20f941b40700b8eb3f372e0e038eb585b8c1f14000bdd8f0831f699841db8 SHA512 0778175299eb1ba043badada8e69a6896797767c8b9c16313cbb40d29a44613dff2ecf60bd9d0919b4a86dc7ab4ee3e22f763c95b6428354e5ba5f0f32d03465
MISC metadata.xml 474 BLAKE2B 5aa53572a82414157f79bfed521db4b860d104d9d2bc98b7cccd312a793ce7865be267af107590812ecd9405bf1a57db8dc2dda45a6f5d7437067eee6dc051c6 SHA512 55dbfe033e6cccbb25bddd77e8c92ded69b2862da11424b34163de440a8bd992086b4f7ad007c91b0760d04227bf58296c34137160f594367c4d0f6c77cc5795

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">python-telnet-vlc</remote-id>
<maintainer status="unknown">
<email>rodripf@gmail.com</email>
<name>stephenmac7, rodripf</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="A library to control or get information about VLC using Telnet"
HOMEPAGE="https://github.com/rodripf/python-telnet-vlc https://pypi.org/project/python-telnet-vlc/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE=""
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
}