Hello community,
here is the log from the commit of package gnome-settings-daemon for
openSUSE:Factory checked in at 2013-08-30 16:29:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-settings-daemon (Old)
and /work/SRC/openSUSE:Factory/.gnome-settings-daemon.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-settings-daemon"
Changes:
--------
---
/work/SRC/openSUSE:Factory/gnome-settings-daemon/gnome-settings-daemon.changes
2013-08-16 12:24:04.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.gnome-settings-daemon.new/gnome-settings-daemon.changes
2013-08-30 16:29:23.000000000 +0200
@@ -1,0 +2,40 @@
+Tue Aug 20 19:28:12 UTC 2013 - [email protected]
+
+- Update to version 3.9.90:
+ + Consolidate access to common bus proxies like session and
+ screensaver.
+ + Housekeeping:
+ - Fixed a bug that would prevent files in the Trash from being
+ purged.
+ + Media-keys:
+ - Add a way to watch DBus namespaces.
+ - Use an MPRIS interface to handle Play, Pause, etc. keys in
+ case we don't have a native client registered for our
+ media-keys API.
+ - Add a binding to take a short screencast of the screen.
+ - Add a shortcut to toggle the screen reader.
+ + Mouse:
+ - Enable edge scrolling if two-finger scroll is unavailable.
+ + Power:
+ - Add Brightness property for keyboard backlights.
+ - Use logind to discover critical action availability.
+ + Printers:
+ - Code cleanup.
+ - Do more things asynchronously.
+ - Poll remote CUPS servers for notifications.
+ + RFKill:
+ - Add a property to determine whether we can toggle airplane
+ mode.
+ + XRandR:
+ - Stop handling monitors.xml and the initial modeset for the
+ session, as well as monitor hotplug and lid switches. All
+ that is implemented in mutter now.
+ + XSettings:
+ - Disable middle-click paste by default. Can be enabled in
+ gnome-tweak-tool.
+ - Add support to detect and set a scale factor on high DPI
+ displays.
+- Add gnome-settings-daemon-cups-1.5.patch: Allow building against
+ cups 1.5.
+
+-------------------------------------------------------------------
Old:
----
gnome-settings-daemon-3.9.5.tar.xz
New:
----
gnome-settings-daemon-3.9.90.tar.xz
gnome-settings-daemon-cups-1.5.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gnome-settings-daemon.spec ++++++
--- /var/tmp/diff_new_pack.nKJCK4/_old 2013-08-30 16:29:24.000000000 +0200
+++ /var/tmp/diff_new_pack.nKJCK4/_new 2013-08-30 16:29:24.000000000 +0200
@@ -27,7 +27,7 @@
%define with_smartcard 1
Name: gnome-settings-daemon
-Version: 3.9.5
+Version: 3.9.90
Release: 0
Summary: Settings daemon for the GNOME desktop
License: GPL-2.0+
@@ -50,6 +50,8 @@
Patch17: gnome-settings-daemon-stop-reload-proxy-settings.patch
# PATCH-FEATURE-UPSTREAM gnome-settings-daemon-notify-idle-resumed.patch
bnc#439018 bnc#708182 bgo#575467 [email protected] -- notify user about auto
suspend when returning from sleep
Patch19: gnome-settings-daemon-notify-idle-resumed.patch
+# PATCH-FIX-UPSTREAM gnome-settings-daemon-cups-1.5.patch bgo#706442
[email protected] -- Fix building against CUPS 1.5.
+Patch20: gnome-settings-daemon-cups-1.5.patch
BuildRequires: cups-devel
BuildRequires: fdupes
BuildRequires: gnome-common
@@ -144,6 +146,7 @@
#%%patch15 -p0
%patch17 -p1
%patch19 -p1
+%patch20 -p1
%build
autoreconf -f -i
++++++ gnome-settings-daemon-3.9.5.tar.xz ->
gnome-settings-daemon-3.9.90.tar.xz ++++++
++++ 55725 lines of diff (skipped)
++++++ gnome-settings-daemon-cups-1.5.patch ++++++
commit 6b745854b14feccf1d9950f1e3c124136cebfeaf
Author: Dominique Leuenberger <[email protected]>
Date: Tue Aug 20 22:22:18 2013 +0200
printer: allow building against cups 1.5
https://bugzilla.gnome.org/show_bug.cgi?id=706442
diff --git a/plugins/print-notifications/gsd-print-notifications-manager.c
b/plugins/print-notifications/gsd-print-notifications-manager.c
index 33eadae..6cd7d21 100644
--- a/plugins/print-notifications/gsd-print-notifications-manager.c
+++ b/plugins/print-notifications/gsd-print-notifications-manager.c
@@ -62,6 +62,17 @@
#define ippGetStatusCode(ipp) ipp->request.status.status_code
#define ippGetInteger(attr, element) attr->values[element].integer
#define ippGetString(attr, element, language) attr->values[element].string.text
+#define ippGetName(attr) attr->name
+#define ippGetCount(attr) attr->num_values
+#define ippGetBoolean(attr, index) attr->values[index].boolean
+
+static ipp_attribute_t *
+ippNextAttribute (ipp_t *ipp)
+{
+ if (!ipp || !ipp->current)
+ return (NULL);
+ return (ipp->current = ipp->current->next);
+}
#endif
struct GsdPrintNotificationsManagerPrivate
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]