commit totem for openSUSE:Factory
Hello community, here is the log from the commit of package totem for openSUSE:Factory checked in at 2016-04-22 16:16:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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 2016-03-29 14:34:40.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.totem.new/totem.changes 2016-04-22 16:16:40.000000000 +0200 @@ -1,0 +2,11 @@ +Wed Apr 13 13:43:48 UTC 2016 - zaitor@opensuse.org + +- Update to version 3.20.1: + + Make playback rate available to plugins. + + Add more shortcuts for the shortcuts help window. + + Fix a number of compilation warnings. + + Updated translations. +- Add totem-Fix-build-werror.patch: backend: Fix the build with + -Werror=format. Fix build on i586 (bgo#765036). + +------------------------------------------------------------------- Old: ---- totem-3.20.0.tar.xz New: ---- totem-3.20.1.tar.xz totem-Fix-build-werror.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ totem.spec ++++++ --- /var/tmp/diff_new_pack.YNQw5Z/_old 2016-04-22 16:16:41.000000000 +0200 +++ /var/tmp/diff_new_pack.YNQw5Z/_new 2016-04-22 16:16:41.000000000 +0200 @@ -19,13 +19,15 @@ %define build_zeitgeist_plugin 1 Name: totem -Version: 3.20.0 +Version: 3.20.1 Release: 0 Summary: Movie Player for the GNOME Desktop License: GPL-2.0+ and LGPL-2.1+ Group: Productivity/Multimedia/Video/Players Url: http://www.gnome.org/projects/totem/ Source0: http://download.gnome.org/sources/totem/3.20/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM totem-Fix-build-werror.patch bgo#765036 zaitor@opensuse.org -- backend: Fix the build with -Werror=format +Patch0: totem-Fix-build-werror.patch BuildRequires: appstream-glib BuildRequires: fdupes BuildRequires: gcc-c++ @@ -149,6 +151,7 @@ %lang_package %prep %setup -q +%patch0 -p1 translation-update-upstream %build ++++++ totem-3.20.0.tar.xz -> totem-3.20.1.tar.xz ++++++ ++++ 12975 lines of diff (skipped) ++++++ totem-Fix-build-werror.patch ++++++
From 057590c88e946e952ef2b3b7a3997998494291ab Mon Sep 17 00:00:00 2001 From: Kalev Lember <klember@redhat.com> Date: Thu, 14 Apr 2016 10:48:47 +0200 Subject: [PATCH] backend: Fix the build with -Werror=format
https://bugzilla.gnome.org/show_bug.cgi?id=765036 --- src/backend/bacon-video-widget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/bacon-video-widget.c b/src/backend/bacon-video-widget.c index ff38a7b..c4f107e 100644 --- a/src/backend/bacon-video-widget.c +++ b/src/backend/bacon-video-widget.c @@ -2334,7 +2334,7 @@ parse: if (!gst_toc_entry_get_start_stop_times (entry, &start, &stop)) { GST_DEBUG ("Chapter #%d (couldn't get times)", i); } else { - GST_DEBUG ("Chapter #%d (start: %li stop: %li)", i, start, stop); + GST_DEBUG ("Chapter #%d (start: %" G_GINT64_FORMAT " stop: %" G_GINT64_FORMAT ")", i, start, stop); } } -- 2.5.5
participants (1)
-
root@hilbert.suse.de