From e21a60a76817d1bab3d8ed829aef42976f092970d4fce5ed2823b8262fc21d57 Mon Sep 17 00:00:00 2001 From: OBS User buildservice-autocommit Date: Mon, 20 Dec 2010 15:48:54 +0000 Subject: [PATCH 1/4] Updating link to change in openSUSE:Factory/dconf revision 6.0 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/dconf?expand=0&rev=6ef78f0a6dd99ec94117e8e70240e68e --- dconf.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dconf.spec b/dconf.spec index 6bfdb38..fa20eb0 100644 --- a/dconf.spec +++ b/dconf.spec @@ -19,7 +19,7 @@ Name: dconf Version: 0.5.1 -Release: 2 +Release: 3 # FIXME: remove SUSE_ASNEEDED=0 when this is fixed: https://bugzilla.gnome.org/show_bug.cgi?id=626280 License: LGPLv2.1+ Summary: Simple key-based configuration system From 601884666a9069e8a6645c7d46701d08abb3031227465e4a4fc990f6be455a17 Mon Sep 17 00:00:00 2001 From: Vincent Untz Date: Fri, 7 Jan 2011 22:37:35 +0000 Subject: [PATCH 2/4] Accepting request 57467 from home:vuntz:branches:GNOME:Factory OBS-URL: https://build.opensuse.org/request/show/57467 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/dconf?expand=0&rev=14 --- dconf-0.5.1.tar.bz2 | 3 -- dconf-0.6.tar.bz2 | 3 ++ ...f-fix-dbus-introspection-enumeration.patch | 37 +++++++++++++++++++ dconf.changes | 21 +++++++++++ dconf.spec | 17 +++++---- 5 files changed, 71 insertions(+), 10 deletions(-) delete mode 100644 dconf-0.5.1.tar.bz2 create mode 100644 dconf-0.6.tar.bz2 create mode 100644 dconf-fix-dbus-introspection-enumeration.patch diff --git a/dconf-0.5.1.tar.bz2 b/dconf-0.5.1.tar.bz2 deleted file mode 100644 index d1df12e..0000000 --- a/dconf-0.5.1.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0083d70e1b5e540d8d4b3f04fa5d17dff4c574136682fe3bdd9b5ecc196ec4f6 -size 251287 diff --git a/dconf-0.6.tar.bz2 b/dconf-0.6.tar.bz2 new file mode 100644 index 0000000..612aa97 --- /dev/null +++ b/dconf-0.6.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1905655e2d3b1fa5110e75eb434467f9fcfd764992d73681486add7f0f9c7ef7 +size 161812 diff --git a/dconf-fix-dbus-introspection-enumeration.patch b/dconf-fix-dbus-introspection-enumeration.patch new file mode 100644 index 0000000..cd7cc49 --- /dev/null +++ b/dconf-fix-dbus-introspection-enumeration.patch @@ -0,0 +1,37 @@ +commit 388974f02f3267e118e2facdb32631331460aa04 +Author: Ryan Lortie +Date: Tue Dec 21 12:53:44 2010 -0500 + + Fix DBus introspection enumeration + + It should also work for people who have usernames other than 'desrt' + + Closes #634229. + +diff --git a/service/dconf-writer.c b/service/dconf-writer.c +index 3cf58f5..3b98efd 100644 +--- a/service/dconf-writer.c ++++ b/service/dconf-writer.c +@@ -56,11 +56,13 @@ gchar ** + dconf_writer_list_existing (void) + { + GPtrArray *array; ++ gchar *path; + GDir *dir; + ++ path = g_build_filename (g_get_user_config_dir (), "dconf", NULL); + array = g_ptr_array_new (); + +- if ((dir = g_dir_open ("/home/desrt/.config/dconf", 0, NULL))) ++ if ((dir = g_dir_open (path, 0, NULL))) + { + const gchar *name; + +@@ -70,6 +72,7 @@ dconf_writer_list_existing (void) + } + + g_ptr_array_add (array, NULL); ++ g_free (path); + + return (gchar **) g_ptr_array_free (array, FALSE); + } diff --git a/dconf.changes b/dconf.changes index c92ab7e..429dae8 100644 --- a/dconf.changes +++ b/dconf.changes @@ -1,3 +1,24 @@ +------------------------------------------------------------------- +Fri Jan 7 17:47:04 CET 2011 - vuntz@opensuse.org + +- Update to version 0.6: + + Rewrite a lot of the GSettings backend to reduce GDBus abuse. + We use our own worker thread now instead of trying to hijack + GDBus's. + + Disable gobject-introspection support for now. + + Drop support for GTK2 in dconf-editor. + + Add a new torture-test case. + + Increase dbus timeout to 2 minutes (in case the service is + heavily loaded). + + Fix several memory leaks and other bugs. +- Change pkgconfig(gtk+-2.0) BuildRequires to pkgconfig(gtk+-3.0). +- Change vala-devel BuildRequires to vala-unstable-devel, following + an upstream commit after the release that recommends the use of + vala 0.11. +- Add dconf-fix-dbus-introspection-enumeration.patch to fix dbus + introspection enumeration; taken from git. +- Add Url tag. + ------------------------------------------------------------------- Wed Dec 15 12:18:00 CET 2010 - vuntz@opensuse.org diff --git a/dconf.spec b/dconf.spec index fa20eb0..4adc262 100644 --- a/dconf.spec +++ b/dconf.spec @@ -1,5 +1,5 @@ # -# spec file for package dconf (Version 0.5.1) +# spec file for package dconf (Version 0.6) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -18,20 +18,24 @@ Name: dconf -Version: 0.5.1 -Release: 3 +Version: 0.6 +Release: 1 +# NOTE: once vala becomes 0.12, change BuildRequires back away from vala-unstable-devel # FIXME: remove SUSE_ASNEEDED=0 when this is fixed: https://bugzilla.gnome.org/show_bug.cgi?id=626280 License: LGPLv2.1+ Summary: Simple key-based configuration system Group: System/Libraries +Url: http://live.gnome.org/dconf Source: %{name}-%{version}.tar.bz2 Source99: baselibs.conf +# PATCH-FIX-UPSTREAM dconf-fix-dbus-introspection-enumeration.patch vuntz@opensuse.org -- Taken from git +Patch0: dconf-fix-dbus-introspection-enumeration.patch # For directory ownership BuildRequires: dbus-1 -BuildRequires: vala-devel +BuildRequires: vala-unstable-devel BuildRequires: pkgconfig(gio-2.0) BuildRequires: pkgconfig(gobject-introspection-1.0) -BuildRequires: pkgconfig(gtk+-2.0) +BuildRequires: pkgconfig(gtk+-3.0) BuildRequires: pkgconfig(libxml-2.0) # dconf provides a dbus service, but has no dependency on dbus in any way # (because it uses gdbus), so we need an explicit Requires @@ -98,6 +102,7 @@ have configuration storage systems. %prep %setup -q +%patch0 -p1 %build export SUSE_ASNEEDED=0 @@ -132,7 +137,6 @@ find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print %files -n libdconf0 %defattr(-, root, root) %{_libdir}/libdconf.so.* -%{_libdir}/girepository-1.0/dconf-1.0.typelib %files -n gsettings-backend-dconf %defattr(-, root, root) @@ -148,7 +152,6 @@ find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print %{_includedir}/dconf/ %{_libdir}/libdconf.so %{_libdir}/pkgconfig/dconf.pc -%{_datadir}/gir-1.0/*.gir %dir %{_datadir}/vala %dir %{_datadir}/vala/vapi %{_datadir}/vala/vapi/dconf.* From 20e6eedd620141e5a8f49979b75aa2f437edc9088cff2d115832c6fff7b7f0d8 Mon Sep 17 00:00:00 2001 From: Vincent Untz Date: Fri, 14 Jan 2011 09:48:34 +0000 Subject: [PATCH 3/4] Accepting request 57714 from home:fcrozat:gnome3 thanks OBS-URL: https://build.opensuse.org/request/show/57714 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/dconf?expand=0&rev=15 --- _service | 12 ++ ...ss:tar_scm:dconf-0.6git.1292858073.tar.bz2 | 3 + _service:set_version:dconf.spec | 171 ++++++++++++++++++ dconf.changes | 5 + dconf.spec | 14 +- 5 files changed, 204 insertions(+), 1 deletion(-) create mode 100644 _service create mode 100644 _service:recompress:tar_scm:dconf-0.6git.1292858073.tar.bz2 create mode 100644 _service:set_version:dconf.spec diff --git a/_service b/_service new file mode 100644 index 0000000..85e37ac --- /dev/null +++ b/_service @@ -0,0 +1,12 @@ + + + 0.6git + git://git.gnome.org/dconf + git + + + *.tar + bz2 + + + diff --git a/_service:recompress:tar_scm:dconf-0.6git.1292858073.tar.bz2 b/_service:recompress:tar_scm:dconf-0.6git.1292858073.tar.bz2 new file mode 100644 index 0000000..a9de2ab --- /dev/null +++ b/_service:recompress:tar_scm:dconf-0.6git.1292858073.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a843bff9033499b06da233439156803d48de7efc9a6ded2aec7be05f10c55ef +size 267529 diff --git a/_service:set_version:dconf.spec b/_service:set_version:dconf.spec new file mode 100644 index 0000000..c594a9a --- /dev/null +++ b/_service:set_version:dconf.spec @@ -0,0 +1,171 @@ +# +# spec file for package dconf (Version 0.6) +# +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + + +Name: dconf +Version: 0.6git.1292858073 +Release: 0 +# NOTE: once vala becomes 0.12, change BuildRequires back away from vala-unstable-devel +# FIXME: remove SUSE_ASNEEDED=0 when this is fixed: https://bugzilla.gnome.org/show_bug.cgi?id=626280 +License: LGPLv2.1+ +Summary: Simple key-based configuration system +Group: System/Libraries +Url: http://live.gnome.org/dconf +Source: %{name}-%{version}.tar.bz2 +Source99: baselibs.conf +# PATCH-FIX-UPSTREAM dconf-fix-dbus-introspection-enumeration.patch vuntz@opensuse.org -- Taken from git +Patch0: dconf-fix-dbus-introspection-enumeration.patch +# For directory ownership +BuildRequires: dbus-1 +BuildRequires: vala-unstable-devel +BuildRequires: pkgconfig(gio-2.0) +BuildRequires: pkgconfig(gobject-introspection-1.0) +BuildRequires: pkgconfig(gtk+-3.0) +BuildRequires: pkgconfig(libxml-2.0) +%if 0%{?BUILD_FROM_VCS} +BuildRequires: gtk-doc +%endif +# dconf provides a dbus service, but has no dependency on dbus in any way +# (because it uses gdbus), so we need an explicit Requires +Requires: dbus-1 + +%description +dconf is a low-level configuration system. Its main purpose is to +provide a backend to GSettings on platforms that don't already +have configuration storage systems. + +%package -n libdconf0 +License: LGPLv2.1+ +Summary: Simple key-based configuration system -- Library +Group: System/Libraries +# The library doesn't really work if the dconf service is not reachable, so we +# need a Requires +Requires: %{name} = %{version} + +%description -n libdconf0 +dconf is a low-level configuration system. Its main purpose is to +provide a backend to GSettings on platforms that don't already +have configuration storage systems. + +%package -n gsettings-backend-dconf +License: LGPLv2.1+ +Summary: Simple key-based configuration system -- GSettings Backend +Group: System/Libraries +Requires: %{name} = %{version} +# We really want this to be used as the default GSettings backend +Supplements: libgio-2_0-0 +%glib2_gio_module_requires + +%description -n gsettings-backend-dconf +dconf is a low-level configuration system. Its main purpose is to +provide a backend to GSettings on platforms that don't already +have configuration storage systems. + +This package provides a GSettings backend that uses dconf to store +the settings. + +%package editor +License: LGPLv2.1+ +Summary: Simple key-based configuration system -- Graphical Editor +Group: System/GUI/GNOME +Requires: %{name} = %{version} + +%description editor +dconf is a low-level configuration system. Its main purpose is to +provide a backend to GSettings on platforms that don't already +have configuration storage systems. + +This package provides a graphical editor for dconf database. + +%package devel +License: LGPLv2.1+ +Summary: Simple key-based configuration system -- Development Files +Group: Development/Libraries/GNOME +Requires: libdconf0 = %{version} + +%description devel +dconf is a low-level configuration system. Its main purpose is to +provide a backend to GSettings on platforms that don't already +have configuration storage systems. + +%prep +%setup -q +%if !0%{?BUILD_FROM_VCS} +%patch0 -p1 +%endif + +%if 0%{?BUILD_FROM_VCS} +NOCONFIGURE=1 ./autogen.sh +%endif + +%build +export SUSE_ASNEEDED=0 +%configure \ +%if 0%{?BUILD_FROM_VCS} + --enable-gtk-doc +%endif + +%__make %{?_smp_mflags} + +%install +%makeinstall +find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print + +%post -n libdconf0 -p /sbin/ldconfig + +%postun -n libdconf0 -p /sbin/ldconfig + +%post -n gsettings-backend-dconf +%glib2_gio_module_post + +%postun -n gsettings-backend-dconf +%glib2_gio_module_postun + +%files +%defattr(-, root, root) +%doc COPYING NEWS +# small utility to read values in the database +%{_bindir}/dconf +# service is needed for write +%{_libexecdir}/dconf-service +%{_datadir}/dbus-1/services/ca.desrt.dconf.service +%{_datadir}/dbus-1/system-services/ca.desrt.dconf.service + +%files -n libdconf0 +%defattr(-, root, root) +%{_libdir}/libdconf.so.* + +%files -n gsettings-backend-dconf +%defattr(-, root, root) +%{_libdir}/gio/modules/libdconfsettings.so + +%files editor +%defattr(-, root, root) +%{_bindir}/dconf-editor + +%files devel +%defattr(-, root, root) +%doc %{_datadir}/gtk-doc/html/dconf/ +%{_includedir}/dconf/ +%{_libdir}/libdconf.so +%{_libdir}/pkgconfig/dconf.pc +%dir %{_datadir}/vala +%dir %{_datadir}/vala/vapi +%{_datadir}/vala/vapi/dconf.* + +%changelog diff --git a/dconf.changes b/dconf.changes index 429dae8..199506d 100644 --- a/dconf.changes +++ b/dconf.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jan 10 14:16:46 UTC 2011 - fcrozat@novell.com + +- Add support for building using source service + ------------------------------------------------------------------- Fri Jan 7 17:47:04 CET 2011 - vuntz@opensuse.org diff --git a/dconf.spec b/dconf.spec index 4adc262..23890a3 100644 --- a/dconf.spec +++ b/dconf.spec @@ -37,6 +37,9 @@ BuildRequires: pkgconfig(gio-2.0) BuildRequires: pkgconfig(gobject-introspection-1.0) BuildRequires: pkgconfig(gtk+-3.0) BuildRequires: pkgconfig(libxml-2.0) +%if 0%{?BUILD_FROM_VCS} +BuildRequires: gtk-doc +%endif # dconf provides a dbus service, but has no dependency on dbus in any way # (because it uses gdbus), so we need an explicit Requires Requires: dbus-1 @@ -102,12 +105,21 @@ have configuration storage systems. %prep %setup -q +%if !0%{?BUILD_FROM_VCS} %patch0 -p1 +%endif + +%if 0%{?BUILD_FROM_VCS} +NOCONFIGURE=1 ./autogen.sh +%endif %build export SUSE_ASNEEDED=0 %configure \ - --disable-static +%if 0%{?BUILD_FROM_VCS} + --enable-gtk-doc +%endif + %__make %{?_smp_mflags} %install From b44b3b4cbb484863d4276db3e9b2f3403c703e90277c353f9b4ef42f47cb6565 Mon Sep 17 00:00:00 2001 From: Vincent Untz Date: Fri, 14 Jan 2011 09:50:58 +0000 Subject: [PATCH 4/4] Accepting request 58124 from home:vuntz:branches:GNOME:Factory ok OBS-URL: https://build.opensuse.org/request/show/58124 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/dconf?expand=0&rev=16 --- _service | 12 -- ...ss:tar_scm:dconf-0.6git.1292858073.tar.bz2 | 3 - _service:set_version:dconf.spec | 171 ------------------ dconf.changes | 10 +- 4 files changed, 9 insertions(+), 187 deletions(-) delete mode 100644 _service delete mode 100644 _service:recompress:tar_scm:dconf-0.6git.1292858073.tar.bz2 delete mode 100644 _service:set_version:dconf.spec diff --git a/_service b/_service deleted file mode 100644 index 85e37ac..0000000 --- a/_service +++ /dev/null @@ -1,12 +0,0 @@ - - - 0.6git - git://git.gnome.org/dconf - git - - - *.tar - bz2 - - - diff --git a/_service:recompress:tar_scm:dconf-0.6git.1292858073.tar.bz2 b/_service:recompress:tar_scm:dconf-0.6git.1292858073.tar.bz2 deleted file mode 100644 index a9de2ab..0000000 --- a/_service:recompress:tar_scm:dconf-0.6git.1292858073.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3a843bff9033499b06da233439156803d48de7efc9a6ded2aec7be05f10c55ef -size 267529 diff --git a/_service:set_version:dconf.spec b/_service:set_version:dconf.spec deleted file mode 100644 index c594a9a..0000000 --- a/_service:set_version:dconf.spec +++ /dev/null @@ -1,171 +0,0 @@ -# -# spec file for package dconf (Version 0.6) -# -# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. -# -# All modifications and additions to the file contributed by third parties -# remain the property of their copyright owners, unless otherwise agreed -# upon. The license for this file, and modifications and additions to the -# file, is the same license as for the pristine package itself (unless the -# license for the pristine package is not an Open Source License, in which -# case the license is the MIT License). An "Open Source License" is a -# license that conforms to the Open Source Definition (Version 1.9) -# published by the Open Source Initiative. - -# Please submit bugfixes or comments via http://bugs.opensuse.org/ -# - - - -Name: dconf -Version: 0.6git.1292858073 -Release: 0 -# NOTE: once vala becomes 0.12, change BuildRequires back away from vala-unstable-devel -# FIXME: remove SUSE_ASNEEDED=0 when this is fixed: https://bugzilla.gnome.org/show_bug.cgi?id=626280 -License: LGPLv2.1+ -Summary: Simple key-based configuration system -Group: System/Libraries -Url: http://live.gnome.org/dconf -Source: %{name}-%{version}.tar.bz2 -Source99: baselibs.conf -# PATCH-FIX-UPSTREAM dconf-fix-dbus-introspection-enumeration.patch vuntz@opensuse.org -- Taken from git -Patch0: dconf-fix-dbus-introspection-enumeration.patch -# For directory ownership -BuildRequires: dbus-1 -BuildRequires: vala-unstable-devel -BuildRequires: pkgconfig(gio-2.0) -BuildRequires: pkgconfig(gobject-introspection-1.0) -BuildRequires: pkgconfig(gtk+-3.0) -BuildRequires: pkgconfig(libxml-2.0) -%if 0%{?BUILD_FROM_VCS} -BuildRequires: gtk-doc -%endif -# dconf provides a dbus service, but has no dependency on dbus in any way -# (because it uses gdbus), so we need an explicit Requires -Requires: dbus-1 - -%description -dconf is a low-level configuration system. Its main purpose is to -provide a backend to GSettings on platforms that don't already -have configuration storage systems. - -%package -n libdconf0 -License: LGPLv2.1+ -Summary: Simple key-based configuration system -- Library -Group: System/Libraries -# The library doesn't really work if the dconf service is not reachable, so we -# need a Requires -Requires: %{name} = %{version} - -%description -n libdconf0 -dconf is a low-level configuration system. Its main purpose is to -provide a backend to GSettings on platforms that don't already -have configuration storage systems. - -%package -n gsettings-backend-dconf -License: LGPLv2.1+ -Summary: Simple key-based configuration system -- GSettings Backend -Group: System/Libraries -Requires: %{name} = %{version} -# We really want this to be used as the default GSettings backend -Supplements: libgio-2_0-0 -%glib2_gio_module_requires - -%description -n gsettings-backend-dconf -dconf is a low-level configuration system. Its main purpose is to -provide a backend to GSettings on platforms that don't already -have configuration storage systems. - -This package provides a GSettings backend that uses dconf to store -the settings. - -%package editor -License: LGPLv2.1+ -Summary: Simple key-based configuration system -- Graphical Editor -Group: System/GUI/GNOME -Requires: %{name} = %{version} - -%description editor -dconf is a low-level configuration system. Its main purpose is to -provide a backend to GSettings on platforms that don't already -have configuration storage systems. - -This package provides a graphical editor for dconf database. - -%package devel -License: LGPLv2.1+ -Summary: Simple key-based configuration system -- Development Files -Group: Development/Libraries/GNOME -Requires: libdconf0 = %{version} - -%description devel -dconf is a low-level configuration system. Its main purpose is to -provide a backend to GSettings on platforms that don't already -have configuration storage systems. - -%prep -%setup -q -%if !0%{?BUILD_FROM_VCS} -%patch0 -p1 -%endif - -%if 0%{?BUILD_FROM_VCS} -NOCONFIGURE=1 ./autogen.sh -%endif - -%build -export SUSE_ASNEEDED=0 -%configure \ -%if 0%{?BUILD_FROM_VCS} - --enable-gtk-doc -%endif - -%__make %{?_smp_mflags} - -%install -%makeinstall -find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print - -%post -n libdconf0 -p /sbin/ldconfig - -%postun -n libdconf0 -p /sbin/ldconfig - -%post -n gsettings-backend-dconf -%glib2_gio_module_post - -%postun -n gsettings-backend-dconf -%glib2_gio_module_postun - -%files -%defattr(-, root, root) -%doc COPYING NEWS -# small utility to read values in the database -%{_bindir}/dconf -# service is needed for write -%{_libexecdir}/dconf-service -%{_datadir}/dbus-1/services/ca.desrt.dconf.service -%{_datadir}/dbus-1/system-services/ca.desrt.dconf.service - -%files -n libdconf0 -%defattr(-, root, root) -%{_libdir}/libdconf.so.* - -%files -n gsettings-backend-dconf -%defattr(-, root, root) -%{_libdir}/gio/modules/libdconfsettings.so - -%files editor -%defattr(-, root, root) -%{_bindir}/dconf-editor - -%files devel -%defattr(-, root, root) -%doc %{_datadir}/gtk-doc/html/dconf/ -%{_includedir}/dconf/ -%{_libdir}/libdconf.so -%{_libdir}/pkgconfig/dconf.pc -%dir %{_datadir}/vala -%dir %{_datadir}/vala/vapi -%{_datadir}/vala/vapi/dconf.* - -%changelog diff --git a/dconf.changes b/dconf.changes index 199506d..45159ff 100644 --- a/dconf.changes +++ b/dconf.changes @@ -1,7 +1,15 @@ ------------------------------------------------------------------- Mon Jan 10 14:16:46 UTC 2011 - fcrozat@novell.com -- Add support for building using source service +- Add support for source service checkout, with %BUILD_FROM_VCS: + + Add gtk-doc BuildRequires. + + Add call to ./autogen.sh. + + Do not apply dconf-fix-dbus-introspection-enumeration.patch + which is already in git. + + Enforce gtk-doc html generation by passing --enable-gtk-doc to + configure. +- Remove --disable-static from configure: it's not needed for dconf + which has an unusual setup. ------------------------------------------------------------------- Fri Jan 7 17:47:04 CET 2011 - vuntz@opensuse.org