diff -Nru totem-plugin-arte-3.2.1/debian/changelog totem-plugin-arte-3.2.1/debian/changelog --- totem-plugin-arte-3.2.1/debian/changelog 2014-12-01 11:03:47.000000000 +0100 +++ totem-plugin-arte-3.2.1/debian/changelog 2015-04-21 21:35:15.000000000 +0200 @@ -1,3 +1,9 @@ +totem-plugin-arte (3.2.1-2ubuntu0.14.10.2) utopic-proposed; urgency=medium + + * Add a patch to restore video playback (LP: #1445829) + + -- Nicolas Delvaux Tue, 21 Apr 2015 21:34:10 +0200 + totem-plugin-arte (3.2.1-2ubuntu0.14.10.1) utopic-proposed; urgency=medium * Add patches to restore video playback and harden the plugin diff -Nru totem-plugin-arte-3.2.1/debian/patches/absolute_video_page_url.patch totem-plugin-arte-3.2.1/debian/patches/absolute_video_page_url.patch --- totem-plugin-arte-3.2.1/debian/patches/absolute_video_page_url.patch 1970-01-01 01:00:00.000000000 +0100 +++ totem-plugin-arte-3.2.1/debian/patches/absolute_video_page_url.patch 2015-04-21 21:41:44.000000000 +0200 @@ -0,0 +1,23 @@ +Description: Restore video playback + Arte changed again its website around mid April 2015. + A former relative URL is now absolute. +Author: Nicolas Delvaux +Bug-Ubuntu: https://bugs.launchpad.net/bugs/1445829 +Origin: upstream, https://gitorious.org/totem-plugin-arte/mainline/commit/e9b55b4cedfe9dae9c79f2b6782fcfe98045c7ec +Last-Update: 2015-04-21 + +--- totem-plugin-arte-3.2.1.orig/arteparser.vala ++++ totem-plugin-arte-3.2.1/arteparser.vala +@@ -161,7 +161,11 @@ public class ArteJSONParser : ArteParser + var current_video = new Video(); + + current_video.title = v.get_string_member ("title"); +- current_video.page_url = "http://www.arte.tv" + v.get_string_member ("url"); ++ current_video.page_url = v.get_string_member ("url"); ++ if (!current_video.page_url.has_prefix("http://")) { ++ // this URL used to be relative, check just in case ++ current_video.page_url = "http://www.arte.tv" + current_video.page_url; ++ } + current_video.image_url = v.get_string_member ("image_url"); + current_video.desc = v.get_string_member ("desc"); + // TODO current_video.publication_date diff -Nru totem-plugin-arte-3.2.1/debian/patches/series totem-plugin-arte-3.2.1/debian/patches/series --- totem-plugin-arte-3.2.1/debian/patches/series 2014-12-01 11:03:25.000000000 +0100 +++ totem-plugin-arte-3.2.1/debian/patches/series 2015-04-21 21:36:30.000000000 +0200 @@ -2,3 +2,4 @@ use-http-streams.patch fix-rtmp-playback.patch repair-and-use-rss-parser-as-main-fallback.patch +absolute_video_page_url.patch