Hello community,

here is the log from the commit of package brasero for openSUSE:Factory checked 
in at 2013-04-03 23:32:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/brasero (Old)
 and      /work/SRC/openSUSE:Factory/.brasero.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "brasero", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/brasero/brasero.changes  2012-11-21 
14:59:06.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.brasero.new/brasero.changes     2013-04-03 
23:32:59.000000000 +0200
@@ -1,0 +2,20 @@
+Tue Mar 26 08:54:13 UTC 2013 - [email protected]
+
+- Update to version 3.8.0:
+  + Documentation fixes.
+  + Updated translations.
+
+-------------------------------------------------------------------
+Thu Mar  7 09:34:04 UTC 2013 - [email protected]
+
+- Update to version 3.7.91:
+  + Add a question mark to a question.
+  + Support notification filtering.
+  + Remove nonexisting options from the man page.
+  + Fix while loop in `brasero_libisofs_write_image_to_fd_thread.
+  + Updated translations.
+- Add brasero-tracker-0.16.patch: Fix build with tracker 0.16.
+- Add gnome-common BuildRequires and call to autoreconf, as above
+  patch touches the build system.
+
+-------------------------------------------------------------------

Old:
----
  brasero-3.6.1.tar.xz

New:
----
  brasero-3.8.0.tar.xz
  brasero-tracker-0.16.patch

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

Other differences:
------------------
++++++ brasero.spec ++++++
--- /var/tmp/diff_new_pack.pkyuqQ/_old  2013-04-03 23:33:05.000000000 +0200
+++ /var/tmp/diff_new_pack.pkyuqQ/_new  2013-04-03 23:33:05.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package brasero
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -17,15 +17,19 @@
 
 
 Name:           brasero
-Version:        3.6.1
+Version:        3.8.0
 Release:        0
 Summary:        CD/DVD burning application for GNOME
 License:        GPL-2.0+
 Group:          Productivity/Multimedia/CD/Record
 Url:            http://gnome.org/projects/brasero
-Source:         
http://download.gnome.org/sources/brasero/3.6/%{name}-%{version}.tar.xz
+Source:         
http://download.gnome.org/sources/brasero/3.8/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM brasero-tracker-0.16.patch bgo#692664 
[email protected] -- Fix build with tracker 0.16
+Patch0:         brasero-tracker-0.16.patch
 BuildRequires:  fdupes
 BuildRequires:  gobject-introspection-devel
+# Needed for patch0
+BuildRequires:  gnome-common
 BuildRequires:  gtk-doc
 BuildRequires:  intltool
 BuildRequires:  yelp-tools
@@ -180,9 +184,12 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
 translation-update-upstream
 
 %build
+# Needed for patch0
+autoreconf -fiv
 %configure \
         --disable-static \
         --disable-scrollkeeper \

++++++ brasero-3.6.1.tar.xz -> brasero-3.8.0.tar.xz ++++++
++++ 125892 lines of diff (skipped)

++++++ brasero-tracker-0.16.patch ++++++
>From f3a73618755d39ae21a9ee1dc96ba43158fc0cac Mon Sep 17 00:00:00 2001
From: Kalev Lember <[email protected]>
Date: Sun, 27 Jan 2013 23:25:54 +0100
Subject: [PATCH] build: Simplify tracker version searching and support 0.16
 API

Use an iterator instead of a deep dependency tree. This should simplify
adding support for new tracker versions in the future.

https://bugzilla.gnome.org/show_bug.cgi?id=692664
---
 configure.ac | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/configure.ac b/configure.ac
index 016c873..9f0b4af 100644
--- a/configure.ac
+++ b/configure.ac
@@ -382,21 +382,22 @@ AC_ARG_ENABLE(search,
                        esac],
                        [enable_search="auto"])
 
+if test x"$enable_search" != "xno"; then
+        # Try to figure out the tracker API version to use
+        tracker_api="0.10"
+        m4_foreach([VERSION], [[0.10], [0.12], [0.14], [0.16]],
+                              [PKG_CHECK_EXISTS([tracker-sparql-VERSION >= 
$TRACKER_REQUIRED],
+                                                [tracker_api="VERSION"])
+                              ])
+fi
+
 if test x"$enable_search" = "xauto"; then
-        PKG_CHECK_EXISTS([tracker-sparql-0.14 >= $TRACKER_REQUIRED],
-                          [enable_search=yes],
-                          [PKG_CHECK_EXISTS([tracker-sparql-0.12 >= 
$TRACKER_REQUIRED],
-                                            [enable_search=yes],
-                                            
[PKG_CHECK_EXISTS([tracker-sparql-0.10 >= $TRACKER_REQUIRED],
-                                                              
[enable_search=yes],
-                                                              
[enable_search=no])])])
+        PKG_CHECK_EXISTS([tracker-sparql-$tracker_api >= $TRACKER_REQUIRED],
+                         [enable_search=yes],
+                         [enable_search=no])
 fi
 
 if test x"$enable_search" = "xyes"; then
-        PKG_CHECK_EXISTS([tracker-sparql-0.14 >= $TRACKER_REQUIRED],
-                         [tracker_api=0.14],
-                         [PKG_CHECK_EXISTS([tracker-sparql-0.12 >= 
$TRACKER_REQUIRED],
-                                           [tracker_api=0.12], 
[tracker_api=0.10])])
        PKG_CHECK_MODULES(BRASERO_SEARCH, tracker-sparql-$tracker_api >= 
$TRACKER_REQUIRED)
        AC_DEFINE(BUILD_SEARCH, 1, [define if you  want to use search pane])
        AC_DEFINE(BUILD_TRACKER, 1, [define if you  want to use search pane])

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to