Hello community,

here is the log from the commit of package gnome-documents for openSUSE:Factory 
checked in at 2012-01-26 14:03:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-documents (Old)
 and      /work/SRC/openSUSE:Factory/.gnome-documents.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnome-documents", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/gnome-documents/gnome-documents.changes  
2012-01-09 12:40:23.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-documents.new/gnome-documents.changes     
2012-01-26 14:03:15.000000000 +0100
@@ -1,0 +2,16 @@
+Thu Jan 19 09:41:33 UTC 2012 - [email protected]
+
+- Add support for tracker 0.13/0.14:
+  + Add gnome-documents-tracker-0.14.patch.
+  + Add gnome-common BuildRequires and call to gnome-autogen.sh,
+    needed for above patch.
+  + Change pkgconfig(tracker-sparql-0.12) BuildRequires to
+    pkgconfig(tracker-sparql-0.14).
+
+-------------------------------------------------------------------
+Tue Jan 17 07:55:17 UTC 2012 - [email protected]
+
+- Update to version 0.3.4:
+  + Add a shell-style application menu.
+
+-------------------------------------------------------------------

Old:
----
  gnome-documents-0.3.3.tar.xz

New:
----
  gnome-documents-0.3.4.tar.xz
  gnome-documents-tracker-0.14.patch

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

Other differences:
------------------
++++++ gnome-documents.spec ++++++
--- /var/tmp/diff_new_pack.0cY6V2/_old  2012-01-26 14:03:16.000000000 +0100
+++ /var/tmp/diff_new_pack.0cY6V2/_new  2012-01-26 14:03:16.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-documents
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,14 +15,19 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:           gnome-documents
-Version:        0.3.3
+Version:        0.3.4
 Release:        0
 Summary:        Document Manager for GNOME
 License:        GPL-2.0+
 Group:          Productivity/Office/Other
 Url:            http://www.gnome.org
 Source:         
http://download.gnome.org/sources/gnome-documents/0.3/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM gnome-documents-tracker-0.14.patch bgo#667854 
[email protected] -- Support tracker 0.13/0.14
+Patch0:         gnome-documents-tracker-0.14.patch
+# needed for patch0
+BuildRequires:  gnome-common
 BuildRequires:  intltool
 BuildRequires:  update-desktop-files
 # Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467
@@ -31,14 +36,14 @@
 BuildRequires:  pkgconfig(evince-document-3.0) >= 3.3.0
 BuildRequires:  pkgconfig(evince-view-3.0) >= 3.3.0
 BuildRequires:  pkgconfig(gjs-1.0)
-BuildRequires:  pkgconfig(glib-2.0) >= 2.29.90
+BuildRequires:  pkgconfig(glib-2.0) >= 2.31.6
 BuildRequires:  pkgconfig(gnome-desktop-3.0)
 BuildRequires:  pkgconfig(goa-1.0) >= 3.1.90
 BuildRequires:  pkgconfig(gobject-introspection-1.0) >= 0.9.6
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.3.6
-BuildRequires:  pkgconfig(libgdata) >= 0.9.1
+BuildRequires:  pkgconfig(libgdata) >= 0.11.0
 BuildRequires:  pkgconfig(oauth)
-BuildRequires:  pkgconfig(tracker-sparql-0.12) >= 0.12.1
+BuildRequires:  pkgconfig(tracker-sparql-0.14) >= 0.12.1
 # This is a gjs application
 Requires:       gjs
 Recommends:     %{name}-lang
@@ -51,8 +56,11 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
 
 %build
+# needed for patch0
+NOCONFIGURE=1 gnome-autogen.sh
 %configure
 make %{?_smp_mflags}
 

++++++ gnome-documents-tracker-0.14.patch ++++++
commit 0af48d9d36651fded7fbb632e38ab1589074b35d
Author: Vincent Untz <[email protected]>
Date:   Thu Jan 19 10:47:07 2012 +0100

    build: Support build against tracker 0.13/0.14
    
    https://bugzilla.gnome.org/show_bug.cgi?id=667854

diff --git a/configure.ac b/configure.ac
index 29fa2a2..7f44586 100644
--- a/configure.ac
+++ b/configure.ac
@@ -58,6 +58,9 @@ GOA_MIN_VERSION=3.2.0
 CLUTTER_GTK_MIN_VERSION=1.0.2
 TRACKER_MIN_VERSION=0.12.1
 
+PKG_CHECK_EXISTS([tracker-sparql-0.14],
+                 [tracker_api=0.14], [tracker_api=0.12])
+
 PKG_CHECK_MODULES(DOCUMENTS,
                   clutter-gtk-1.0 >= $CLUTTER_GTK_MIN_VERSION
                   evince-document-3.0 >= $EVINCE_MIN_VERSION
@@ -67,13 +70,13 @@ PKG_CHECK_MODULES(DOCUMENTS,
                   gobject-introspection-1.0 >= 
$GOBJECT_INTROSPECTION_MIN_VERSION
                   gtk+-3.0 >= $GTK_MIN_VERSION
                   gnome-desktop-3.0
-                  tracker-sparql-0.12 >= $TRACKER_MIN_VERSION
+                  tracker-sparql-$tracker_api >= $TRACKER_MIN_VERSION
                   goa-1.0 >= $GOA_MIN_VERSION
                   libgdata >= $GDATA_MIN_VERSION
                   oauth)
 
 PKG_CHECK_MODULES(MINER,
-                  tracker-sparql-0.12
+                  tracker-sparql-$tracker_api
                   glib-2.0 >= $GLIB_MIN_VERSION
                   gio-2.0 >= $GLIB_MIN_VERSION
                   goa-1.0 >= $GOA_MIN_VERSION
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to