View | Details | Raw Unified | Return to bug 204776
Collapse All | Expand All

(-)www/youtube_dl/Makefile (-1 / +1 lines)
Lines 1-7 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	youtube_dl
3
PORTNAME=	youtube_dl
4
PORTVERSION=	2015.11.13
4
PORTVERSION=	2015.11.24
5
CATEGORIES=	www
5
CATEGORIES=	www
6
MASTER_SITES=	https://yt-dl.org/downloads/${PORTVERSION}/
6
MASTER_SITES=	https://yt-dl.org/downloads/${PORTVERSION}/
7
DISTNAME=	youtube-dl-${PORTVERSION}
7
DISTNAME=	youtube-dl-${PORTVERSION}
(-)www/youtube_dl/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (youtube-dl-2015.11.13.tar.gz) = dd75b284de30aeff6b85d8550ad19cb8ca481961eb762304b6576ffeb8022408
1
SHA256 (youtube-dl-2015.11.24.tar.gz) = cceeb606e723c0291de85eecb9a551ca887f3be4db786ad621011a9201a482b1
2
SIZE (youtube-dl-2015.11.13.tar.gz) = 1788412
2
SIZE (youtube-dl-2015.11.24.tar.gz) = 1803588
(-)www/youtube_dl/files/patch-youtube_dl____init__.py (-5 / +5 lines)
Lines 1-6 Link Here
1
--- youtube_dl/__init__.py.orig	2015-05-15 08:01:24 UTC
1
--- youtube_dl/__init__.py.orig	2015-11-24 09:44:40.030482000 +0100
2
+++ youtube_dl/__init__.py
2
+++ youtube_dl/__init__.py	2015-11-24 09:45:54.856110000 +0100
3
@@ -36,7 +36,6 @@ from .utils import (
3
@@ -36,7 +36,6 @@
4
     std_headers,
4
     std_headers,
5
     write_string,
5
     write_string,
6
 )
6
 )
Lines 8-20 Link Here
8
 from .downloader import (
8
 from .downloader import (
9
     FileDownloader,
9
     FileDownloader,
10
 )
10
 )
11
@@ -370,17 +369,13 @@ def _real_main(argv=None):
11
@@ -375,17 +374,13 @@
12
     }
12
     }
13
 
13
 
14
     with YoutubeDL(ydl_opts) as ydl:
14
     with YoutubeDL(ydl_opts) as ydl:
15
-        # Update version
15
-        # Update version
16
-        if opts.update_self:
16
-        if opts.update_self:
17
-            update_self(ydl.to_screen, opts.verbose)
17
-            update_self(ydl.to_screen, opts.verbose, ydl._opener)
18
-
18
-
19
         # Remove cache dir
19
         # Remove cache dir
20
         if opts.rm_cachedir:
20
         if opts.rm_cachedir:

Return to bug 204776