dev-python/emulated-roku: update SRC_URI

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-06-10 20:38:45 +02:00 committed by Andreas Billmeier
parent 92514bcb5a
commit da4f9956f4
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 6 additions and 12 deletions

View File

@ -1,3 +1,3 @@
DIST emulated-roku-0.2.1.tar.gz 5744 BLAKE2B 0f0bdcae77aee77675157f4a2e11d30d0dc87b3856268ee13ffe35aa9c8fc46cdfbac23ffd3315e4844b6e1aa44dd38229f0a68163116ab6725f8ea47d58b74a SHA512 4b3e9614025c3d60d2ab240ae8310e5341144dd896296822a7ddb5acb3e5a4a74a815fc33a0dbe41b24747b3889ddfb1a77affa00f0ec78a44fad6a81710c744
EBUILD emulated-roku-0.2.1.ebuild 799 BLAKE2B 55cd98a353d9e6c01fa669676b28b3cf79770886f6acfed265e8b301d776e9b6a443bc9ba7702e332a92e20744cce8ff9a783c503a50f9471794a83a066ac9f2 SHA512 70b8a24b50443e384339294502614e68da8acfe747b8f5673f7cf6f2cd23663561694c009692575545e591dc6b0ae1c962e0496744883da84919e50f10cca403
DIST emulated_roku-0.2.1.tar.gz 5744 BLAKE2B 0f0bdcae77aee77675157f4a2e11d30d0dc87b3856268ee13ffe35aa9c8fc46cdfbac23ffd3315e4844b6e1aa44dd38229f0a68163116ab6725f8ea47d58b74a SHA512 4b3e9614025c3d60d2ab240ae8310e5341144dd896296822a7ddb5acb3e5a4a74a815fc33a0dbe41b24747b3889ddfb1a77affa00f0ec78a44fad6a81710c744
EBUILD emulated-roku-0.2.1.ebuild 682 BLAKE2B 0a064b98ef9ce98d72f36cd233f756b2b134abebd913203149bc548ef3623b440b3d6058521173635d2a4bd8d2e58718db9c76767977f3ad196e342c0c3373c2 SHA512 745744ac77016e2a2fe6dd3f5df9298580d94b3c8ebebbd51ac9d75dfd7cc755e7aa6f7bb300f1f452762d2a20209c11542f27fb75dccc11d09c8884d9709ba3
MISC metadata.xml 401 BLAKE2B 7bb622fa7400663814631ea265f41fcd0d03ed77260d79808dfeaf04168ad683e6f724061c507f2bac367e74cfd2f3cb808efc5a95497b0989888c4630e5f7ee SHA512 9507e92eefa770f51c2dbdb22ec3cead0c6b6525d5b79c1bdae6e337084fdfbae69b5fc28d08416fbd2a3cbb1c4e149cc495343e5014b307e55bd2764ed7797f

View File

@ -1,17 +1,14 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1
MY_P=${PN/-/_}-${PV}
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Library to emulate a roku server to serve as a proxyfor remotes such as Harmony"
HOMEPAGE="https://gitlab.com/mindig.marton/emulated_roku https://pypi.org/project/emulated-roku/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
@ -21,13 +18,10 @@ RESTRICT="!test? ( test )"
RDEPEND=">=dev-python/aiohttp-3.0.6[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
S=${WORKDIR}/${MY_P}
python_test() {
py.test -v -v || die
}