Date: Sunday, February 6, 2022 @ 21:36:21 Author: arojas Revision: 1127277
Move dependencies to optdepends (FS#73653) Modified: yt-dlp/trunk/PKGBUILD ----------+ PKGBUILD | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-02-06 21:21:51 UTC (rev 1127276) +++ PKGBUILD 2022-02-06 21:36:21 UTC (rev 1127277) @@ -4,17 +4,20 @@ pkgname=yt-dlp pkgver=2022.02.04 -pkgrel=1 +pkgrel=2 pkgdesc='A youtube-dl fork with additional features and fixes' arch=(any) url='https://github.com/yt-dlp/yt-dlp' license=(Unlicense) -depends=(python-mutagen python-pycryptodomex python-websockets) +depends=(python) makedepends=(python-setuptools pandoc) optdepends=('ffmpeg: for video post-processing' 'rtmpdump: for rtmp streams support' 'atomicparsley: for embedding thumbnails into m4a files' - 'aria2: for using aria2 as external downloader') + 'aria2: for using aria2 as external downloader' + 'python-mutagen: For embedding thumbnail in certain formats' + 'python-pycryptodomex: For decrypting AES-128 HLS streams and various other data' + 'python-websockets: For downloading over websocket') source=($pkgname-$pkgver.tar.gz::https://github.com/yt-dlp/yt-dlp/releases/download/$pkgver/yt-dlp.tar.gz) sha256sums=('c8dd119c28a5d256322ddb3a2fff72bc02ace43fc5880c0065d97f7a48d7a8e3')
