OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gnome-settings-daemon?expand=0&rev=3
This commit is contained in:
parent
6f3895474b
commit
37bf743dc6
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3bbfd736cd3d5dec489c111066ddbf22e735dc8545e2f1fefbceb14fa0851f2a
|
||||
size 1562941
|
3
gnome-settings-daemon-2.21.91.tar.bz2
Normal file
3
gnome-settings-daemon-2.21.91.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ee034b883f7bf1b8502c4eaebc30e9dd2c395c3b5cfba79a8b357342475d2f8b
|
||||
size 1508524
|
@ -1,3 +1,33 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 19 23:28:50 CET 2008 - maw@suse.de
|
||||
|
||||
- Update to version 2.21.91:
|
||||
+ Use a flat directory instead of a hierarchy to install plugins
|
||||
into (bgo#513246)
|
||||
+ Don't scan the plugins directory recursively (#513246)
|
||||
+ Install the settings plugin to a versioned directory to fix install
|
||||
with libdir == libexecdir (bgo#504203)
|
||||
+ Review short and long descriptions for GConf keys (bgo#514047)
|
||||
+ Don't crash when running the screensaver fails (bgo#514385)
|
||||
+ Rename src folder to gnome-settings-daemon (bgo#511820)
|
||||
+ Add uninstalled.pc file for building against an uninstalled copy of
|
||||
g-s-d (bgo#511820)
|
||||
+ Add separate checks for libbackground and use external copy
|
||||
+ Use gnome_settings_daemon for the GConf path (bgo#514411)
|
||||
+ Release the Glade XML ASAP and keep track of the 2 widgets we need
|
||||
+ Make sure we return a GError if initialization fails (bgo#514926)
|
||||
+ Load the XKB settings initially (bgo#511771)
|
||||
+ Fix leaks
|
||||
+ Unref the GConfClient only after done with it
|
||||
+ Check for xinput (bgo#514942)
|
||||
+ Fix copy'n'paste error (bgo#515426)
|
||||
+ Declare variables at the beginning of a block to make older compilers
|
||||
happy
|
||||
+ Add back support for defining plugin start order
|
||||
+ Assign return value from g_slist_sort to the plugins list variable
|
||||
(bgo#515340)
|
||||
+ Replace gnome_vfs usage with GIO (bgo#513990).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 1 12:57:52 CET 2008 - rodrigo@suse.de
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package gnome-settings-daemon (Version 2.21.90.2)
|
||||
# spec file for package gnome-settings-daemon (Version 2.21.91)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
@ -10,12 +10,13 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
|
||||
Name: gnome-settings-daemon
|
||||
%define _name gnome-settings-daemon
|
||||
BuildRequires: fdupes gnome-common gnome-desktop-devel gnome-patch-translation gstreamer-0_10-plugins-base-devel intltool libglade2-devel libgnomekbd-devel update-desktop-files xorg-x11
|
||||
License: GPL v2 or later
|
||||
Group: System/GUI/GNOME
|
||||
Version: 2.21.90.2
|
||||
Version: 2.21.91
|
||||
Release: 1
|
||||
Summary: Settings daemon for the GNOME desktop
|
||||
Source: %{_name}-%{version}.tar.bz2
|
||||
@ -53,7 +54,7 @@ Authors:
|
||||
Summary: Development package for the GNOME settings daemon
|
||||
Group: System/GUI/GNOME
|
||||
AutoReqProv: on
|
||||
Requires: %{name} = %{version} dbus-1-devel glib2-devel gtk2-devel gnome-desktop-devel gnome-menus-devel
|
||||
Requires: %{name} = %{version} dbus-1-devel dbus-1-glib-devel glib2-devel gtk2-devel gnome-desktop-devel gnome-menus-devel
|
||||
|
||||
%description devel
|
||||
gnome-settings-daemon provides a daemon run by all GNOME sessions to
|
||||
@ -97,6 +98,7 @@ make %{?jobs:-j%jobs}
|
||||
%makeinstall
|
||||
# DESTDIR=$RPM_BUILD_ROOT mime-info-to-mime
|
||||
# oh dear
|
||||
rm $RPM_BUILD_ROOT/%{_libdir}/gnome-settings-daemon-2.0/*.*a
|
||||
%find_lang %{_name}
|
||||
%find_gconf_schemas
|
||||
cat %{name}.schemas_list >gnome-%{name}.lst
|
||||
@ -105,72 +107,58 @@ cat %{name}.schemas_list >gnome-%{name}.lst
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%pre -f %{name}.schemas_pre
|
||||
%post -p /sbin/ldconfig
|
||||
|
||||
%post
|
||||
/sbin/ldconfig
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%pre -f %{name}.schemas_pre
|
||||
%posttrans -f %{name}.schemas_posttrans
|
||||
|
||||
%preun -f %{name}.schemas_preun
|
||||
|
||||
%postun
|
||||
/sbin/ldconfig
|
||||
|
||||
%files
|
||||
%files -f gnome-%{name}.lst
|
||||
%defattr(-,root,root)
|
||||
%doc AUTHORS COPYING ChangeLog NEWS README
|
||||
%{_datadir}/dbus-1/services/org.gnome.SettingsDaemon.service
|
||||
%dir %{_datadir}/gnome-settings-daemon
|
||||
%dir %{_datadir}/gnome-settings-daemon/xrdb
|
||||
%{_datadir}/gnome-settings-daemon/xrdb/*.ad
|
||||
%dir %{_prefix}/lib/gnome-settings-daemon
|
||||
%{_prefix}/lib/gnome-settings-daemon/gnome-settings-daemon
|
||||
%dir %{_libdir}/gnome-settings-daemon
|
||||
%dir %{_libdir}/gnome-settings-daemon/plugins
|
||||
%{_libdir}/gnome-settings-daemon/plugins/*
|
||||
%dir %{_libdir}/gnome-settings-daemon/plugins/a11y-keyboard
|
||||
%{_libdir}/gnome-settings-daemon/plugins/a11y-keyboard/*
|
||||
%dir %{_libdir}/gnome-settings-daemon/plugins/background
|
||||
%{_libdir}/gnome-settings-daemon/plugins/background/*
|
||||
%dir %{_libdir}/gnome-settings-daemon/plugins/clipboard
|
||||
%{_libdir}/gnome-settings-daemon/plugins/clipboard/*
|
||||
%dir %{_libdir}/gnome-settings-daemon/plugins/default-editor
|
||||
%{_libdir}/gnome-settings-daemon/plugins/default-editor/*
|
||||
%dir %{_libdir}/gnome-settings-daemon/plugins/dummy
|
||||
%{_libdir}/gnome-settings-daemon/plugins/dummy/*
|
||||
%dir %{_libdir}/gnome-settings-daemon/plugins/font
|
||||
%{_libdir}/gnome-settings-daemon/plugins/font/*
|
||||
%dir %{_libdir}/gnome-settings-daemon/plugins/keybindings
|
||||
%{_libdir}/gnome-settings-daemon/plugins/keybindings/*
|
||||
%dir %{_libdir}/gnome-settings-daemon/plugins/keyboard
|
||||
%{_libdir}/gnome-settings-daemon/plugins/keyboard/*
|
||||
%dir %{_libdir}/gnome-settings-daemon/plugins/media-keys
|
||||
%{_libdir}/gnome-settings-daemon/plugins/media-keys/*
|
||||
%dir %{_libdir}/gnome-settings-daemon/plugins/mouse
|
||||
%{_libdir}/gnome-settings-daemon/plugins/mouse/*
|
||||
%dir %{_libdir}/gnome-settings-daemon/plugins/screensaver
|
||||
%{_libdir}/gnome-settings-daemon/plugins/screensaver/*
|
||||
%dir %{_libdir}/gnome-settings-daemon/plugins/sound
|
||||
%{_libdir}/gnome-settings-daemon/plugins/sound/*
|
||||
%dir %{_libdir}/gnome-settings-daemon/plugins/typing-break
|
||||
%{_libdir}/gnome-settings-daemon/plugins/typing-break/*
|
||||
%dir %{_libdir}/gnome-settings-daemon/plugins/xrandr
|
||||
%{_libdir}/gnome-settings-daemon/plugins/xrandr/*
|
||||
%dir %{_libdir}/gnome-settings-daemon/plugins/xrdb
|
||||
%{_libdir}/gnome-settings-daemon/plugins/xrdb/*
|
||||
%dir %{_libdir}/gnome-settings-daemon/plugins/xsettings
|
||||
%{_libdir}/gnome-settings-daemon/plugins/xsettings/*
|
||||
%{_sysconfdir}/gconf/schemas/*
|
||||
%{_datadir}/gnome-settings-daemon
|
||||
%{_prefix}/lib/gnome-settings-daemon
|
||||
%{_libdir}/gnome-settings-daemon-2.0
|
||||
|
||||
%files lang -f %{_name}.lang
|
||||
|
||||
%files devel
|
||||
%defattr (-, root, root)
|
||||
%dir %{_includedir}/gnome-settings-daemon-2.0
|
||||
%{_includedir}/gnome-settings-daemon-2.0/*
|
||||
%{_includedir}/gnome-settings-daemon-2.0
|
||||
%{_libdir}/pkgconfig/*.pc
|
||||
|
||||
%changelog
|
||||
* Wed Feb 20 2008 maw@suse.de
|
||||
- Update to version 2.21.91:
|
||||
+ Use a flat directory instead of a hierarchy to install plugins
|
||||
into (bgo#513246)
|
||||
+ Don't scan the plugins directory recursively (#513246)
|
||||
+ Install the settings plugin to a versioned directory to fix install
|
||||
with libdir == libexecdir (bgo#504203)
|
||||
+ Review short and long descriptions for GConf keys (bgo#514047)
|
||||
+ Don't crash when running the screensaver fails (bgo#514385)
|
||||
+ Rename src folder to gnome-settings-daemon (bgo#511820)
|
||||
+ Add uninstalled.pc file for building against an uninstalled copy of
|
||||
g-s-d (bgo#511820)
|
||||
+ Add separate checks for libbackground and use external copy
|
||||
+ Use gnome_settings_daemon for the GConf path (bgo#514411)
|
||||
+ Release the Glade XML ASAP and keep track of the 2 widgets we need
|
||||
+ Make sure we return a GError if initialization fails (bgo#514926)
|
||||
+ Load the XKB settings initially (bgo#511771)
|
||||
+ Fix leaks
|
||||
+ Unref the GConfClient only after done with it
|
||||
+ Check for xinput (bgo#514942)
|
||||
+ Fix copy'n'paste error (bgo#515426)
|
||||
+ Declare variables at the beginning of a block to make older compilers
|
||||
happy
|
||||
+ Add back support for defining plugin start order
|
||||
+ Assign return value from g_slist_sort to the plugins list variable
|
||||
(bgo#515340)
|
||||
+ Replace gnome_vfs usage with GIO (bgo#513990).
|
||||
* Fri Feb 01 2008 rodrigo@suse.de
|
||||
- Update to version 2.21.90.2:
|
||||
* Use correct binary path in DBus service file
|
||||
|
Loading…
Reference in New Issue
Block a user