diff -u unity-scope-video-remote-0.3.5/MANIFEST.in unity-scope-video-remote-0.3.5/MANIFEST.in --- unity-scope-video-remote-0.3.5/MANIFEST.in +++ unity-scope-video-remote-0.3.5/MANIFEST.in @@ -4,0 +5,4 @@ +include unity-scope-video-remote.service +include video-remote.scope +include src/unity-scope-video-remote +include COPYING diff -u unity-scope-video-remote-0.3.5/debian/changelog unity-scope-video-remote-0.3.5/debian/changelog --- unity-scope-video-remote-0.3.5/debian/changelog +++ unity-scope-video-remote-0.3.5/debian/changelog @@ -1,3 +1,11 @@ +unity-scope-video-remote (0.3.5-0ubuntu2.2) precise; urgency=low + + * Cherry-pick a fix from upstream: + - Use https connection when talking to the server (LP: #1071079) + * Update maintainer to be Ubuntu Developers + + -- Timo Jyrinki Mon, 25 Feb 2013 11:44:03 +0200 + unity-scope-video-remote (0.3.5-0ubuntu2.1) precise-proposed; urgency=low * Exit on DBus hickup at startup, Unity will restart the scope (LP: #950862) diff -u unity-scope-video-remote-0.3.5/debian/control unity-scope-video-remote-0.3.5/debian/control --- unity-scope-video-remote-0.3.5/debian/control +++ unity-scope-video-remote-0.3.5/debian/control @@ -1,7 +1,8 @@ Source: unity-scope-video-remote Section: gnome Priority: optional -Maintainer: David Calle +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: David Calle Build-Depends: debhelper (>= 8), python, python-distutils-extra Standards-Version: 3.9.2 Homepage: https://launchpad.net/unity-lens-videos diff -u unity-scope-video-remote-0.3.5/src/unity-scope-video-remote unity-scope-video-remote-0.3.5/src/unity-scope-video-remote --- unity-scope-video-remote-0.3.5/src/unity-scope-video-remote +++ unity-scope-video-remote-0.3.5/src/unity-scope-video-remote @@ -43,7 +43,7 @@ #pylint: enable=E0611 BUS_NAME = "net.launchpad.scope.RemoteVideos" -SERVER = "http://videosearch.ubuntu.com/v0" +SERVER = "https://videosearch.ubuntu.com/v0" REFRESH_INTERVAL = 3600 # fetch sources & recommendations once an hour RETRY_INTERVAL = 60 # retry sources/recommendations after a minute @@ -76,6 +76,8 @@ self.scope.connect ("activate-uri", self.on_activate_uri) self.session = Soup.SessionAsync() self.session.props.user_agent = "Unity Video Lens Remote Scope v0.4" + self.session.props.ssl_use_system_ca_file = True + self.session.props.ssl_strict = True self.session.add_feature_by_type(SoupGNOME.ProxyResolverGNOME) self.query_list_of_sources() self.update_recommendations()