Hello community, here is the log from the commit of package zeitgeist for openSUSE:Factory checked in at 2015-02-14 13:50:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/zeitgeist (Old) and /work/SRC/openSUSE:Factory/.zeitgeist.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "zeitgeist" Changes: -------- --- /work/SRC/openSUSE:Factory/zeitgeist/zeitgeist.changes 2014-06-19 13:20:01.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.zeitgeist.new/zeitgeist.changes 2015-02-14 13:50:52.000000000 +0100 @@ -1,0 +2,12 @@ +Wed Feb 11 23:10:08 UTC 2015 - [email protected] + +- Add zeitgeist-silence-logspam.patch: Don't spam the logs with + warnings that aren't really warnings, use debug instead. + +------------------------------------------------------------------- +Tue Feb 10 20:20:20 UTC 2015 - [email protected] + +- Add zeitgeist-0.9.14-whereclause-fix.diff: fix SQL error caused + by later versions of Vala (boo#910289). + +------------------------------------------------------------------- New: ---- zeitgeist-0.9.14-whereclause-fix.diff zeitgeist-silence-logspam.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ zeitgeist.spec ++++++ --- /var/tmp/diff_new_pack.pKX3Ot/_old 2015-02-14 13:50:53.000000000 +0100 +++ /var/tmp/diff_new_pack.pKX3Ot/_new 2015-02-14 13:50:53.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package zeitgeist # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2009 Dominique Leuenberger, Amsterdam, The Netherlands. # # All modifications and additions to the file contributed by third parties @@ -27,6 +27,10 @@ Source: https://launchpad.net/zeitgeist/0.9/%{version}/+download/%{name}-%{version}.tar.xz # PATCH-FIX-UPSTREAM zeitgeist-bnc876272-event-crash.patch bnc#876272 [email protected] -- fix crash when sending events over D-Bus. Patch0: zeitgeist-bnc876272-event-crash.patch +# PATCH-FIX-UPSTREAM zeitgeist-0.9.14-whereclause-fix.diff boo#910289 [email protected] -- Fix Vala >= 0.24 issues. +Patch1: zeitgeist-0.9.14-whereclause-fix.diff +# PATCH-FIX-UPSTREAM zeitgeist-silence-logspam.patch [email protected] -- Don't spam the logs with warnings that aren't really warnings. +Patch2: zeitgeist-silence-logspam.patch BuildRequires: fdupes BuildRequires: intltool BuildRequires: libxapian-devel @@ -92,6 +96,8 @@ %prep %setup -q %patch0 -p1 +%patch1 -p1 +%patch2 %build %configure \ ++++++ zeitgeist-0.9.14-whereclause-fix.diff ++++++ >From 201bd67de450320520a12e2b0c465c8eb6818bd2 Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz <[email protected]> Date: Mon, 17 Mar 2014 20:57:49 +0100 Subject: [PATCH] WhereClause: Fix array-length to work with string.joinv of vala-0.24 --- libzeitgeist/where-clause.vala | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libzeitgeist/where-clause.vala b/libzeitgeist/where-clause.vala index a830599..d981914 100644 --- a/libzeitgeist/where-clause.vala +++ b/libzeitgeist/where-clause.vala @@ -211,7 +211,11 @@ namespace Zeitgeist */ private T[] generic_array_to_unowned_array<T> (GenericArray<T> gptrarr) { +#if VALA_0_24 + long[] pointers = new long[gptrarr.length]; +#else long[] pointers = new long[gptrarr.length + 1]; +#endif Memory.copy(pointers, ((PtrArray *) gptrarr)->pdata, (gptrarr.length) * sizeof (void *)); return (T[]) pointers; -- 2.0.0 ++++++ zeitgeist-silence-logspam.patch ++++++ === modified file 'datahub/recent-manager-provider.vala' --- datahub/recent-manager-provider.vala 2013-03-16 00:38:16 +0000 +++ datahub/recent-manager-provider.vala 2014-01-03 21:51:40 +0000 @@ -129,7 +129,7 @@ if (desktop_file == null) { - warning ("Desktop file for \"%s\" was not found, exec: %s, mime_type: %s", + debug ("Desktop file for \"%s\" was not found, exec: %s, mime_type: %s", uri, exec[0], ri.get_mime_type ()); continue; // this makes us sad panda } === modified file 'datahub/utils.vala' --- datahub/utils.vala 2013-03-17 15:27:37 +0000 +++ datahub/utils.vala 2014-01-03 21:51:40 +0000 @@ -44,7 +44,7 @@ } catch (Error err) { - warning ("Couldn't get file contents %s: %s", file.get_path (), err.message); + debug ("Couldn't get file contents %s: %s", file.get_path (), err.message); } contents = (string) contents_array; #else -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
