From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 19 16:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B2CA5366 for ; Sat, 19 Oct 2013 16:30:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9686722E7 for ; Sat, 19 Oct 2013 16:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r9JGU0Rl008502 for ; Sat, 19 Oct 2013 16:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r9JGU0Da008501; Sat, 19 Oct 2013 16:30:00 GMT (envelope-from gnats) Resent-Date: Sat, 19 Oct 2013 16:30:00 GMT Resent-Message-Id: <201310191630.r9JGU0Da008501@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 16B85158; Sat, 19 Oct 2013 16:25:41 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from sunpoet.net (sunpoet.net [220.135.71.135]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D6D2522C5; Sat, 19 Oct 2013 16:25:40 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 3F75B46BE; Sun, 20 Oct 2013 00:25:06 +0800 (CST) Message-Id: <20131019162506.3F75B46BE@sunpoet.net> Date: Sun, 20 Oct 2013 00:25:06 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/183103: [PATCH] www/youtube_dl: update to 2013.10.15 Cc: araujo@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Oct 2013 16:30:00 -0000 >Number: 183103 >Category: ports >Synopsis: [PATCH] www/youtube_dl: update to 2013.10.15 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Oct 19 16:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 10.0-BETA1 amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 10.0-BETA1 FreeBSD 10.0-BETA1 #0 r256445: Tue Oct 15 04:48:04 CST >Description: - Update to 2013.10.15 - Convert to new options helper - Support STAGEDIR Port maintainer (araujo@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_8 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- youtube_dl-2013.10.15.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 330904) +++ Makefile (working copy) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= youtube_dl -PORTVERSION= 2013.09.24.2 -PORTREVISION= 1 +PORTVERSION= 2013.10.15 CATEGORIES= www MASTER_SITES= http://youtube-dl.org/downloads/${PORTVERSION}/ \ http://ftp.de.netbsd.org/pub/unix/Linux/MIRROR.gentoo/distfiles/ @@ -32,32 +31,25 @@ WRKSRC= ${WRKDIR}/youtube-dl -.include +BASH_PLIST_FILES= etc/bash_completion.d/youtube-dl.sh +RTMPDUMP_RUN_DEPENDS= ${LOCALBASE}/bin/rtmpdump:${PORTSDIR}/multimedia/rtmpdump -.if ${PORT_OPTIONS:MRTMPDUMP} -RUN_DEPENDS+= rtmpdump:${PORTSDIR}/multimedia/rtmpdump +# allow either multimedia/ffmpeg or multimedia/ffmpeg-devel +.if exists(${LOCALBASE}/include/libavcodec/vda.h) +FFMPEG_RUN_DEPENDS= ${LOCALBASE}/bin/ffprobe:${PORTSDIR}/multimedia/ffmpeg-devel +.else +FFMPEG_RUN_DEPENDS= ${LOCALBASE}/bin/ffprobe:${PORTSDIR}/multimedia/ffmpeg .endif -.if ${PORT_OPTIONS:MBASH} -PLIST_FILES+= etc/bash_completion.d/youtube-dl.sh -.endif +.include -.if ${PORT_OPTIONS:MFFMPEG} -# allow either multimedia/ffmpeg or multimedia/ffmpeg-devel -. if exists(${LOCALBASE}/include/libavcodec/vda.h) -RUN_DEPENDS+= ffprobe:${PORTSDIR}/multimedia/ffmpeg-devel -. else -RUN_DEPENDS+= ffprobe:${PORTSDIR}/multimedia/ffmpeg -. endif -.endif - post-extract: @# remove tarball provided version, build our own @${RM} -f ${WRKSRC}/youtube-dl do-install: - @${INSTALL_SCRIPT} ${WRKSRC}/youtube-dl ${STAGEDIR}${PREFIX}/bin/youtube-dl - @${INSTALL_DATA} ${WRKSRC}/youtube-dl.1 ${STAGEDIR}${PREFIX}/man/man1 + ${INSTALL_SCRIPT} ${WRKSRC}/youtube-dl ${STAGEDIR}${PREFIX}/bin/youtube-dl + ${INSTALL_DATA} ${WRKSRC}/youtube-dl.1 ${STAGEDIR}${PREFIX}/man/man1/ .if ${PORT_OPTIONS:MBASH} ${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d ${INSTALL_DATA} ${WRKSRC}/youtube-dl.bash-completion \ @@ -64,9 +56,4 @@ ${STAGEDIR}${PREFIX}/etc/bash_completion.d/youtube-dl.sh .endif -.if ${PORT_OPTIONS:MFFMPEG} -post-install: - @${CAT} ${PKGMESSAGE} -.endif - .include Index: distinfo =================================================================== --- distinfo (revision 330904) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (youtube-dl-2013.09.24.2.tar.gz) = 0ff095bd09f30c7c77758f6a74feaf163b88b06eefed5b865caedcf4623f7708 -SIZE (youtube-dl-2013.09.24.2.tar.gz) = 392769 +SHA256 (youtube-dl-2013.10.15.tar.gz) = f09a629f2d16f591413e9c1bcf62de3188792b638ae8bec005a0fa002404d717 +SIZE (youtube-dl-2013.10.15.tar.gz) = 1224060 --- youtube_dl-2013.10.15.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: