diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest deleted file mode 100644 index 3014a1b..0000000 --- a/net-misc/youtube-dl/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST youtube-dl-2020.11.26.tar.gz 3218922 BLAKE2B 4e8ac926a7cef9d8a9f53de1002464e4d3a632d09c6564e1451a7bc49fe4cdf72e206f98df58a4025d55718f46d84fe4f1f6e23268ef19ad3ebd11725d5a0fcc SHA512 126c299c3db654ad3c88ced44bfc1a34bd73a439d8d3fd64720bb5d06fe84df817182a9e0b38d1def2eb4f1de26c7e2b8b6d3d6b4282f973db548c9868938a41 -DIST youtube-dl-2020.12.07.tar.gz 3230051 BLAKE2B c1b1a9abb2df718b1baea2f13817c81070f12193ee1f8ffc5952fb549dd04b967badc8c94a0d78b96dc39123ac792234d6b27038e00b63446edb051d68958d82 SHA512 b435a10cf56f93ed5ab77b9073ae2565d10ca345da727dff3db1171cb073eab81e6b0e2a94f5abf98e657ea266d4252948de0c1ef99253d8439490ae62a81e7f diff --git a/net-misc/youtube-dl/files/nrk.patch b/net-misc/youtube-dl/files/nrk.patch deleted file mode 100644 index d569c2b..0000000 --- a/net-misc/youtube-dl/files/nrk.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff --git a/youtube_dl/extractor/nrk.py b/youtube_dl/extractor/nrk.py -index 94115534b..318a45551 100644 ---- a/youtube_dl/extractor/nrk.py -+++ b/youtube_dl/extractor/nrk.py -@@ -75,8 +75,9 @@ class NRKBaseIE(InfoExtractor): - entry_id, entry_title = video_id_and_title(num) - duration = parse_duration(asset.get('duration')) - subtitles = {} -- for subtitle in ('webVtt', 'timedText'): -- subtitle_url = asset.get('%sSubtitlesUrl' % subtitle) -+ subtitle_base = asset.get('timedTextSubtitlesUrl') -+ for subtitle in ('ttml', 'vtt'): -+ subtitle_url = re.sub(r"ttml$", subtitle, subtitle_base) - if subtitle_url: - subtitles.setdefault('no', []).append({ - 'url': compat_urllib_parse_unquote(subtitle_url) diff --git a/net-misc/youtube-dl/metadata.xml b/net-misc/youtube-dl/metadata.xml deleted file mode 100644 index 6a4728c..0000000 --- a/net-misc/youtube-dl/metadata.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - jer@gentoo.org - - diff --git a/net-misc/youtube-dl/youtube-dl-2020.11.26-r1.ebuild b/net-misc/youtube-dl/youtube-dl-2020.11.26-r1.ebuild deleted file mode 100644 index aba02b2..0000000 --- a/net-misc/youtube-dl/youtube-dl-2020.11.26-r1.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# 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" -} diff --git a/net-misc/youtube-dl/youtube-dl-2020.12.07.ebuild b/net-misc/youtube-dl/youtube-dl-2020.12.07.ebuild deleted file mode 100644 index 47f8343..0000000 --- a/net-misc/youtube-dl/youtube-dl-2020.12.07.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# 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 - distutils-r1_src_prepare -} - -python_test() { - emake offlinetest -} - -python_install_all() { - 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" -}