Accepting request 77191 from home:vuntz:branches:GNOME:Factory
Update to 0.9.0 OBS-URL: https://build.opensuse.org/request/show/77191 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/dconf?expand=0&rev=28
This commit is contained in:
parent
bc839b316c
commit
6811768694
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:e2103e8207744903790e9fac6427fa394bb485a0c7f4e0d03b0fb43268c34f33
|
|
||||||
size 193355
|
|
3
dconf-0.9.0.tar.bz2
Normal file
3
dconf-0.9.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:267fc4e09edc6be79aed7945bd6d9bfce69fea050789336be9b12753c726baf8
|
||||||
|
size 201428
|
@ -1,3 +1,29 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 27 12:24:44 CEST 2011 - vuntz@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 0.9.0:
|
||||||
|
+ Support loading/storing of maybe types in dconf
|
||||||
|
+ Remove NFS detection hackery and rely on XDG runtime dir
|
||||||
|
+ Add proper support for change notification to DConfClient
|
||||||
|
+ Commandline tool improvements:
|
||||||
|
- reset: reset keys or entire subpaths
|
||||||
|
- dump: dump entire subpaths to keyfile format
|
||||||
|
- load: load them back again (maybe at a different path)
|
||||||
|
- watch: actually works now
|
||||||
|
+ Editor improvements:
|
||||||
|
- keys now change in editor when changed from outside
|
||||||
|
- support for flags
|
||||||
|
- show dconf-editor in applications list
|
||||||
|
+ Work around incompatible Vala bindings changes with an #if
|
||||||
|
+ Don't install the bash completion script as executable
|
||||||
|
+ Fix a warning caused by reusing a GError variable
|
||||||
|
+ Other small fixes
|
||||||
|
- Remove SUSE_ASNEEDED=0: this is not needed anymore.
|
||||||
|
- Add SystemSetup category to dconf-editor.desktop to make the brp
|
||||||
|
checks happy.
|
||||||
|
- Comment out Icon line with sed in dconf-editor.desktop, until we
|
||||||
|
get an icon in the tarball. Else, the build fails in brp checks.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 17 16:53:08 CEST 2011 - dimstar@opensuse.org
|
Tue May 17 16:53:08 CEST 2011 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
11
dconf.spec
11
dconf.spec
@ -18,14 +18,14 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: dconf
|
Name: dconf
|
||||||
Version: 0.7.5
|
Version: 0.9.0
|
||||||
Release: 1
|
Release: 1
|
||||||
# FIXME: remove SUSE_ASNEEDED=0 when this is fixed: https://bugzilla.gnome.org/show_bug.cgi?id=626280
|
# FIXME: remove sed hack to remove icon from desktop file when there's an icon in the tarball
|
||||||
License: LGPLv2.1+
|
License: LGPLv2.1+
|
||||||
Summary: Simple key-based configuration system
|
Summary: Simple key-based configuration system
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Url: http://live.gnome.org/dconf
|
Url: http://live.gnome.org/dconf
|
||||||
Source: %{name}-%{version}.tar.bz2
|
Source: http://download.gnome.org/sources/dconf/0.9/%{name}-%{version}.tar.bz2
|
||||||
Source99: baselibs.conf
|
Source99: baselibs.conf
|
||||||
# For directory ownership
|
# For directory ownership
|
||||||
BuildRequires: dbus-1
|
BuildRequires: dbus-1
|
||||||
@ -135,7 +135,6 @@ have configuration storage systems.
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SUSE_ASNEEDED=0
|
|
||||||
%configure \
|
%configure \
|
||||||
%if 0%{?BUILD_FROM_VCS}
|
%if 0%{?BUILD_FROM_VCS}
|
||||||
--enable-gtk-doc
|
--enable-gtk-doc
|
||||||
@ -146,7 +145,9 @@ export SUSE_ASNEEDED=0
|
|||||||
%install
|
%install
|
||||||
%makeinstall
|
%makeinstall
|
||||||
find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print
|
find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print
|
||||||
%suse_update_desktop_file %{buildroot}%{_datadir}/applications/dconf-editor.desktop
|
%suse_update_desktop_file %{buildroot}%{_datadir}/applications/dconf-editor.desktop SystemSetup
|
||||||
|
# FIXME: temporary hack to make the build not fail while we have no icon
|
||||||
|
sed -i "s/^Icon=dconf-editor/#Icon=dconf-editor/" %{buildroot}%{_datadir}/applications/dconf-editor.desktop
|
||||||
mkdir -p %{buildroot}%{_sysconfdir}/dconf/{profile,db}
|
mkdir -p %{buildroot}%{_sysconfdir}/dconf/{profile,db}
|
||||||
|
|
||||||
%post -n libdconf0 -p /sbin/ldconfig
|
%post -n libdconf0 -p /sbin/ldconfig
|
||||||
|
Loading…
Reference in New Issue
Block a user