Date: Mon, 18 May 2020 17:37:52 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r535762 - in head/www/youtube_dl: . files Message-ID: <202005181737.04IHbq0j067341@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Mon May 18 17:37:52 2020 New Revision: 535762 URL: https://svnweb.freebsd.org/changeset/ports/535762 Log: www/youtube_dl: Update to 2020.05.08 [1] - Assign to myself after 3 consecutive maintainer timeouts - Improve comment a little - Always install shell completions - Install fish completion into vendor completions directory PR: 246128 [1] Approved by: araujo (maintainer timeout, > 2 weeks) Modified: head/www/youtube_dl/Makefile head/www/youtube_dl/distinfo head/www/youtube_dl/files/patch-Makefile Modified: head/www/youtube_dl/Makefile ============================================================================== --- head/www/youtube_dl/Makefile Mon May 18 17:36:46 2020 (r535761) +++ head/www/youtube_dl/Makefile Mon May 18 17:37:52 2020 (r535762) @@ -1,44 +1,41 @@ # $FreeBSD$ PORTNAME= youtube_dl -PORTVERSION= 2020.03.24 +PORTVERSION= 2020.05.08 CATEGORIES= www MASTER_SITES= https://yt-dl.org/downloads/${PORTVERSION}/ DISTNAME= youtube-dl-${PORTVERSION} -MAINTAINER= araujo@FreeBSD.org -COMMENT= Program for downloading videos from YouTube.com +# Implicit approval to commit trivial version updates. +MAINTAINER= tobik@FreeBSD.org +COMMENT= Program for downloading videos from various services LICENSE= UNLICENSE LICENSE_FILE= ${WRKSRC}/LICENSE USES= gmake python -ALL_TARGET= youtube-dl MAKE_ARGS= PYTHON=${PYTHON_CMD} +ALL_TARGET= youtube-dl NO_ARCH= yes WRKSRC= ${WRKDIR}/youtube-dl -OPTIONS_DEFINE= BASH FISH RTMPDUMP FFMPEG ZSH -OPTIONS_DEFAULT=BASH FISH RTMPDUMP ZSH -OPTIONS_SUB= yes -FISH_DESC= Install programmable completions for Fish -RTMPDUMP_DESC= Use RTMPDUMP to download rtmp video streams - PLIST_FILES= bin/youtube-dl \ + etc/bash_completion.d/youtube-dl.sh \ man/man1/youtube-dl.1.gz \ - %%BASH%%etc/bash_completion.d/youtube-dl.sh \ - %%FISH%%share/fish/completions/youtube-dl.fish \ - %%ZSH%%share/zsh/site-functions/_youtube-dl + share/fish/vendor_completions.d/youtube-dl.fish \ + share/zsh/site-functions/_youtube-dl -FFMPEG_RUN_DEPENDS= ${LOCALBASE}/bin/ffprobe:multimedia/ffmpeg -RTMPDUMP_RUN_DEPENDS= ${LOCALBASE}/bin/rtmpdump:multimedia/rtmpdump +OPTIONS_DEFINE= FFMPEG RTMPDUMP +OPTIONS_DEFAULT= RTMPDUMP +RTMPDUMP_DESC= Use rtmpdump to download rtmp video streams + +FFMPEG_RUN_DEPENDS= ffprobe:multimedia/ffmpeg +RTMPDUMP_RUN_DEPENDS= rtmpdump:multimedia/rtmpdump + post-extract: - @# remove tarball provided version, build our own +# remove tarball provided version, build our own @${RM} ${WRKSRC}/youtube-dl - -post-patch: - @${REINPLACE_CMD} -e 's|python devscripts/|${PYTHON_CMD} devscripts/|' ${WRKSRC}/Makefile .include <bsd.port.mk> Modified: head/www/youtube_dl/distinfo ============================================================================== --- head/www/youtube_dl/distinfo Mon May 18 17:36:46 2020 (r535761) +++ head/www/youtube_dl/distinfo Mon May 18 17:37:52 2020 (r535762) @@ -1,3 +1,3 @@ -TIMESTAMP = 1585003402 -SHA256 (youtube-dl-2020.03.24.tar.gz) = 45a398a41e4a06862413d9c8d57e6c1fa0e60660c6f69df928b64f3595568416 -SIZE (youtube-dl-2020.03.24.tar.gz) = 3165706 +TIMESTAMP = 1589750099 +SHA256 (youtube-dl-2020.05.08.tar.gz) = 86310db8516f41d697dc8923d4bb252ec110913e267a3c373b6a66a13552fd9b +SIZE (youtube-dl-2020.05.08.tar.gz) = 3172744 Modified: head/www/youtube_dl/files/patch-Makefile ============================================================================== --- head/www/youtube_dl/files/patch-Makefile Mon May 18 17:36:46 2020 (r535761) +++ head/www/youtube_dl/files/patch-Makefile Mon May 18 17:37:52 2020 (r535762) @@ -19,8 +19,8 @@ install -m 644 youtube-dl.zsh $(DESTDIR)$(SHAREDIR)/zsh/site-functions/_youtube-dl - install -d $(DESTDIR)$(SYSCONFDIR)/fish/completions - install -m 644 youtube-dl.fish $(DESTDIR)$(SYSCONFDIR)/fish/completions/youtube-dl.fish -+ install -d $(DESTDIR)$(SHAREDIR)/fish/completions -+ install -m 644 youtube-dl.fish $(DESTDIR)$(SHAREDIR)/fish/completions/youtube-dl.fish ++ install -d $(DESTDIR)$(SHAREDIR)/fish/vendor_completions.d ++ install -m 644 youtube-dl.fish $(DESTDIR)$(SHAREDIR)/fish/vendor_completions.d/youtube-dl.fish codetest: flake8 .
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005181737.04IHbq0j067341>