Accepting request 195751 from home:dimstar:branches:GNOME:Factory
Update to 3.9.90 OBS-URL: https://build.opensuse.org/request/show/195751 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-settings-daemon?expand=0&rev=173
This commit is contained in:
parent
321163bb60
commit
fc06b6ad4e
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3dcfa901d52dd2b21d144fcdd50e16d00c40964be194bae1c34e75e3432e7a2c
|
||||
size 1616588
|
3
gnome-settings-daemon-3.9.90.tar.xz
Normal file
3
gnome-settings-daemon-3.9.90.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6cee1816b15afae183b71bfd68cf57f55c7458a468656717774f5621e4b3027c
|
||||
size 1617572
|
30
gnome-settings-daemon-cups-1.5.patch
Normal file
30
gnome-settings-daemon-cups-1.5.patch
Normal file
@ -0,0 +1,30 @@
|
||||
commit 6b745854b14feccf1d9950f1e3c124136cebfeaf
|
||||
Author: Dominique Leuenberger <dimstar@opensuse.org>
|
||||
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
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 20 19:28:12 UTC 2013 - dimstar@opensuse.org
|
||||
|
||||
- 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.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 30 16:26:53 UTC 2013 - dimstar@opensuse.org
|
||||
|
||||
|
@ -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 @@ Patch15: gnome-packagekit-BNC383261.patch
|
||||
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 hpj@suse.com -- 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 dimstar@opensuse.org -- 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 @@ translation-update-upstream
|
||||
#%%patch15 -p0
|
||||
%patch17 -p1
|
||||
%patch19 -p1
|
||||
%patch20 -p1
|
||||
|
||||
%build
|
||||
autoreconf -f -i
|
||||
|
Loading…
Reference in New Issue
Block a user