aboutsummaryrefslogtreecommitdiff
path: root/www/youtube_dl
diff options
context:
space:
mode:
authorMarcelo Araujo <araujo@FreeBSD.org>2010-12-09 22:33:57 +0000
committerMarcelo Araujo <araujo@FreeBSD.org>2010-12-09 22:33:57 +0000
commit04cd8200184c38d21ae899c417352a5f36cad9df (patch)
tree51503885799977a380dbc0da833ec638ab44da8a /www/youtube_dl
parentd6325c73201775e8d84a22be1d2813d05c0cf3bf (diff)
downloadports-04cd8200184c38d21ae899c417352a5f36cad9df.tar.gz
ports-04cd8200184c38d21ae899c417352a5f36cad9df.zip
- Update to 2010.12.09.
Reported by: Michal Pietras <pietrasm@me.com>
Notes
Notes: svn path=/head/; revision=265945
Diffstat (limited to 'www/youtube_dl')
-rw-r--r--www/youtube_dl/Makefile2
-rw-r--r--www/youtube_dl/distinfo4
-rw-r--r--www/youtube_dl/files/patch-youtube-dl11
3 files changed, 3 insertions, 14 deletions
diff --git a/www/youtube_dl/Makefile b/www/youtube_dl/Makefile
index dbfbb96057c9..fb2893445326 100644
--- a/www/youtube_dl/Makefile
+++ b/www/youtube_dl/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= youtube_dl
-PORTVERSION= 2010.11.19
+PORTVERSION= 2010.12.09
CATEGORIES= www
MASTER_SITES= https://github.com/rg3/youtube-dl/raw/${PORTVERSION}/
DISTNAME= youtube-dl
diff --git a/www/youtube_dl/distinfo b/www/youtube_dl/distinfo
index 2ff439776ab8..e1b1614c8025 100644
--- a/www/youtube_dl/distinfo
+++ b/www/youtube_dl/distinfo
@@ -1,2 +1,2 @@
-SHA256 (youtube_dl/2010.11.19/youtube-dl) = 016d9559610e2043ba140de41ad69580dc5510dc9001df7614e1d38d87c40e25
-SIZE (youtube_dl/2010.11.19/youtube-dl) = 84216
+SHA256 (youtube_dl/2010.12.09/youtube-dl) = 97ca24596409b6117f398383111328a8eec09c777ff7233aa06038f4195e3d97
+SIZE (youtube_dl/2010.12.09/youtube-dl) = 87764
diff --git a/www/youtube_dl/files/patch-youtube-dl b/www/youtube_dl/files/patch-youtube-dl
deleted file mode 100644
index b4c8a56f7abb..000000000000
--- a/www/youtube_dl/files/patch-youtube-dl
+++ /dev/null
@@ -1,11 +0,0 @@
---- youtube-dl.orig 2010-11-21 16:27:42.000000000 +0000
-+++ youtube-dl 2010-11-21 16:28:42.000000000 +0000
-@@ -509,7 +509,7 @@
- # Download using rtmpdump. rtmpdump returns exit code 2 when
- # the connection was interrumpted and resuming appears to be
- # possible. This is part of rtmpdump's normal usage, AFAIK.
-- basic_args = ['rtmpdump', '-q'] + [[], ['-W', player_url]][player_url is not None] + ['-r', url, '-o', filename]
-+ basic_args = ['rtmpdump'] + [[], ['-q']][self.params.get('quiet', False)] + [[], ['-W', player_url]][player_url is not None] + ['-r', url, '-o', filename]
- retval = subprocess.call(basic_args + [[], ['-e', '-k', '1']][self.params.get('continuedl', False)])
- while retval == 2 or retval == 1:
- prevsize = os.path.getsize(filename)