dfde3b
%define libxml2_version 2.4.12
dfde3b
%define glib2_version 2.25.9
dfde3b
%define dbus_version 1.0.1
dfde3b
%define dbus_glib_version 0.74
dfde3b
dfde3b
Summary: A process-transparent configuration system
dfde3b
Name: GConf2
dfde3b
Version: 3.2.6
dfde3b
Release: 22%{?dist}
dfde3b
License: LGPLv2+ and GPLv2+
dfde3b
Group: System Environment/Base
dfde3b
#VCS: git:git://git.gnome.org/gconf
dfde3b
Source0: http://download.gnome.org/sources/GConf/3.2/GConf-%{version}.tar.xz
dfde3b
Source1: macros.gconf2
dfde3b
URL: http://projects.gnome.org/gconf/
dfde3b
dfde3b
# http://bugzilla.gnome.org/show_bug.cgi?id=568845
dfde3b
Patch0: GConf-gettext.patch
dfde3b
dfde3b
# https://bugzilla.gnome.org/show_bug.cgi?id=671490
dfde3b
Patch1: drop-spew.patch
dfde3b
dfde3b
# https://bugzilla.redhat.com/show_bug.cgi?id=1580646
dfde3b
# https://bugzilla.redhat.com/show_bug.cgi?id=1567087
dfde3b
Patch2: gconf-3.2.6-python3.patch
dfde3b
dfde3b
# https://bugzilla.redhat.com/show_bug.cgi?id=755992
dfde3b
Patch99: workaround-crash.patch
dfde3b
Patch100: pkill-hack.patch
dfde3b
dfde3b
BuildRequires: libxml2-devel >= %{libxml2_version}
dfde3b
BuildRequires: libxslt-devel
dfde3b
BuildRequires: glib2-devel >= %{glib2_version}
dfde3b
BuildRequires: gtk-doc >= 0.9
dfde3b
BuildRequires: pkgconfig >= 0.14
dfde3b
BuildRequires: gettext
dfde3b
BuildRequires: intltool
dfde3b
BuildRequires: polkit-devel >= 0.92
dfde3b
BuildRequires: dbus-glib-devel >= 0.8
dfde3b
BuildRequires: gobject-introspection-devel >= 0.6.7
dfde3b
BuildRequires: autoconf automake libtool
dfde3b
Requires: dbus
dfde3b
# for patch0
dfde3b
Requires: /usr/bin/killall
dfde3b
Conflicts: GConf2-dbus
dfde3b
dfde3b
Provides: GConf2-gtk = 3.2.6-6
dfde3b
Obsoletes: GConf2-gtk < 3.2.6-6
dfde3b
dfde3b
%description
dfde3b
GConf is a process-transparent configuration database API used to
dfde3b
store user preferences. It has pluggable backends and features to
dfde3b
support workgroup administration.
dfde3b
dfde3b
%package devel
dfde3b
Summary: Headers and libraries for GConf development
dfde3b
Group: Development/Libraries
dfde3b
Requires: %{name} = %{version}-%{release}
dfde3b
Requires: libxml2-devel >= %{libxml2_version}
dfde3b
Requires: glib2-devel >= %{glib2_version}
dfde3b
# we install a pc file
dfde3b
Requires: pkgconfig
dfde3b
# we install an automake macro
dfde3b
Requires: automake
dfde3b
Conflicts: GConf2-dbus-devel
dfde3b
dfde3b
%description devel
dfde3b
GConf development package. Contains files needed for doing
dfde3b
development using GConf.
dfde3b
dfde3b
%prep
dfde3b
%setup -q -n GConf-%{version}
dfde3b
%patch0 -p1 -b .gettext
dfde3b
%patch1 -p1 -b .drop-spew
dfde3b
%patch2 -p1 -b .python3
dfde3b
dfde3b
%patch99 -p1 -b .workaround-crash
dfde3b
%patch100 -p1 -b .pkill-hack
dfde3b
dfde3b
autoreconf -i -f
dfde3b
dfde3b
%build
dfde3b
%configure --disable-static --enable-defaults-service --disable-orbit --with-gtk=3.0
dfde3b
dfde3b
# drop unneeded direct library deps with --as-needed
dfde3b
# libtool doesn't make this easy, so we do it the hard way
dfde3b
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/      func_append compile_command " -Wl,-O1,--as-needed"\n      func_append finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
dfde3b
dfde3b
make
dfde3b
dfde3b
%install
dfde3b
make install DESTDIR=$RPM_BUILD_ROOT
dfde3b
dfde3b
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/gconf/schemas
dfde3b
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/gconf/gconf.xml.system
dfde3b
mkdir -p $RPM_BUILD_ROOT%{_rpmconfigdir}/macros.d/
dfde3b
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/rpm-state/gconf
dfde3b
mkdir -p $RPM_BUILD_ROOT%{_datadir}/GConf/gsettings
dfde3b
dfde3b
install -p -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_rpmconfigdir}/macros.d/
dfde3b
dfde3b
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
dfde3b
rm -f $RPM_BUILD_ROOT%{_libdir}/GConf/2/*.la
dfde3b
rm -f $RPM_BUILD_ROOT%{_libdir}/gio/modules/*.la
dfde3b
dfde3b
mkdir -p $RPM_BUILD_ROOT%{_datadir}/GConf/gsettings
dfde3b
dfde3b
%find_lang %name
dfde3b
dfde3b
%post
dfde3b
/sbin/ldconfig
dfde3b
dfde3b
if [ $1 -gt 1 ]; then
dfde3b
    if ! fgrep -q gconf.xml.system %{_sysconfdir}/gconf/2/path; then
dfde3b
        sed -i -e 's@xml:readwrite:$(HOME)/.gconf@&\n\n# Location for system-wide settings.\nxml:readonly:/etc/gconf/gconf.xml.system@' %{_sysconfdir}/gconf/2/path
dfde3b
    fi
dfde3b
fi
dfde3b
dfde3b
%postun -p /sbin/ldconfig
dfde3b
dfde3b
%files -f %{name}.lang
dfde3b
%{!?_licensedir:%global license %%doc}
dfde3b
%license COPYING
dfde3b
%doc NEWS README
dfde3b
%config(noreplace) %{_sysconfdir}/gconf/2/path
dfde3b
%dir %{_sysconfdir}/gconf
dfde3b
%dir %{_sysconfdir}/gconf/2
dfde3b
%dir %{_sysconfdir}/gconf/gconf.xml.defaults
dfde3b
%dir %{_sysconfdir}/gconf/gconf.xml.mandatory
dfde3b
%dir %{_sysconfdir}/gconf/gconf.xml.system
dfde3b
%dir %{_sysconfdir}/gconf/schemas
dfde3b
%{_bindir}/gconf-merge-tree
dfde3b
%{_bindir}/gconftool-2
dfde3b
%doc %{_mandir}/man1/gconftool-2.1*
dfde3b
%{_bindir}/gsettings-data-convert
dfde3b
%doc %{_mandir}/man1/gsettings-data-convert.1*
dfde3b
%{_sysconfdir}/xdg/autostart/gsettings-data-convert.desktop
dfde3b
%{_libexecdir}/gconfd-2
dfde3b
%{_libdir}/*.so.*
dfde3b
%{_libdir}/GConf/2/*.so
dfde3b
%dir %{_datadir}/sgml
dfde3b
%{_datadir}/sgml/gconf
dfde3b
%{_datadir}/GConf
dfde3b
%dir %{_libdir}/GConf
dfde3b
%dir %{_libdir}/GConf/2
dfde3b
%{_rpmconfigdir}/macros.d/macros.gconf2
dfde3b
%{_sysconfdir}/dbus-1/system.d/org.gnome.GConf.Defaults.conf
dfde3b
%{_libexecdir}/gconf-defaults-mechanism
dfde3b
%{_datadir}/polkit-1/actions/org.gnome.gconf.defaults.policy
dfde3b
%{_datadir}/dbus-1/system-services/org.gnome.GConf.Defaults.service
dfde3b
%{_datadir}/dbus-1/services/org.gnome.GConf.service
dfde3b
%{_localstatedir}/lib/rpm-state/gconf/
dfde3b
%{_libdir}/gio/modules/libgsettingsgconfbackend.so
dfde3b
%{_libdir}/girepository-1.0
dfde3b
dfde3b
%files devel
dfde3b
%{_libdir}/*.so
dfde3b
%{_includedir}/gconf
dfde3b
%{_datadir}/aclocal/*.m4
dfde3b
%{_datadir}/gtk-doc/html/gconf
dfde3b
%{_libdir}/pkgconfig/*
dfde3b
%{_datadir}/gir-1.0
dfde3b
%{_bindir}/gsettings-schema-convert
dfde3b
%doc %{_mandir}/man1/gsettings-schema-convert.1*
dfde3b
dfde3b
%changelog
dfde3b
* Wed Jul 25 2018 Marek Kasik <mkasik@redhat.com> - 3.2.6-22
dfde3b
- Improve python3 support by Takao Fujiwara's patch
dfde3b
- Resolves: #1567087
dfde3b
dfde3b
* Tue May 22 2018 Marek Kasik <mkasik@redhat.com> - 3.2.6-21
dfde3b
- Convert gsettings-schema-convert to python3
dfde3b
- Resolves: #1580646
dfde3b
dfde3b
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.6-20
dfde3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
dfde3b
dfde3b
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.6-19
dfde3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
dfde3b
dfde3b
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.6-18
dfde3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
dfde3b
dfde3b
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.6-17
dfde3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
dfde3b
dfde3b
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.6-16
dfde3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
dfde3b
dfde3b
* Sat Jun 27 2015 Ville Skyttä <ville.skytta@iki.fi> - 3.2.6-15
dfde3b
- Fix source URL and switch to xz tarball (the only one available)
dfde3b
- Do not own %%{_localstatedir}/lib/rpm-state (#907618)
dfde3b
- Ship gsettings-schema-convert manpage only in -devel (#893767)
dfde3b
- Install COPYING as %%license where available
dfde3b
- Fix bogus dates in %%changelog
dfde3b
dfde3b
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.6-14
dfde3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
dfde3b
dfde3b
* Wed Mar  4 2015 Ville Skyttä <ville.skytta@iki.fi> - 3.2.6-13
dfde3b
- Install macros file to %%{_rpmconfigdir}/macros.d (#1074275)
dfde3b
dfde3b
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 3.2.6-12
dfde3b
- Rebuilt for Fedora 23 Change
dfde3b
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
dfde3b
dfde3b
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.6-11
dfde3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
dfde3b
dfde3b
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 3.2.6-10
dfde3b
- Rebuilt for gobject-introspection 1.41.4
dfde3b
dfde3b
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.6-9
dfde3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
dfde3b
dfde3b
* Thu Jun 05 2014 Karsten Hopp <karsten@redhat.com> 3.2.6-8
dfde3b
- rebuild in F21 to sync versions between ppc64 and ppc64-le
dfde3b
dfde3b
* Fri Aug 02 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.6-7
dfde3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
dfde3b
dfde3b
* Fri Apr 26 2013 Kalev Lember <kalevlember@gmail.com> 3.2.6-6
dfde3b
- Update the GConf2-gtk versioned obsoletes
dfde3b
dfde3b
* Wed Apr 17 2013 Ray Strode <rstrode@redhat.com> 3.2.6-5
dfde3b
- Make --makefile-install-rule work even in packages that don't use the macros
dfde3b
dfde3b
* Mon Apr 15 2013 Ray Strode <rstrode@redhat.com> 3.2.6-4
dfde3b
- Make pkill -HUP -f gconfd-2 work again
dfde3b
- Make --makefile-install-rull less noisy
dfde3b
dfde3b
* Fri Apr 12 2013 Ray Strode <rstrode@redhat.com> 3.2.6-3
dfde3b
- Update GConf upgrade macros (Patch from Michael Schwendt)
dfde3b
  Resolves: #920615
dfde3b
dfde3b
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.6-2
dfde3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
dfde3b
dfde3b
* Mon Jan 21 2013 Matthias Clasen <mclasen@redhat.com> 3.2.6-1
dfde3b
- Update to 3.2.6
dfde3b
- Drop the gtk subpackage
dfde3b
dfde3b
* Fri Nov 16 2012 Marek Kasik <mkasik@redhat.com> 3.2.5-4
dfde3b
- Update License field
dfde3b
- Remove unused patches
dfde3b
- Add bug reference to one patch
dfde3b
dfde3b
* Mon Sep 24 2012 Ray Strode <rstrode@redhat.com> 3.2.5-3
dfde3b
- More crasher workarounds
dfde3b
  Resolves: #858348
dfde3b
dfde3b
* Thu Sep 13 2012 Ray Strode <rstrode@redhat.com> 3.2.5-2
dfde3b
- Work around crasher bug
dfde3b
  Resolves: #755992
dfde3b
dfde3b
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.5-2
dfde3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
dfde3b
dfde3b
* Thu Mar 15 2012 Matthias Clasen <mclasen@redhat.com> - 3.2.5-1
dfde3b
- Update to 3.2.5
dfde3b
dfde3b
* Fri Mar  9 2012 Matthias Clasen <mclasen@redhat.com> - 3.2.4-1
dfde3b
- Update to 3.2.4
dfde3b
dfde3b
* Mon Feb 13 2012 Ray Strode <rstrode@redhat.com> 3.2.3-4
dfde3b
- Potentially fix crasher bug
dfde3b
  Resolves: #756245
dfde3b
dfde3b
* Thu Jan 19 2012 Matthias Clasen <mclasen@redhat.com> - 3.2.3-3
dfde3b
- Don't build the openldap backend
dfde3b
- Deal gracefully with missing schemas in gsettings-data-convert
dfde3b
dfde3b
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.3-2
dfde3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
dfde3b
dfde3b
* Wed Nov  2 2011 Matthias Clasen <mclasen@redhat.com> - 3.2.3-1
dfde3b
- Update to 3.2.3
dfde3b
dfde3b
* Tue Sep 20 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.92-1
dfde3b
- Update to 3.1.92
dfde3b
dfde3b
* Mon Jul 25 2011 Matthew Barnes <mbarnes@redhat.com> 3.1.4-1
dfde3b
- Update to 3.1.4
dfde3b
dfde3b
* Tue Jul 05 2011 Ray Strode <rstrode@redhat.com> 3.1.3-2
dfde3b
- Add back one of the non-upstream patches, since
dfde3b
  it introduced a non-backward compatible change
dfde3b
  to the file format and it's going to be upstreamed soon
dfde3b
  anyway
dfde3b
  Related GNOME: #653922
dfde3b
dfde3b
* Fri Jul 01 2011 Ray Strode <rstrode@redhat.com> 3.1.3-1
dfde3b
- Update to 3.1.3
dfde3b
- Remove orbit dependency
dfde3b
- drop unupstreamed patches judiciously
dfde3b
dfde3b
* Fri Jun 17 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.32.4-1
dfde3b
- Update to 2.32.4
dfde3b
dfde3b
* Mon Apr 25 2011 Matthias Clasen <mclasen@redhat.com> 2.32.3-1
dfde3b
- Update to 2.32.3
dfde3b
dfde3b
* Mon Apr  4 2011 Matthias Clasen <mclasen@redhat.com> 2.32.2-1
dfde3b
- Update to 2.32.2
dfde3b
dfde3b
* Thu Feb 10 2011 Matthias Clasen <mclasen@redhat.com> 2.32.1-8
dfde3b
- Rebuild against newer gtk3
dfde3b
dfde3b
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.32.1-6
dfde3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
dfde3b
dfde3b
* Wed Feb  2 2011 Matthias Clasen <mclasen@redhat.com> - 2.32.1-5
dfde3b
- Rebuild against newer gtk3
dfde3b
dfde3b
* Sun Jan 16 2011 Matthias Clasen <mclasen@redhat.com> - 2.32.1-4
dfde3b
- Co-own /usr/share/sgml
dfde3b
dfde3b
* Sun Jan  9 2011 Matthias Clasen <mclasen@redhat.com> - 2.32.1-3
dfde3b
- Rebuild against newer gtk3
dfde3b
dfde3b
* Fri Dec  3 2010 Matthias Clasen <mclasen@redhat.com> - 2.32.1-2
dfde3b
- Rebuild against new gtk
dfde3b
dfde3b
* Thu Nov 11 2010 Matthias Clasen <mclasen@redhat.com> - 2.32.1-1
dfde3b
- Update to 2.32.1
dfde3b
dfde3b
* Tue Sep 28 2010 Matthias Clasen <mclasen@redhat.com> - 2.32.0-1
dfde3b
- Update to 2.32.0
dfde3b
dfde3b
* Tue Sep 21 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.91-2
dfde3b
- Rebuild against newer gobject-introspection
dfde3b
dfde3b
* Tue Aug 31 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.91-1
dfde3b
- Update to 2.31.91
dfde3b
dfde3b
* Fri Aug 13 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.7-2
dfde3b
- Strip x permissions from rpm macros file. (#600635)
dfde3b
dfde3b
* Thu Aug  5 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.7-1
dfde3b
- Update to 2.31.7
dfde3b
dfde3b
* Thu Jul 15 2010 Colin Walters <walters@verbum.org> - 2.31.6-2
dfde3b
- Rebuild with new gobject-introspection
dfde3b
dfde3b
* Mon Jul 12 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.6-1
dfde3b
- Update to 2.31.6
dfde3b
dfde3b
* Tue Jun 29 2010 Matthew Garrett <mjg@redhat.com> - 2.31.5-2
dfde3b
- Fix crasher in gsettings-data-convert caused by wrong realloc size
dfde3b
dfde3b
* Tue Jun 29 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.5-1
dfde3b
- Update to 2.31.5
dfde3b
dfde3b
* Mon Jun 21 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.4-1
dfde3b
- Update to 2.31.4
dfde3b
dfde3b
* Thu May 27 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 2.31.3-2
dfde3b
- Rebuild for pkgconfig deps (ref: #596433)
dfde3b
dfde3b
* Tue May 25 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.3-1
dfde3b
- Update to 2.31.3
dfde3b
dfde3b
* Fri May 21 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.2-4
dfde3b
- Install an autostart file for gsettings-data-convert
dfde3b
dfde3b
* Wed May 19 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.2-3
dfde3b
- Rebuild against newer glib
dfde3b
dfde3b
* Sun May 16 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.2-2
dfde3b
- Rebuild against newer glib
dfde3b
dfde3b
* Fri Apr 23 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.2-1
dfde3b
- Update to 2.31.2
dfde3b
dfde3b
* Mon Apr 19 2010 Matthias Clasen <mclasen@redhat.com> - 2.23.1-1
dfde3b
- Update to 2.31.1
dfde3b
- Include introspection data
dfde3b
dfde3b
* Tue Mar 30 2010 Matthias Clasen <mclasen@redhat.com> - 2.28.1-1
dfde3b
- Update to 2.28.1
dfde3b
dfde3b
* Thu Mar 18 2010 Tom "spot" Callaway <tcallawa@redhat.com> 2.28.0-10
dfde3b
- own /var/lib/rpm-state/ too
dfde3b
dfde3b
* Wed Mar 03 2010 Tom "spot" Callaway <tcallawa@redhat.com> 2.28.0-9
dfde3b
- add macros.gconf2
dfde3b
- own /var/lib/rpm-state/gconf
dfde3b
dfde3b
* Mon Feb 01 2010 Colin Walters <walters@verbum.org> 2.28.0-8
dfde3b
- Add defaults patch from f-12 branch 
dfde3b
dfde3b
* Mon Feb 01 2010 Colin Walters <walters@verbum.org> 2.28.0-6
dfde3b
- Do not catch segv etc. let abrt catch them
dfde3b
dfde3b
* Thu Jan 28 2010 Ray Strode <rstrode@redhat.com> 2.28.0-5
dfde3b
- Add defattr directive to gtk subpackage files section
dfde3b
dfde3b
* Tue Jan 19 2010 Matthias Clasen <mclasen@redhat.com> - 2.28.0-4
dfde3b
- Make the defaults mechanism use the right polkit actions
dfde3b
dfde3b
* Mon Dec 14 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.0-3
dfde3b
- Avoid a crash when gconftool-2 can't read the db  (#547238)
dfde3b
dfde3b
* Wed Oct  7 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.0-2
dfde3b
- Fix a problem with schema translations
dfde3b
dfde3b
* Wed Sep 23 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.0-1
dfde3b
- Update to 2.28.0
dfde3b
dfde3b
* Tue Aug 25 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.0-1
dfde3b
- Update to 2.27.0
dfde3b
dfde3b
* Mon Aug 10 2009 Ville Skyttä <ville.skytta at iki.fi> - 2.26.2-6
dfde3b
- Convert specfile to UTF-8.
dfde3b
dfde3b
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.26.2-5
dfde3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
dfde3b
dfde3b
* Sun Jun 14 2009 Matthias Clasen  <mclasen@redhat.com> - 2.26.2-4
dfde3b
- Minor directory ownership cleanup
dfde3b
dfde3b
* Tue Jun  9 2009 Matthias Clasen  <mclasen@redhat.com> - 2.26.2-3
dfde3b
- Improve the port
dfde3b
dfde3b
* Tue Jun  9 2009 Matthias Clasen  <mclasen@redhat.com> - 2.26.2-2
dfde3b
- Port to PolicyKit 1
dfde3b
dfde3b
* Fri May 15 2009 Matthias Clasen  <mclasen@redhat.com> - 2.26.2-1
dfde3b
- Update to 2.26.2
dfde3b
- See http://download.gnome.org/sources/GConf/2.26/GConf-2.26.1.news
dfde3b
- See http://download.gnome.org/sources/GConf/2.26/GConf-2.26.2.news
dfde3b
dfde3b
* Mon Apr 27 2009 Matthias Clasen  <mclasen@redhat.com> - 2.26.0-3
dfde3b
- Support client-side translations
dfde3b
dfde3b
* Mon Apr 13 2009 Adam Jackson <ajax@redhat.com> 2.26.0-2
dfde3b
- Explicit Conflicts: GConf2-dbus (#492636)
dfde3b
dfde3b
* Mon Mar 16 2009 Ray Strode <rstrode@redhat.com> - 2.26.0-1
dfde3b
- update to 2.26.0
dfde3b
dfde3b
* Tue Mar  3 2009 Matthias Clasen  <mclasen@redhat.com> - 2.25.2-2
dfde3b
- Avoid some gratitious extra work in the markup backend
dfde3b
dfde3b
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.25.2-2
dfde3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
dfde3b
dfde3b
* Tue Feb 17 2009 Matthias Clasen  <mclasen@redhat.com> - 2.25.2-1
dfde3b
- Update to 2.25.2
dfde3b
dfde3b
* Sun Feb 15 2009 Matthias Clasen  <mclasen@redhat.com> - 2.25.1-1
dfde3b
- Update to 2.25.1
dfde3b
dfde3b
* Sat Jan 10 2009 Matthias Clasen  <mclasen@redhat.com> - 2.25.0-1
dfde3b
- Update to 2.25.0
dfde3b
dfde3b
* Tue Dec 16 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.0-3
dfde3b
- Rebuild for pkg-config requires
dfde3b
dfde3b
* Fri Nov 21 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.0-2
dfde3b
- Better URL
dfde3b
dfde3b
* Mon Sep 22 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.0-1
dfde3b
- Update to 2.24.0
dfde3b
- Drop obsolete timeout patch
dfde3b
dfde3b
* Fri Aug 22 2008 Matthias Clasen  <mclasen@redhat.com> - 2.23.2-1
dfde3b
- Update to 2.23.2
dfde3b
- Drop upstreamed patches
dfde3b
dfde3b
* Wed Jun  4 2008 Matthias Clasen  <mclasen@redhat.com> - 2.23.1-1
dfde3b
- Upodate to 2.23.1
dfde3b
dfde3b
* Mon Jun  2 2008 Matthias Clasen  <mclasen@redhat.com> - 2.22.0-10
dfde3b
- Make gconfd notice defaults changes
dfde3b
dfde3b
* Wed May 21 2008 Ray Strode <rstrode@redhat.com> - 2.22.0-9
dfde3b
- Don't ever try to autolaunch a bus if DISPLAY is unset
dfde3b
dfde3b
* Wed May 21 2008 Ray Strode <rstrode@redhat.com> - 2.22.0-8
dfde3b
- If the session bus isn't running, assume local client side
dfde3b
  access to the database (bug 446703)
dfde3b
dfde3b
* Wed May 14 2008 Ray Strode <rstrode@redhat.com> - 2.22.0-7
dfde3b
- update add_seconds patch to not remove timeouts that aren't
dfde3b
  created anymore
dfde3b
dfde3b
* Mon May 12 2008 Ray Strode <rstrode@redhat.com> - 2.22.0-6
dfde3b
- If the session bus isn't running, don't autolaunch it unless
dfde3b
  we also want to autostart gconfd.
dfde3b
dfde3b
* Thu May 8 2008 Ray Strode <rstrode@redhat.com> - 2.22.0-5
dfde3b
- Tie gconf to session bus.  This means it will exit when the session
dfde3b
  exits and won't leave /tmp/gconf-$USER DoS possibilities
dfde3b
dfde3b
* Sun May 4 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.0-4
dfde3b
- Apply some patches: 
dfde3b
  - Don't spam syslog
dfde3b
  - Handle unsetting mandatory keys without critical warnings 
dfde3b
dfde3b
* Fri May 2 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.0-3
dfde3b
- Add a dbus service to set defaults
dfde3b
dfde3b
* Fri May 2 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.0-2
dfde3b
- Use g_timeout_add_seconds for long timeouts
dfde3b
dfde3b
* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.0-1
dfde3b
- Update to 2.22.0
dfde3b
dfde3b
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.21.90-2
dfde3b
- Autorebuild for GCC 4.3
dfde3b
dfde3b
* Tue Jan 29 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.90-1
dfde3b
- Update to 2.21.90
dfde3b
dfde3b
* Mon Jan 21 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.2-1
dfde3b
- Update to 2.21.2
dfde3b
dfde3b
* Wed Jan  9 2008 Caolan McNamara <caolanm@redhat.com> - 2.21.1-2
dfde3b
- fix .pc so I can build
dfde3b
dfde3b
* Tue Jan  8 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.1-1
dfde3b
- Update to 2.21.1
dfde3b
- Drop upstreamed patches
dfde3b
dfde3b
* Mon Dec  3 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.1-4
dfde3b
- Rebuild against new openldap
dfde3b
dfde3b
* Fri Nov 16 2007 Ray Strode <rstrode@redhat.com> - 2.20.1-3
dfde3b
- Add the system-wide settings location in post to be more
dfde3b
  upgrade friendly (config file is noreplace)
dfde3b
dfde3b
* Sat Nov 3 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.1-2
dfde3b
- Add a location for system-wide settings
dfde3b
dfde3b
* Mon Oct 15 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.1-1
dfde3b
- 2.20.1 (translation and documentation updates)
dfde3b
dfde3b
* Sat Sep 22 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-2
dfde3b
- Require /usr/bin/killall, since gconftool uses it
dfde3b
dfde3b
* Wed Sep 19 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-1
dfde3b
- Update to 2.20.0
dfde3b
dfde3b
* Tue Sep 11 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.1-5
dfde3b
- Some more leak fixes
dfde3b
dfde3b
* Tue Sep 11 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.1-4
dfde3b
- Fix memory leaks
dfde3b
dfde3b
* Thu Aug 23 2007 Adam Jackson <ajax@redhat.com> - 2.19.1-3
dfde3b
- Rebuild for ppc toolchain bug
dfde3b
dfde3b
* Mon Aug  6 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.1-2
dfde3b
- Update license field
dfde3b
dfde3b
* Mon Jun 25 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.1-1
dfde3b
- Update to 2.19.1
dfde3b
dfde3b
* Sun Mar 25 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.0.1-2
dfde3b
- Fix a directory ownership issue.  (#233756)
dfde3b
dfde3b
* Tue Mar 13 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.0.1-1
dfde3b
- Update to 2.18.0.1
dfde3b
dfde3b
* Tue Feb 27 2007 Matthias Clasen <mclasen@redhat.com> - 2.16.1-1
dfde3b
- Update to 2.16.1
dfde3b
dfde3b
* Mon Feb  5 2007 Matthias Clasen <mclasen@redhat.com> - 2.16.0-6
dfde3b
- Split off a -gtk subpackage to reduce dependencies
dfde3b
dfde3b
* Sat Feb  3 2007 Matthias Clasen <mclasen@redhat.com> - 2.16.0-5
dfde3b
- Minor cleanups from package review
dfde3b
dfde3b
* Mon Jan 22 2007 Matthias Clasen <mclasen@redhat.com> - 2.16.0-4
dfde3b
- Own the /etc/gconf/schemas directory
dfde3b
- Misc cleanups
dfde3b
dfde3b
* Sun Oct 29 2006 Ray Strode <rstrode@redhat.com> - 2.16.0-3
dfde3b
- run autoreconf, so that configure gets updated before 
dfde3b
  it generates libtool (so it doesn't just regenerate
dfde3b
  the original, broken libtool) (again bug 203813)
dfde3b
dfde3b
* Tue Oct 24 2006 Ray Strode <rstrode@redhat.com> - 2.16.0-2
dfde3b
- regenerate packaged libtool from RHEL version of libtool so
dfde3b
  that rpath's don't get added to plugin DSOs (bug 203813).
dfde3b
dfde3b
* Fri Oct 20 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-1
dfde3b
- 2.16.0
dfde3b
- Update reload patch
dfde3b
dfde3b
* Thu Oct 12 2006 Matthias Clasen <mclasen@redhat.com> - 2.14.0-5
dfde3b
- Require a new enough glib2 to fix upgrade issues (#203813)
dfde3b
dfde3b
* Fri Oct  6 2006 Matthias Clasen <mclasen@redhat.com> - 2.14.0-4
dfde3b
- Fix an issue with error reporting (#202549)
dfde3b
- Don't ship static libraries
dfde3b
- Require pkgconfig for the -devel package
dfde3b
dfde3b
* Mon Sep 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.14.0-3
dfde3b
- Make sure that gconfd dies shortly after the session ends
dfde3b
dfde3b
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.14.0-2.1
dfde3b
- rebuild
dfde3b
dfde3b
* Tue Jun  6 2006 Adam Jackson <ajackson@redhat.com> 2.14.0-2
dfde3b
- Rebuild.
dfde3b
dfde3b
* Sun Mar 19 2006 Ray Strode <rstrode@redhat.com> 2.14.0-1
dfde3b
- Update to 2.14.0
dfde3b
dfde3b
* Mon Mar  6 2006 Ray Strode <rstrode@redhat.com> 2.13.5-5
dfde3b
- Only sync the database once when installing multiple
dfde3b
  schema files.  Patch by Josselin Mouette <joss@debian.org>.
dfde3b
  (upstream bug 333353)
dfde3b
dfde3b
* Wed Feb 15 2006 Christopher Aillon <caillon@redhat.com> 2.13.5-4
dfde3b
- Send SIGTERM instead of SIGHUP to gconfd
dfde3b
dfde3b
* Mon Feb 13 2006 Jesse Keating <jkeating@redhat.com> 2.13.5-3.2.1
dfde3b
- rebump for build order issues during double-long bump
dfde3b
dfde3b
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> 2.13.5-3.2
dfde3b
- bump again for double-long bug on ppc(64)
dfde3b
dfde3b
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> 2.13.5-3.1
dfde3b
- rebuilt for new gcc4.1 snapshot and glibc changes
dfde3b
dfde3b
* Thu Feb  2 2006 Christopher Aillon <caillon@redhat.com> 2.13.5-3
dfde3b
- Use the correct patch ;-)
dfde3b
dfde3b
* Wed Feb  1 2006 Christopher Aillon <caillon@redhat.com> 2.13.5-2
dfde3b
- Add patch from Mandriva to reload GConf2 every time a schema is
dfde3b
  added or removed (solves bug 173869)
dfde3b
dfde3b
* Mon Jan 16 2006 Matthias Clasen <mclasen@redhat.com> 2.13.5-1
dfde3b
- Update to 2.13.5
dfde3b
dfde3b
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
dfde3b
- rebuilt
dfde3b
dfde3b
* Wed Dec  7 2005 Dan Williams <dcbw@redhat.com> 2.12.1-2
dfde3b
- Fix segfault in gconf_unescape_key().  GNOME #323479
dfde3b
dfde3b
* Thu Nov  3 2005 Alexander Larsson <alexl@redhat.com> - 2.12.1-1
dfde3b
- Update to 2.12.1
dfde3b
dfde3b
* Thu Sep  8 2005 Matthias Clasen <mclasen@redhat.com> 2.12.0-1
dfde3b
- Update to 2.12.0
dfde3b
dfde3b
* Tue Aug 16 2005 Ray Strode <rstrode@redhat.com> 2.11.90-2
dfde3b
- rebuild
dfde3b
dfde3b
* Wed Aug 03 2005 Ray Strode <rstrode@redhat.com> 2.11.90-1
dfde3b
- Newer upstream version
dfde3b
dfde3b
* Fri Jul 15 2005 Matthias Clasen <mclasen@redhat.com> 2.11.1-1
dfde3b
- Newer upstream version
dfde3b
- Drop upstreamed patch
dfde3b
dfde3b
* Mon May  9 2005 Mark McLoughlin <markmc@redhat.com> 2.10.0-4
dfde3b
- Update to upstream evoldap.schema which uses GNOME's OID base
dfde3b
  rather than Red Hat's OID.
dfde3b
dfde3b
* Wed Apr 27 2005 Mark McLoughlin <markmc@redhat.com> 2.10.0-3
dfde3b
- Fix undefined symbol in the evoldap backend
dfde3b
dfde3b
* Mon Apr 18 2005 Mark McLoughlin <markmc@redhat.com> - 2.10.0-2
dfde3b
- Add evolution mail accounts backend
dfde3b
dfde3b
* Thu Mar 17 2005 Ray Strode <rstrode@redhat.com> 2.10.0-1
dfde3b
- Update to 2.10.0
dfde3b
dfde3b
* Mon Feb  7 2005 Mark McLoughlin <markmc@redhat.com> 2.9.91-1
dfde3b
- Update to 2.9.91
dfde3b
dfde3b
* Fri Jan 28 2005 Matthias Clasen <mclasen@redhat.com> 2.9.2-1
dfde3b
- Update to 2.9.2
dfde3b
dfde3b
* Wed Jan 19 2005 Mark McLoughlin <markmc@redhat.com> 2.8.1-2
dfde3b
- Backport some fixes from upstream CVS
dfde3b
dfde3b
* Tue Oct 12 2004 Mark McLoughlin <markmc@redhat.com> 2.8.1-1
dfde3b
- Update to 2.8.1
dfde3b
dfde3b
* Tue Sep 21 2004 Mark McLoughlin <markmc@redhat.com> 2.8.0.1-1
dfde3b
- Update to 2.8.0.1
dfde3b
dfde3b
* Mon Aug 30 2004 Mark McLoughlin <markmc@redhat.com> 2.7.92-1
dfde3b
- Update to 2.7.92
dfde3b
dfde3b
* Thu Aug 19 2004 Mark McLoughlin <markmc@redhat.com> 2.7.91.1-1
dfde3b
- Update to 2.7.91.1
dfde3b
dfde3b
* Wed Aug 18 2004 Mark McLoughlin <markmc@redhat.com> 2.7.91-1
dfde3b
- Update to 2.7.91
dfde3b
dfde3b
* Tue Aug  3 2004 Mark McLoughlin <markmc@redhat.com> 2.7.90-1
dfde3b
- Update to 2.7.90
dfde3b
- Add patch to disable merge files for now
dfde3b
dfde3b
* Fri Jul  2 2004 Mark McLoughlin <markmc@redhat.com> 2.6.0-7
dfde3b
- Add patch to fix problem when using merged files. Mainly
dfde3b
  neccessary only to work will with GConf 2.8.
dfde3b
dfde3b
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
dfde3b
- rebuilt
dfde3b
dfde3b
* Fri Apr 16 2004 Colin Walters <walters@redhat.com> - 2.6.0-5
dfde3b
- Apply patch to move temporary directory creation into daemon,
dfde3b
  needed for SELinux GConf policy
dfde3b
dfde3b
* Wed Apr 14 2004 Warren Togami <wtogami@redhat.com> - 2.6.0-4
dfde3b
- #110724 BR gtk2-devel gettext
dfde3b
- #106283 add versioned ORBit2 minimum
dfde3b
- #112863 own /etc/gconf/2/
dfde3b
- really kill *.la
dfde3b
dfde3b
* Mon Apr  5 2004 Mark McLoughlin <markmc@redhat.com> - 2.6.0-3
dfde3b
- Remove the dont-dump-schema-default patch
dfde3b
dfde3b
* Thu Apr  1 2004 Mark McLoughlin <markmc@redhat.com> - 2.6.0-2
dfde3b
- Backport some fixes from HEAD for lockdown/deployment type stuff 
dfde3b
dfde3b
* Tue Mar 23 2004 Alex Larsson <alexl@redhat.com> 2.6.0-1
dfde3b
- update to 2.6.0
dfde3b
dfde3b
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
dfde3b
- rebuilt
dfde3b
dfde3b
* Tue Feb 24 2004 Mark McLoughlin <markmc@redhat.com> 2.5.90-1
dfde3b
- Update to 2.5.90
dfde3b
dfde3b
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
dfde3b
- rebuilt
dfde3b
dfde3b
* Fri Jan 16 2004 Jonathan Blandford <jrb@redhat.com> 2.5.1-1
dfde3b
- new version
dfde3b
dfde3b
* Tue Sep  9 2003 Alexander Larsson <alexl@redhat.com> 2.4.0-1
dfde3b
- 2.4.0
dfde3b
dfde3b
* Thu Aug  7 2003 Jonathan Blandford <jrb@redhat.com>
dfde3b
- begin the move to GNOME-2.4
dfde3b
- locking patch appears to be upstream.  Removing.
dfde3b
dfde3b
* Tue Aug  5 2003 Elliot Lee <sopwith@redhat.com> 2.2.1-3
dfde3b
- Fix libtool
dfde3b
dfde3b
* Mon Jul 14 2003 Havoc Pennington <hp@redhat.com>
dfde3b
- automated rebuild
dfde3b
dfde3b
* Mon Jul  7 2003 Havoc Pennington <hp@redhat.com> 2.2.1-1
dfde3b
- upgrade to 2.2.1
dfde3b
dfde3b
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
dfde3b
- rebuilt
dfde3b
dfde3b
* Tue Apr  8 2003 Matt Wilson <msw@redhat.com> 2.2.0-2
dfde3b
- use system libtool (#88338)
dfde3b
dfde3b
* Tue Feb  4 2003 Havoc Pennington <hp@redhat.com> 2.2.0-1
dfde3b
- 2.2.0
dfde3b
dfde3b
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
dfde3b
- rebuilt
dfde3b
dfde3b
* Sun Jan 12 2003 Havoc Pennington <hp@redhat.com>
dfde3b
- 2.1.90
dfde3b
dfde3b
* Fri Jan 10 2003 Havoc Pennington <hp@redhat.com>
dfde3b
- rebuild as libc seems to have changed or something
dfde3b
dfde3b
* Fri Nov  8 2002 Havoc Pennington <hp@redhat.com>
dfde3b
- rebuild
dfde3b
- standardize spec file name
dfde3b
dfde3b
* Fri Aug 30 2002 Havoc Pennington <hp@redhat.com>
dfde3b
- add GCONF_LOCAL_LOCKS mode, and syslog encoding patch from tagoh
dfde3b
dfde3b
* Wed Aug 21 2002 Havoc Pennington <hp@redhat.com>
dfde3b
- add dialog to offer to delete gconf locks
dfde3b
dfde3b
* Tue Aug  6 2002 Havoc Pennington <hp@redhat.com>
dfde3b
- 1.2.1
dfde3b
- include libexecdir stuff
dfde3b
dfde3b
* Wed Jul 31 2002 Havoc Pennington <hp@redhat.com>
dfde3b
- move .pc fle to -devel package
dfde3b
dfde3b
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
dfde3b
- automated rebuild
dfde3b
dfde3b
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
dfde3b
- automated rebuild
dfde3b
dfde3b
* Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
dfde3b
- fix warning on gnome-panel install
dfde3b
dfde3b
* Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
dfde3b
- 1.2.0
dfde3b
- own libdir/GConf/2 directory
dfde3b
- include gtk-doc docs
dfde3b
- don't include static lib for backend modules
dfde3b
dfde3b
* Thu Jun 06 2002 Havoc Pennington <hp@redhat.com>
dfde3b
- rebuild in different environment
dfde3b
dfde3b
* Tue Jun  4 2002 Havoc Pennington <hp@redhat.com>
dfde3b
- 1.1.11
dfde3b
- remove AUTHORS for rpmlint
dfde3b
dfde3b
* Sun May 26 2002 Tim Powers <timp@redhat.com>
dfde3b
- automated rebuild
dfde3b
dfde3b
* Mon May 20 2002 Havoc Pennington <hp@redhat.com>
dfde3b
- rebuild in different environment
dfde3b
dfde3b
* Fri May 17 2002 Havoc Pennington <hp@redhat.com>
dfde3b
- rebuild in different environment
dfde3b
dfde3b
* Thu May  2 2002 Havoc Pennington <hp@redhat.com>
dfde3b
- 1.1.10
dfde3b
dfde3b
* Thu Apr  4 2002 Jeremy Katz <katzj@redhat.com>
dfde3b
- 1.1.9
dfde3b
dfde3b
* Thu Feb 14 2002 Havoc Pennington <hp@redhat.com>
dfde3b
- 1.1.8
dfde3b
- remove .la files
dfde3b
dfde3b
* Wed Jan 30 2002 Owen Taylor <otaylor@redhat.com>
dfde3b
- Version 1.1.6
dfde3b
- Rebuild for dependencies
dfde3b
dfde3b
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
dfde3b
- automated rebuild
dfde3b
dfde3b
* Fri Jan  4 2002 Havoc Pennington <hp@redhat.com>
dfde3b
- 1.1.5.93 snap with important bugfix so gconf actually works
dfde3b
dfde3b
* Thu Jan  3 2002 Havoc Pennington <hp@redhat.com>
dfde3b
- 1.1.5.92 snap with GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
dfde3b
dfde3b
* Thu Jan  3 2002 Havoc Pennington <hp@redhat.com>
dfde3b
- 1.1.5.91 snap with gconf.m4 fix for libgnome
dfde3b
dfde3b
* Wed Jan  2 2002 Havoc Pennington <hp@redhat.com>
dfde3b
- since every other build seems to avoid libglib-1.3.so.11, 
dfde3b
  rebuild and hope
dfde3b
dfde3b
* Wed Jan  2 2002 Havoc Pennington <hp@redhat.com>
dfde3b
- cvs snap 1.1.5.90
dfde3b
dfde3b
* Mon Nov 26 2001 Havoc Pennington <hp@redhat.com>
dfde3b
- GConf 1.1.5, glib 1.3.11
dfde3b
dfde3b
* Sat Oct 27 2001 Havoc Pennington <hp@redhat.com>
dfde3b
- rebuild for glib 1.3.10
dfde3b
dfde3b
* Sun Oct 14 2001 Havoc Pennington <hp@redhat.com>
dfde3b
- 1.1.3
dfde3b
dfde3b
* Fri Oct  5 2001 Havoc Pennington <hp@redhat.com>
dfde3b
- cvs snap, remove bonobo-activation deps
dfde3b
dfde3b
* Fri Sep 21 2001 Havoc Pennington <hp@redhat.com>
dfde3b
- update to new CVS snap, rebuild
dfde3b
dfde3b
* Mon Sep 17 2001 Havoc Pennington <hp@redhat.com>
dfde3b
- create gconf2 rpm based on gconf1, comment out pofiles 
dfde3b
- include .pc files
dfde3b
dfde3b
* Fri Sep 14 2001 Havoc Pennington <hp@redhat.com>
dfde3b
- fix description/summary
dfde3b
dfde3b
* Fri Aug 31 2001 Havoc Pennington <hp@redhat.com>
dfde3b
- Add po files from sources.redhat.com
dfde3b
dfde3b
* Mon Aug 27 2001 Havoc Pennington <hp@redhat.com>
dfde3b
- Add po files from sources.redhat.com
dfde3b
dfde3b
* Wed Aug 15 2001 Havoc Pennington <hp@redhat.com>
dfde3b
- upgrade to 1.0.4 release I just made
dfde3b
- fixes #51223, syslog spew
dfde3b
dfde3b
* Tue Jul 24 2001 Havoc Pennington <hp@redhat.com>
dfde3b
- move gconf-config to devel RPM
dfde3b
dfde3b
* Mon Jul 23 2001 Havoc Pennington <hp@redhat.com>
dfde3b
- how many releases of GConf can I make before it works?
dfde3b
dfde3b
* Sun Jul 22 2001 Havoc Pennington <hp@redhat.com>
dfde3b
- Upgrade to 1.0.2 (which contains only bugfixes that 
dfde3b
  I reviewed and/or wrote myself)
dfde3b
dfde3b
* Wed Jul 18 2001 Havoc Pennington <hp@redhat.com>
dfde3b
- create the /etc/gconf/gconf.xml.defaults directory 
dfde3b
dfde3b
* Fri Jul  6 2001 Alexander Larsson <alexl@redhat.com>
dfde3b
- Install the .la files in the devel package.
dfde3b
dfde3b
* Fri Jul  6 2001 Trond Eivind Glomsrød <teg@redhat.com>
dfde3b
- Use %%{_tmppath}
dfde3b
- Move the .so files to the devel subpackage
dfde3b
- langify
dfde3b
- Move changelog to the end, where it should be :)
dfde3b
- Don't specify (a bad) doc directory
dfde3b
- Don't define name, version and release and use it in the rpm headers later
dfde3b
- Remove "Packager:"
dfde3b
- s/Copyright/License/
dfde3b
dfde3b
* Fri Jun 22 2001 Havoc Pennington <hp@redhat.com>
dfde3b
- add --direct option to gconftool to avoid spawning oafd,
dfde3b
  then commented out gconftool entirely since it checks
dfde3b
  whether gconfd is running and that spawns oafd anyhow.
dfde3b
  oafd simply needs to exit when unused.
dfde3b
dfde3b
* Tue May 15 2001 Havoc Pennington <hp@redhat.com>
dfde3b
- Fix post, pointed out by Bill
dfde3b
dfde3b
* Mon May 14 2001 Havoc Pennington <hp@redhat.com>
dfde3b
- Upgrade to 1.0.1
dfde3b
dfde3b
* Tue Apr 17 2001 Jonathan Blandford <jrb@redhat.com>
dfde3b
- Import to Red Hat build system.
dfde3b
dfde3b
* Sun Jun 11 2000  Eskil Heyn Olsen <deity@eazel.com>
dfde3b
dfde3b
- Created the .spec file