Hello community,

here is the log from the commit of package deja-dup for openSUSE:Factory 
checked in at 2012-01-24 12:16:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/deja-dup (Old)
 and      /work/SRC/openSUSE:Factory/.deja-dup.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "deja-dup", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/deja-dup/deja-dup.changes        2012-01-05 
19:10:27.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.deja-dup.new/deja-dup.changes   2012-01-24 
12:16:56.000000000 +0100
@@ -1,0 +2,18 @@
+Mon Jan 16 13:34:57 UTC 2012 - vu...@opensuse.org
+
+- Update to version 21.4:
+  + Polish:
+    - Warn user if we couldn't back up a file because we couldn't
+      read it
+  + Packaging:
+    - Fix -j2 build
+    - Add auto tests that are run during 'make check', suitable for
+      build servers
+  + Updated translations.
+- Re-enable parallel build.
+- Add deja-dup-vala-0.16.patch: fix build with vala 0.15/0.16.
+- Add %check section with new 'make check'.
+- Add dbus-1-x11 BuildRequires, so 'make check' can work:
+  dbus-launch is needed.
+
+-------------------------------------------------------------------

Old:
----
  deja-dup-21.2.tar.xz

New:
----
  deja-dup-21.4.tar.xz
  deja-dup-vala-0.16.patch

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

Other differences:
------------------
++++++ deja-dup.spec ++++++
--- /var/tmp/diff_new_pack.99Grs5/_old  2012-01-24 12:17:02.000000000 +0100
+++ /var/tmp/diff_new_pack.99Grs5/_new  2012-01-24 12:17:02.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package deja-dup
 #
-# 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
@@ -16,18 +16,20 @@
 #
 
 
-
 Name:           deja-dup
-Version:        21.2
-Release:        1
-# FIXME: parallel build fails in 21.1; check if it's fixed in newer versions
+Version:        21.4
+Release:        0
 # FIXME: the %%{_datadir}/help/$locale/ files be found by %%find_lang
 # FIXME: check if python-cloudfiles is packaged, and if yes, uncomment 
Recommends
-License:        GPLv3+
 Summary:        Simple backup tool and frontend for duplicity
-Url:            https://launchpad.net/deja-dup
+License:        GPL-3.0+
 Group:          Productivity/Archiving/Backup
+Url:            https://launchpad.net/deja-dup
 Source0:        %{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM deja-dup-vala-0.16.patch lp#91717 vu...@opensuse.org -- 
Fix build with vala 0.15/0.16
+Patch0:         deja-dup-vala-0.16.patch
+# For make check to work, we need dbus-launch
+BuildRequires:  dbus-1-x11
 BuildRequires:  fdupes
 BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  intltool
@@ -61,7 +63,6 @@
  * Integrates well into your GNOME desktop
 
 %package -n nautilus-deja-dup
-License:        GPLv3+
 Summary:        Déjà Dup Plugin for Nautilus
 Group:          Productivity/Archiving/Backup
 Requires:       %{name} = %{version}
@@ -84,11 +85,11 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %configure --disable-static
-#make %%{?_smp_mflags}
-make
+make %{?_smp_mflags}
 
 %install
 %makeinstall
@@ -119,6 +120,9 @@
 # create hardlinks for the rest
 %fdupes %{buildroot}
 
+%check
+make check
+
 %if 0%{?suse_version} > 1130
 
 %post

++++++ deja-dup-vala-0.16.patch ++++++
Index: deja-dup-21.4/deja-dup/AssistantOperation.vala
===================================================================
--- deja-dup-21.4.orig/deja-dup/AssistantOperation.vala
+++ deja-dup-21.4/deja-dup/AssistantOperation.vala
@@ -193,12 +193,12 @@ public abstract class AssistantOperation
       Gtk.TextIter start, line100;
       buffer.get_start_iter(out start);
       buffer.get_iter_at_line(out line100, buffer.get_line_count() - 100);
-      buffer.delete(start, line100);
+      buffer.delete(ref start, ref line100);
     }
     
     Gtk.TextIter iter;
     buffer.get_end_iter(out iter);
-    buffer.insert_text(iter, log_line, (int)log_line.length);
+    buffer.insert_text(ref iter, log_line, (int)log_line.length);
     if (adjustment_at_end)
       adjust.value = adjust.upper;
   }
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to