From bd0405f4a21669cb9f063e19594723c7e63be5c2 Mon Sep 17 00:00:00 2001 From: Piotr Karbowski Date: Mon, 23 Aug 2021 22:45:35 +0200 Subject: net-misc/yt-dlp: new package. Signed-off-by: Piotr Karbowski --- net-misc/yt-dlp/Manifest | 1 + net-misc/yt-dlp/metadata.xml | 11 ++++++++ net-misc/yt-dlp/yt-dlp-2021.8.10.ebuild | 47 +++++++++++++++++++++++++++++++++ 3 files changed, 59 insertions(+) create mode 100644 net-misc/yt-dlp/Manifest create mode 100644 net-misc/yt-dlp/metadata.xml create mode 100644 net-misc/yt-dlp/yt-dlp-2021.8.10.ebuild (limited to 'net-misc/yt-dlp') diff --git a/net-misc/yt-dlp/Manifest b/net-misc/yt-dlp/Manifest new file mode 100644 index 000000000000..7787307fae08 --- /dev/null +++ b/net-misc/yt-dlp/Manifest @@ -0,0 +1 @@ +DIST yt-dlp-2021.8.10.tar.gz 1807968 BLAKE2B 664f9f5680c18531bb1c194e6e26a31b6be62894a88c6748bf146fbba79164fec6f5e6db017785daf6c8f5a2c1b7cfc0c2ee6c0d437b9d7bb4e1835eff73650f SHA512 fb321d308e634f6358f046762cc3e827b036083b4764d495bbcef253d06ce445152f4a330c51b5aac1eb3b21a8a345fc791f0fdbdc01089ea2a414b1cd457f20 diff --git a/net-misc/yt-dlp/metadata.xml b/net-misc/yt-dlp/metadata.xml new file mode 100644 index 000000000000..2b132d02ee42 --- /dev/null +++ b/net-misc/yt-dlp/metadata.xml @@ -0,0 +1,11 @@ + + + + + slashbeast@gentoo.org + Piotr Karbowski + + + yt-dlp/yt-dlp + + diff --git a/net-misc/yt-dlp/yt-dlp-2021.8.10.ebuild b/net-misc/yt-dlp/yt-dlp-2021.8.10.ebuild new file mode 100644 index 000000000000..33b03f947200 --- /dev/null +++ b/net-misc/yt-dlp/yt-dlp-2021.8.10.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit bash-completion-r1 distutils-r1 readme.gentoo-r1 + +DESCRIPTION="A youtube-dl fork with additional features and fixes" +HOMEPAGE="https://github.com/yt-dlp/yt-dlp" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" +KEYWORDS="~amd64 ~x86" +LICENSE="public-domain" +SLOT="0" + +RDEPEND=" + dev-python/pycryptodome[${PYTHON_USEDEP}] + media-libs/mutagen[${PYTHON_USEDEP}] + dev-python/websockets[${PYTHON_USEDEP}] + dev-python/keyring[${PYTHON_USEDEP}] + media-video/ffmpeg + +" + +distutils_enable_tests nose + +python_test() { + # make_lazy_extractors.py tries to rename it out, so fails if it does not exists. + mkdir ytdlp_plugins + epytest -k 'not download' +} + +python_install_all() { + doman yt-dlp.1 + + newbashcomp completions/bash/yt-dlp yt-dlp + + insinto /usr/share/zsh/site-functions + newins completions/zsh/_yt-dlp _yt-dlp + + insinto /usr/share/fish/vendor_completions.d + doins completions/fish/yt-dlp.fish + + distutils-r1_python_install_all + + rm -rf "${ED}"/usr/share/doc/yt_dlp || die +} -- cgit v1.2.3-65-gdbad