Hello community,

here is the log from the commit of package systemd-ui for openSUSE:Factory 
checked in at 2015-02-18 11:39:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/systemd-ui (Old)
 and      /work/SRC/openSUSE:Factory/.systemd-ui.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "systemd-ui"

Changes:
--------
--- /work/SRC/openSUSE:Factory/systemd-ui/systemd-ui.changes    2013-04-12 
20:44:00.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.systemd-ui.new/systemd-ui.changes       
2015-02-18 12:09:05.000000000 +0100
@@ -1,0 +2,11 @@
+Tue Feb 17 11:39:45 UTC 2015 - [email protected]
+
+- Update to version 3:
+  + systemadm: filter on slices and scopes too.
+  + Make various things resizable and scrollable.
+  + Update color scheme.
+  + gnome-ask-password-agent updates.
+- Add systemd-ui-notification-clarification.patch.
+- Drop fix-desktop.patch: fixed upstream.
+
+-------------------------------------------------------------------

Old:
----
  fix-desktop.patch
  systemd-ui-2.tar.xz

New:
----
  systemd-ui-3.tar.xz
  systemd-ui-notification-clarification.patch

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

Other differences:
------------------
++++++ systemd-ui.spec ++++++
--- /var/tmp/diff_new_pack.QwNaeB/_old  2015-02-18 12:09:06.000000000 +0100
+++ /var/tmp/diff_new_pack.QwNaeB/_new  2015-02-18 12:09:06.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package systemd-ui
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,11 +18,12 @@
 
 Name:           systemd-ui
 Url:            http://www.freedesktop.org/wiki/Software/systemd
-Version:        2
+Version:        3
 Release:        0
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  autoconf
 BuildRequires:  automake
+BuildRequires:  update-desktop-files
 BuildRequires:  vala-devel
 BuildRequires:  xz
 BuildRequires:  pkgconfig(dbus-1) >= 1.3.2
@@ -43,8 +44,8 @@
 # Never add any patches to this package without the upstream commit id
 # in the patch. Any patches added here without a very good reason to make
 # an exception will be silently removed with the next version update.
-# PATCH-FIX-UPSTREAM fix-desktop.patch [email protected] -- Fix missing 
categories and GenericName
-Patch0:         fix-desktop.patch
+# PATCH-FIX-UPSTREAM systemd-ui-notification-clarification.patch 
[email protected] -- Fix ambiguity between `GLib.Notification' and 
`Notify.Notification'
+Patch0:         systemd-ui-notification-clarification.patch
 
 %description
 Graphical front-end for systemd system and service manager.
@@ -62,6 +63,7 @@
 
 %install
 %makeinstall
+%suse_update_desktop_file systemadm -r System Monitor
 
 %clean
 rm -rf %{buildroot}

++++++ systemd-ui-2.tar.xz -> systemd-ui-3.tar.xz ++++++
++++ 17487 lines of diff (skipped)

++++++ systemd-ui-notification-clarification.patch ++++++
>From 282a352dff49c13e185d826af2a248b55988bc32 Mon Sep 17 00:00:00 2001
From: Michael Biebl <[email protected]>
Date: Tue, 29 Apr 2014 22:20:51 +0200
Subject: Fix ambiguity between `GLib.Notification' and `Notify.Notification'

Notification is both defined by Notify and the latest GLib, resulting in
a build failure. Use Notify.Notification instead to avoid this
ambiguity.

Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=746130

diff --git a/src/gnome-ask-password-agent.vala 
b/src/gnome-ask-password-agent.vala
index 571cd94..f3887dd 100644
--- a/src/gnome-ask-password-agent.vala
+++ b/src/gnome-ask-password-agent.vala
@@ -80,7 +80,7 @@ public class MyStatusIcon : StatusIcon {
         string socket;
 
         PasswordDialog password_dialog;
-        Notification n;
+        Notify.Notification n;
 
         public MyStatusIcon() throws GLib.Error {
                 GLib.Object(icon_name : "dialog-password");
@@ -183,7 +183,7 @@ public class MyStatusIcon : StatusIcon {
                 }
                 set_from_icon_name(icon);
 
-                n = new Notification(title, message, icon);
+                n = new Notify.Notification(title, message, icon);
                 n.set_timeout(5000);
                 n.closed.connect(() => {
                         set_visible(true);
-- 
cgit v0.10.2


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

Reply via email to