[SCM] Video extraction utility for YouTube, Google Video and other video sites (Debian packaging) branch, master, updated. debian/2.2.25-2-6-gbccbd5a

Ansgar Burchardt ansgar at debian.org
Wed Aug 10 08:11:16 UTC 2011


The following commit has been merged in the master branch:
commit 761381712dc1727940078d26cd434b62a048f2af
Author: Ansgar Burchardt <ansgar at debian.org>
Date:   Wed Aug 10 08:32:22 2011 +0200

    Drop patch 636612-youtube.diff: applied upstream.

diff --git a/debian/patches/636612-youtube.diff b/debian/patches/636612-youtube.diff
deleted file mode 100644
index 20828b9..0000000
--- a/debian/patches/636612-youtube.diff
+++ /dev/null
@@ -1,35 +0,0 @@
-From: Ansgar Burchardt <ansgar at debian.org>
-Date: Thu, 04 Aug 2011 19:57:48 +0200
-Subject: Adapt to youtube.com changes
-Origin: vendor
-Bug-Debian: http://bugs.debian.org/636612
-Bug: https://sourceforge.net/apps/trac/clive/ticket/12
-
---- clive.orig/lib/clive/Host/Youtube.pm
-+++ clive/lib/clive/Host/Youtube.pm
-@@ -33,7 +33,7 @@
- 
-     my %re = (
-         id => qr|"video_id": "(.*?)"|,
--        fmt_url_map => qr|fmt_url_map=(.*?)&|,
-+        url_encoded_fmt_stream_map => qr|url_encoded_fmt_stream_map=(.*?)&|,
-     );
- 
-     my $tmp;
-@@ -44,8 +44,14 @@
- 
-         require URI::Escape;
- 
--        foreach (split /,/, URI::Escape::uri_unescape ($tmp->{fmt_url_map})) {
--            my ($id, $url) = split /\|/, $_;
-+        foreach (split /,/, URI::Escape::uri_unescape ($tmp->{url_encoded_fmt_stream_map})) {
-+	    my %map;
-+	    for my $kv (split /&/) {
-+		my ($key, $value) = split /=/, $kv;
-+		$map{$key} = URI::Escape::uri_unescape($value);
-+	    }
-+	    my $id = $map{itag};
-+	    my $url = $map{url};
-             $best   = $url unless $best;
-             $h{$id} = $url;
-         }
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index a8e33c4..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-636612-youtube.diff

-- 
Video extraction utility for YouTube, Google Video and other video sites (Debian packaging)



More information about the Pkg-perl-cvs-commits mailing list