mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-22 21:43:03 -04:00
58 lines
1.6 KiB
Bash
58 lines
1.6 KiB
Bash
# Copyright 2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{10..12} )
|
|
inherit desktop distutils-r1 xdg
|
|
|
|
DESCRIPTION="A cross platform front-end GUI of the popular youtube-dl written in wxPython."
|
|
HOMEPAGE="https://yt-dlg.github.io/yt-dlg/"
|
|
# Using latest commit from August 16, 2023 as of November 1, 2023.
|
|
# Latest releases and tags are from 2021 and are probably deprecated and incompatible with current Python versions.
|
|
# Same applies for the dependencies of yt-dlp.
|
|
SHA="692e5c5deee95c721a4ad92ecae7ca86de8bef35"
|
|
SRC_URI="https://github.com/yt-dlg/yt-dlg/archive/${SHA}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="public-domain"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
IUSE="ffmpeg test"
|
|
|
|
|
|
|
|
# net-misc/youtube-dl isn't available in gentoo anymore but I kept it as a dependency option just in case someone still use it or yt-dlp gets merged to youtube-dl.
|
|
DEPEND="${PYTHON_DEPS}
|
|
>=dev-python/wxpython-4.2.0:*[${PYTHON_USEDEP}]
|
|
|| (
|
|
net-misc/youtube-dl[${PYTHON_USEDEP}]
|
|
net-misc/yt-dlp[${PYTHON_USEDEP}]
|
|
)
|
|
>=dev-python/PyPubSub-4.0.3
|
|
ffmpeg? ( media-video/ffmpeg )
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND=""
|
|
|
|
python_test() {
|
|
local tests=( ditem dlist parsers utils widgets )
|
|
local current_test
|
|
for current_test in tests; do
|
|
"${EPYTHON}" "tests/test_${curent_test}.py" || die "Tests fail with ${EPYTHON}"
|
|
done
|
|
}
|
|
|
|
# I don't know how to enable the test phase.
|
|
distutils_enable_tests pytest
|
|
|
|
S="${WORKDIR}/${PN}-${SHA}"
|
|
|
|
DOCS=( README.md )
|
|
|
|
src_install() {
|
|
distutils-r1_src_install
|
|
domenu yt-dlg.desktop
|
|
}
|