Hello community,

here is the log from the commit of package totem for openSUSE:Factory checked 
in at 2015-11-24 22:29:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/totem (Old)
 and      /work/SRC/openSUSE:Factory/.totem.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "totem"

Changes:
--------
--- /work/SRC/openSUSE:Factory/totem/totem.changes      2015-10-25 
19:07:32.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.totem.new/totem.changes 2015-11-24 
22:29:28.000000000 +0100
@@ -1,0 +2,8 @@
+Wed Nov 18 22:04:56 UTC 2015 - [email protected]
+
+- Add totem-fix-GI-deprecations.patch: Fix some GI deprecation
+  warnings (bgo#757526).
+- Add totem-fix-missing-return.patch: Fix a missing return
+  statement (bgo#758324).
+
+-------------------------------------------------------------------

New:
----
  totem-fix-GI-deprecations.patch
  totem-fix-missing-return.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ totem.spec ++++++
--- /var/tmp/diff_new_pack.MahLWt/_old  2015-11-24 22:29:29.000000000 +0100
+++ /var/tmp/diff_new_pack.MahLWt/_new  2015-11-24 22:29:29.000000000 +0100
@@ -26,6 +26,10 @@
 Group:          Productivity/Multimedia/Video/Players
 Url:            http://www.gnome.org/projects/totem/
 Source0:        
http://download.gnome.org/sources/totem/3.18/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM totem-fix-GI-deprecations.patch bgo#757526 
[email protected] -- Fix some GI deprecation warnings, patch from upstream 
git.
+Patch0:         totem-fix-GI-deprecations.patch
+# PATCH-FIX-UPSTREAM totem-fix-missing-return.patch bgo#758324 
[email protected] -- Fix missing return statement. Patch sent upstream.
+Patch1:         totem-fix-missing-return.patch
 BuildRequires:  appstream-glib
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -149,6 +153,8 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
+%patch1 -p1
 translation-update-upstream
 
 %build

++++++ totem-fix-GI-deprecations.patch ++++++
>From b502b76eb28828cf7a44e504c3fcf07fa82c30d6 Mon Sep 17 00:00:00 2001
From: Bastien Nocera <[email protected]>
Date: Tue, 3 Nov 2015 15:36:03 +0100
Subject: opensubtitles: Fix GI deprecation warnings

/usr/lib64/totem/plugins/opensubtitles/opensubtitles.py:4: PyGIWarning: Peas 
was imported without specifying a version first. Use gi.require_version('Peas', 
'1.0') before import to ensure that the right version gets loaded.
  from gi.repository import Peas, Gtk, Gdk # pylint: disable-msg=E0611

/usr/lib64/totem/plugins/opensubtitles/opensubtitles.py:4: PyGIWarning: Gtk was 
imported without specifying a version first. Use gi.require_version('Gtk', 
'3.0') before import to ensure that the right version gets loaded.
  from gi.repository import Peas, Gtk, Gdk # pylint: disable-msg=E0611

/usr/lib64/totem/plugins/opensubtitles/opensubtitles.py:5: PyGIWarning: Totem 
was imported without specifying a version first. Use 
gi.require_version('Totem', '1.0') before import to ensure that the right 
version gets loaded.
  from gi.repository import Gio, Pango, Totem # pylint: disable-msg=E0611

https://bugzilla.gnome.org/show_bug.cgi?id=757526
---
 src/plugins/opensubtitles/opensubtitles.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/plugins/opensubtitles/opensubtitles.py 
b/src/plugins/opensubtitles/opensubtitles.py
index e58636b..f2c39e3 100644
--- a/src/plugins/opensubtitles/opensubtitles.py
+++ b/src/plugins/opensubtitles/opensubtitles.py
@@ -1,5 +1,9 @@
 # -*- coding: utf-8 -*-
 
+import gi
+gi.require_version('Peas', '1.0')
+gi.require_version('Gtk', '3.0')
+gi.require_version('Totem', '1.0')
 from gi.repository import GLib, GObject # pylint: disable-msg=E0611
 from gi.repository import Peas, Gtk, Gdk # pylint: disable-msg=E0611
 from gi.repository import Gio, Pango, Totem # pylint: disable-msg=E0611
-- 
cgit v0.11.2

++++++ totem-fix-missing-return.patch ++++++
>From e1ee77cbb49a730eb8e08c77b6782131b694a1fe Mon Sep 17 00:00:00 2001
From: Bjørn Lie <[email protected]>
Date: Thu, 19 Nov 2015 10:52:40 +0100
Subject: [PATCH] bacon-video-widget-gst-missing-plugins: Change function to 
static void

---
 src/backend/bacon-video-widget-gst-missing-plugins.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/backend/bacon-video-widget-gst-missing-plugins.c 
b/src/backend/bacon-video-widget-gst-missing-plugins.c
index ade7bf8..db083a8 100644
--- a/src/backend/bacon-video-widget-gst-missing-plugins.c
+++ b/src/backend/bacon-video-widget-gst-missing-plugins.c
@@ -240,7 +240,7 @@ on_plugin_installation_done (GstInstallPluginsReturn res, 
gpointer user_data)
 
 #ifdef GDK_WINDOWING_X11
 #if GST_CHECK_VERSION (1, 5, 0)
-static gchar *
+static void
 set_startup_notification_id (GstInstallPluginsContext *install_ctx)
 {
        gchar *startup_id;
--
libgit2 0.23.3

Reply via email to