bump python-telnet-vlc-2.0.1

This commit is contained in:
Andreas Billmeier 2021-02-17 10:12:39 +01:00 committed by Andreas Billmeier
parent a7e1b3bd35
commit e62f90564f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 2 deletions

View File

@ -1,3 +1,5 @@
DIST python-telnet-vlc-1.0.4.tar.gz 4138 BLAKE2B 6a74010cbff8caf15e92e6e66516b66c3f5b1a20b81ba27cd13df444a777ef89351e3527a47848d985c8acc06703ba35d5b44bc8e919614534506eea595d18eb SHA512 001d1a0e36c1e4e945b8991ded11cce44e25cbdf452f8cd8b2c624126caa0172dcea80c288c8ea3bc491140968e2155e3e714868911f98dff0a1a59c607b8fb7
DIST python-telnet-vlc-2.0.1.tar.gz 4515 BLAKE2B 537dca41b8f7db3ec59aaf6433b5e7048229afcd0399cc901de435727689485be00cdb4ce110ea6f061e28d47263bad0e40bbf9cc41924d890654bcab2f806a3 SHA512 b5d1c12164f59e1aefbc1e2965863a4cd40da6ab0cbfe8d11c3bbc9f7b62ba6478f9ff24fb69d577884d41334b4347cb49e4097144e2bd7cd8ec9db106a88b57
EBUILD python-telnet-vlc-1.0.4.ebuild 726 BLAKE2B db665136630d867e9beae870db2124c06124111ec441b92d9a1f246e1c6f6e2bdc1872438b116e678e5c5ef0fd16070f9941b07f25a6d17d6607b984f1e97d2a SHA512 4d8c66eff3c7efdd2f14ae1144a6660d51a1a67dac489e38abe40c3b923007fd41a0c04673f6df2389a65302bae2040b9cfff7677e21a480c7b41fe068624683
MISC metadata.xml 467 BLAKE2B 4083860faab2a1688c71586efecb04a442df305f6c0092cdeadfe9169cc985d4438d8ce7340eb73a438ac69ed1f202837542acc846c3b135800dd64ca75f9632 SHA512 4ba5df7c48d21a107cc623bebf6175c4876653afd29d2b2984b34706a4bd2fc06b0957376145e9b703a0e822d6a07e4937ed7beaae4db8c9b26c855aadd7a707
EBUILD python-telnet-vlc-2.0.1.ebuild 733 BLAKE2B 0066e1f8e036da4751e630d1fe8ca05fd40c37d6ff0fb1310a8715d81d4066c0850fd907003993b45508d85673d9be31b60d14f0daf30d53f4cab09595b2b805 SHA512 b2682ae308ec8b70cf1d842e90cd187a8199ebc56210dbf433cc3a703dafbe061fd8f93ca418fb75a8335b02d55eb157dde723e2109aea24f44407a10ee3aee0
MISC metadata.xml 495 BLAKE2B 1d610a6f05bd485be754a191b7e1c62e722e6bbae592e6c71b424e22cb5700d817cfb3bf5b20e5efd712d34e329b51949453b0732551378da4cb87223b1f7996 SHA512 c5f5a07ca74511f0d300f2803429f68e77d79f2bb73911c36577afafb689cf6e86675e14713b24eef4db641c1147962af4c71ec7a148c51b58f3f15a702cbcbd

View File

@ -9,7 +9,7 @@
<remote-id type="pypi">python-telnet-vlc</remote-id>
<maintainer status="unknown">
<email>rodripf@gmail.com</email>
<name>stephenmac7, rodripf</name>
<name>stephenmac7, rodripf, BilliAlpha, David McClosky</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7..9} )
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="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=""
BDEPEND="
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
}