blob: 8099a6ed4c607198f7482040dd911599e51f6d06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..11} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1
DESCRIPTION="Send videos from many, many online sources to your Chromecast"
HOMEPAGE="https://github.com/skorokithakis/catt"
SRC_URI="https://github.com/skorokithakis/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64"
# Seems that all tests makes external connections
RESTRICT="test"
DEPEND="
dev-python/click[${PYTHON_USEDEP}]
dev-python/pychromecast[${PYTHON_USEDEP}]
dev-python/ifaddr[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
net-misc/yt-dlp[${PYTHON_USEDEP}]
"
RDEPEND="${DEPEND}"
#distutils_enable_tests pytest
|