From c2cf9c070fc100737f3e058ddc549e83ef86317e Mon Sep 17 00:00:00 2001 From: Alarig Le Lay Date: Mon, 16 Nov 2020 23:28:12 +0100 Subject: [PATCH] net-misc/youtube-dl: New release 2020.11.17 Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Alarig Le Lay --- net-misc/youtube-dl/Manifest | 1 + .../youtube-dl-2020.11.17-r1.ebuild | 74 +++++++++++++++++++ 2 files changed, 75 insertions(+) create mode 100644 net-misc/youtube-dl/youtube-dl-2020.11.17-r1.ebuild diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest index 2da654f..4f736c1 100644 --- a/net-misc/youtube-dl/Manifest +++ b/net-misc/youtube-dl/Manifest @@ -1,2 +1,3 @@ DIST youtube-dl-2020.11.01.1.tar.gz 3190146 BLAKE2B 9f0a6d5041f12881d0f028459054e9cd6fbb91de35dc3d61782889f97611a39fe4a8e1c28fd45585d638ec179f6d9cd6587b06ee2d268a9f44f83f282961f367 SHA512 2c84305a71776808797a651e22690a396c1bd4c922ab6f15b086516b836aa6ac3acf5b08f556567b11f470c0d972adbf67fb110dc34ccfc5c0897e576e42ebab DIST youtube-dl-2020.11.12.tar.gz 3188015 BLAKE2B 17267ce8c3068f3a1aca20b23a77a964b005fe4a64a5c37fd3f1d97e4daae4978379ff81b6e4ac4b86fa1f3d27f01b1742dc26e42ea5b8522e3408bfe9f9e944 SHA512 7db373f6cc252635a3613ffe0b3b10640e262778105ebbd78b837fe019b0a2609032d2aeb81b239e000a86220aff99d2c018a9a6325adad6981a8ab64048131c +DIST youtube-dl-2020.11.17.tar.gz 3186470 BLAKE2B 6786b005cbc214d9540525e0bff598c7a05f5a1001601095cc5837a74344d8dbd96aabdc6da3ce4d24d1e81f6bb8ec769bc8ae379321b5db451e1cde5bf0e2f9 SHA512 d26ecaaa013df91d0a149395c8e2962772b3bf5239f7d46bbb5024b50b1001ebda9be1ee80bbd77db31b99fbe2af248ce867a47257875cf18f25fb1aa4f3bf7f diff --git a/net-misc/youtube-dl/youtube-dl-2020.11.17-r1.ebuild b/net-misc/youtube-dl/youtube-dl-2020.11.17-r1.ebuild new file mode 100644 index 0000000..aba02b2 --- /dev/null +++ b/net-misc/youtube-dl/youtube-dl-2020.11.17-r1.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=(python3_{6..9}) + +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit bash-completion-r1 distutils-r1 readme.gentoo-r1 + +DESCRIPTION="Download videos from YouTube.com (and more sites...)" +HOMEPAGE="https://youtube-dl.org/ https://github.com/ytdl-org/youtube-dl/" +SRC_URI="https://youtube-dl.org/downloads/${PV}/${P}.tar.gz" +S=${WORKDIR}/${PN} + +LICENSE="public-domain" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +SLOT="0" + +RDEPEND=" + dev-python/pycryptodome[${PYTHON_USEDEP}] +" + +distutils_enable_tests nose + +src_prepare() { + sed -i -e '/flake8/d' Makefile || die + eapply "${FILESDIR}/nrk.patch" + eapply_user + distutils-r1_src_prepare +} + +python_test() { + emake offlinetest +} + +python_install_all() { + dodoc README.txt + doman ${PN}.1 + + newbashcomp ${PN}.bash-completion ${PN} + + insinto /usr/share/zsh/site-functions + newins ${PN}.zsh _${PN} + + insinto /usr/share/fish/vendor_completions.d + doins ${PN}.fish + + distutils-r1_python_install_all + + rm -r "${ED}"/usr/etc || die + rm -r "${ED}"/usr/share/doc/youtube_dl || die +} + +pkg_postinst() { + elog "${PN}(1) / https://bugs.gentoo.org/355661 /" + elog "https://github.com/rg3/${PN}/blob/master/README.md#faq :" + elog + elog "${PN} works fine on its own on most sites. However, if you want" + elog "to convert video/audio, you'll need ffmpeg (media-video/ffmpeg)." + elog "On some sites - most notably YouTube - videos can be retrieved in" + elog "a higher quality format without sound. ${PN} will detect whether" + elog "ffmpeg is present and automatically pick the best option." + elog + elog "Videos or video formats streamed via RTMP protocol can only be" + elog "downloaded when rtmpdump (media-video/rtmpdump) is installed." + elog + elog "Downloading MMS and RTSP videos requires either mplayer" + elog "(media-video/mplayer) or mpv (media-video/mpv) to be installed." + elog + elog "If you want ${PN} to embed thumbnails from the metadata into the" + elog "resulting MP4 files, consider installing media-video/atomicparsley" +}