fd368b
%global _changelog_trimtime %(date +%s -d "1 year ago")
fd368b
fd368b
Name: glib2
fd368b
Version: 2.54.2
fd368b
Release: 2%{?dist}
fd368b
Summary: A library of handy utility functions
fd368b
fd368b
License: LGPLv2+
fd368b
URL: http://www.gtk.org
fd368b
Source0: http://download.gnome.org/sources/glib/2.54/glib-%{version}.tar.xz
fd368b
fd368b
BuildRequires: git
fd368b
BuildRequires: pkgconfig
fd368b
BuildRequires: gettext
fd368b
BuildRequires: libattr-devel
fd368b
BuildRequires: libmount-devel
fd368b
BuildRequires: libselinux-devel
fd368b
BuildRequires: pkgconfig(libpcre)
fd368b
# for sys/inotify.h
fd368b
BuildRequires: glibc-devel
fd368b
BuildRequires: zlib-devel
fd368b
# for sys/sdt.h
fd368b
BuildRequires: systemtap-sdt-devel
fd368b
# Bootstrap build requirements
fd368b
BuildRequires: automake autoconf libtool
fd368b
BuildRequires: gtk-doc
fd368b
BuildRequires: python-devel
fd368b
BuildRequires: libffi-devel
fd368b
BuildRequires: elfutils-libelf-devel
fd368b
BuildRequires: chrpath
fd368b
fd368b
# Patches we're carrying specifically for RHEL7:
fd368b
# Avoid deprecating things introduced since the first version of glib
fd368b
# built in RHEL7, as some projects use `-Werror` and such.
fd368b
Patch0: revert-g-source-remove-critical.patch
fd368b
Patch1: add-back-g-memmove.patch
fd368b
fd368b
Patch2: 0001-gdbus-codegen-Don-t-assume-bindir-and-datadir-share-.patch
fd368b
Patch3: 0001-gdbus-codegen-Call-abspath-earlier.patch
fd368b
Patch4: 0001-Build-with-old-libmount-too.patch
fd368b
Patch5: 0001-gio-fix-race-condition-in-GDBusObjectManagerClient.patch
fd368b
fd368b
# for GIO content-type support
fd368b
Requires: shared-mime-info
fd368b
fd368b
%description
fd368b
GLib is the low-level core library that forms the basis for projects
fd368b
such as GTK+ and GNOME. It provides data structure handling for C,
fd368b
portability wrappers, and interfaces for such runtime functionality
fd368b
as an event loop, threads, dynamic loading, and an object system.
fd368b
fd368b
fd368b
%package devel
fd368b
Summary: A library of handy utility functions
fd368b
Requires: %{name}%{?_isa} = %{version}-%{release}
fd368b
fd368b
%description devel
fd368b
The glib2-devel package includes the header files for the GLib library.
fd368b
fd368b
%package doc
fd368b
Summary: A library of handy utility functions
fd368b
Requires: %{name} = %{version}-%{release}
fd368b
BuildArch: noarch
fd368b
fd368b
%description doc
fd368b
The glib2-doc package includes documentation for the GLib library.
fd368b
fd368b
%package fam
fd368b
Summary: FAM monitoring module for GIO
fd368b
Requires: %{name}%{?_isa} = %{version}-%{release}
fd368b
BuildRequires: gamin-devel
fd368b
fd368b
%description fam
fd368b
The glib2-fam package contains the FAM (File Alteration Monitor) module for GIO.
fd368b
fd368b
%package static
fd368b
Summary: glib static
fd368b
Requires: %{name}-devel = %{version}-%{release}
fd368b
fd368b
%description static
fd368b
The %{name}-static subpackage contains static libraries for %{name}.
fd368b
fd368b
%package tests
fd368b
Summary: Tests for the glib2 package
fd368b
Requires: %{name}%{?_isa} = %{version}-%{release}
fd368b
fd368b
%description tests
fd368b
The glib2-tests package contains tests that can be used to verify
fd368b
the functionality of the installed glib2 package.
fd368b
fd368b
%prep
fd368b
%autosetup -Sgit -n glib-%{version}
fd368b
fd368b
autoreconf -i -f
fd368b
fd368b
%build
fd368b
# Support builds of both git snapshots and tarballs packed with autogoo
fd368b
(if ! test -x configure; then NOCONFIGURE=1 ./autogen.sh; CONFIGFLAGS=--enable-gtk-doc; fi;
fd368b
 %configure $CONFIGFLAGS \
fd368b
           --with-pcre=system \
fd368b
           --enable-systemtap \
fd368b
           --enable-static \
fd368b
           --enable-installed-tests
fd368b
)
fd368b
fd368b
make %{?_smp_mflags}
fd368b
fd368b
%install
fd368b
# Use -p to preserve timestamps on .py files to ensure
fd368b
# they're not recompiled with different timestamps
fd368b
# to help multilib: https://bugzilla.redhat.com/show_bug.cgi?id=718404
fd368b
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p -c"
fd368b
# Also since this is a generated .py file, set it to a known timestamp,
fd368b
# otherwise it will vary by build time, and thus break multilib -devel
fd368b
# installs.
fd368b
touch -r gio/gdbus-2.0/codegen/config.py.in $RPM_BUILD_ROOT/%{_datadir}/glib-2.0/codegen/config.py
fd368b
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/*.so
fd368b
fd368b
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
fd368b
rm -f $RPM_BUILD_ROOT%{_libdir}/gio/modules/*.{a,la}
fd368b
rm -f $RPM_BUILD_ROOT%{_datadir}/glib-2.0/gdb/*.{pyc,pyo}
fd368b
rm -f $RPM_BUILD_ROOT%{_datadir}/glib-2.0/codegen/*.{pyc,pyo}
fd368b
fd368b
# Multilib fixes for systemtap tapsets; see
fd368b
# https://bugzilla.redhat.com/718404
fd368b
for f in $RPM_BUILD_ROOT%{_datadir}/systemtap/tapset/*.stp; do
fd368b
    (dn=$(dirname ${f}); bn=$(basename ${f});
fd368b
     mv ${f} ${dn}/%{__isa_bits}-${bn})
fd368b
done
fd368b
fd368b
mv  $RPM_BUILD_ROOT%{_bindir}/gio-querymodules $RPM_BUILD_ROOT%{_bindir}/gio-querymodules-%{__isa_bits}
fd368b
fd368b
touch $RPM_BUILD_ROOT%{_libdir}/gio/modules/giomodule.cache
fd368b
fd368b
# bash-completion scripts need not be executable
fd368b
chmod 644 $RPM_BUILD_ROOT%{_datadir}/bash-completion/completions/*
fd368b
fd368b
%find_lang glib20
fd368b
fd368b
fd368b
%post
fd368b
/sbin/ldconfig
fd368b
gio-querymodules-%{__isa_bits} %{_libdir}/gio/modules
fd368b
fd368b
fd368b
%postun
fd368b
/sbin/ldconfig
fd368b
[ ! -x %{_bindir}/gio-querymodules-%{__isa_bits} ] || \
fd368b
gio-querymodules-%{__isa_bits} %{_libdir}/gio/modules
fd368b
fd368b
fd368b
%files -f glib20.lang
fd368b
%license COPYING
fd368b
%doc AUTHORS NEWS README
fd368b
%{_libdir}/libglib-2.0.so.*
fd368b
%{_libdir}/libgthread-2.0.so.*
fd368b
%{_libdir}/libgmodule-2.0.so.*
fd368b
%{_libdir}/libgobject-2.0.so.*
fd368b
%{_libdir}/libgio-2.0.so.*
fd368b
%dir %{_datadir}/bash-completion
fd368b
%dir %{_datadir}/bash-completion/completions
fd368b
%{_datadir}/bash-completion/completions/gdbus
fd368b
%{_datadir}/bash-completion/completions/gsettings
fd368b
%{_datadir}/bash-completion/completions/gapplication
fd368b
%dir %{_datadir}/glib-2.0
fd368b
%dir %{_datadir}/glib-2.0/schemas
fd368b
%dir %{_libdir}/gio
fd368b
%dir %{_libdir}/gio/modules
fd368b
%ghost %{_libdir}/gio/modules/giomodule.cache
fd368b
%{_bindir}/gio
fd368b
%{_bindir}/gio-querymodules*
fd368b
%{_bindir}/glib-compile-schemas
fd368b
%{_bindir}/gsettings
fd368b
%{_bindir}/gdbus
fd368b
%{_bindir}/gapplication
fd368b
%{_mandir}/man1/gio.1*
fd368b
%{_mandir}/man1/gio-querymodules.1*
fd368b
%{_mandir}/man1/glib-compile-schemas.1*
fd368b
%{_mandir}/man1/gsettings.1*
fd368b
%{_mandir}/man1/gdbus.1*
fd368b
%{_mandir}/man1/gapplication.1*
fd368b
fd368b
%files devel
fd368b
%{_libdir}/lib*.so
fd368b
%{_libdir}/glib-2.0
fd368b
%{_includedir}/*
fd368b
%{_datadir}/aclocal/*
fd368b
%{_libdir}/pkgconfig/*
fd368b
%{_datadir}/glib-2.0/gdb
fd368b
%{_datadir}/glib-2.0/gettext
fd368b
%{_datadir}/glib-2.0/schemas/gschema.dtd
fd368b
%{_datadir}/bash-completion/completions/gresource
fd368b
%{_bindir}/glib-genmarshal
fd368b
%{_bindir}/glib-gettextize
fd368b
%{_bindir}/glib-mkenums
fd368b
%{_bindir}/gobject-query
fd368b
%{_bindir}/gtester
fd368b
%{_bindir}/gdbus-codegen
fd368b
%{_bindir}/glib-compile-resources
fd368b
%{_bindir}/gresource
fd368b
%{_datadir}/glib-2.0/codegen
fd368b
%{_datadir}/glib-2.0/valgrind/glib.supp
fd368b
%attr (0755, root, root) %{_bindir}/gtester-report
fd368b
%{_mandir}/man1/glib-genmarshal.1*
fd368b
%{_mandir}/man1/glib-gettextize.1*
fd368b
%{_mandir}/man1/glib-mkenums.1*
fd368b
%{_mandir}/man1/gobject-query.1*
fd368b
%{_mandir}/man1/gtester-report.1*
fd368b
%{_mandir}/man1/gtester.1*
fd368b
%{_mandir}/man1/gdbus-codegen.1*
fd368b
%{_mandir}/man1/glib-compile-resources.1*
fd368b
%{_mandir}/man1/gresource.1*
fd368b
%{_datadir}/gdb/
fd368b
%{_datadir}/gettext/
fd368b
%{_datadir}/systemtap/
fd368b
fd368b
%files doc
fd368b
%doc %{_datadir}/gtk-doc/html/*
fd368b
fd368b
%files fam
fd368b
%{_libdir}/gio/modules/libgiofam.so
fd368b
fd368b
%files static
fd368b
%{_libdir}/libgio-2.0.a
fd368b
%{_libdir}/libglib-2.0.a
fd368b
%{_libdir}/libgmodule-2.0.a
fd368b
%{_libdir}/libgobject-2.0.a
fd368b
%{_libdir}/libgthread-2.0.a
fd368b
fd368b
%files tests
fd368b
%{_libexecdir}/installed-tests
fd368b
%{_datadir}/installed-tests
fd368b
fd368b
%changelog
fd368b
* Fri Nov 10 2017 Kalev Lember <klember@redhat.com> - 2.54.2-2
fd368b
- Backport patch to fix race condition in GDBusObjectManagerClient
fd368b
- Resolves: #1494065
fd368b
fd368b
* Wed Nov 01 2017 Kalev Lember <klember@redhat.com> - 2.54.2-1
fd368b
- Update to 2.54.2
fd368b
- Related: #1481386
fd368b
fd368b
* Tue Oct 31 2017 Colin Walters <walters@verbum.org> - 2.54.1-3
fd368b
- Backport patch to fix invocations of /bin/gdbus-codegen
fd368b
- Related: #1481386
fd368b
  See also bug 1507661
fd368b
fd368b
* Wed Oct 18 2017 Florian Müllner <fmuellner@redhat.com> - 2.54.1-1
fd368b
- Update to 2.54.1
fd368b
- Related: #1481386
fd368b
fd368b
* Tue Jun 06 2017 Colin Walters <walters@verbum.org> - 2.50.3-3
fd368b
- Add patch to fix use-after-free in GDBus
fd368b
- Resolves: #1437669
fd368b
fd368b
* Thu Mar 16 2017 Colin Walters <walters@verbum.org> - 2.50.3-2
fd368b
- Add patch to remove debug print in fam
fd368b
- Resolves: #1396386
fd368b
fd368b
* Mon Feb 13 2017 Kalev Lember <klember@redhat.com> - 2.50.3-1
fd368b
- Update to 2.50.3
fd368b
- Resolves: #1386874
fd368b
fd368b
* Thu Nov 10 2016 Kalev Lember <klember@redhat.com> - 2.50.2-1
fd368b
- Update to 2.50.2
fd368b
- Resolves: #1386874
fd368b
fd368b
* Wed Sep 14 2016 Kalev Lember <klember@redhat.com> - 2.46.2-4
fd368b
- Backport a patch to fix a segfault in file monitor code
fd368b
- Resolves: #1375753
fd368b
fd368b
* Tue Mar 08 2016 Colin Walters <walters@redhat.com> - 2.46.2-3
fd368b
- Rebase to 2.46.2
fd368b
- Backport two additional notable+applicable patches from upstream
fd368b
  branch
fd368b
- Resolves: #1305515
fd368b
fd368b
* Tue Sep 29 2015 Colin Walters <walters@redhat.com> - 2.42.2-5
fd368b
- Add patch to fix FFI marshaling on BE architectures
fd368b
- Resolves: #1260577
fd368b
fd368b
* Thu Aug 06 2015 Colin Walters <walters@redhat.com> - 2.42.2-4
fd368b
- Add patch to silence gdbus exit-on-disconnect; Resolves #1177076
fd368b
fd368b
* Thu Jul 02 2015 Colin Walters <walters@redhat.com> - 2.42.2-3
fd368b
- rebuilt; Resolves #1238463
fd368b
fd368b
* Thu Mar 19 2015 Richard Hughes <rhughes@redhat.com> - 2.42.2-2
fd368b
- Update to 2.42.2
fd368b
- [walters] Switch to autosetup -Sgit for less painful patch management
fd368b
- [walters] Actually forward port patches
fd368b
- Resolves: #1203755
fd368b
fd368b
* Wed Sep 03 2014 Ray Strode <rstrode@redhat.com> 2.40.0-4
fd368b
- Add back g_memmove define for backward compat
fd368b
  Related: #1104372
fd368b
fd368b
* Wed Sep 03 2014 Ray Strode <rstrode@redhat.com> 2.40.0-3
fd368b
- Revert glib2 critical for better bug-for-bug 2.36.3 backward compatibility
fd368b
  Resolves: #1132624
fd368b
fd368b
* Mon Mar 24 2014 Colin Walters <walters@redhat.com> - 2.40.0-1
fd368b
- Update to 2.40.0
fd368b
- Resolves: #1104372
fd368b
fd368b
* Tue Feb 11 2014 Colin Walters <walters@redhat.com> - 2.36.3-5
fd368b
- Backport patch to fix gnome-shell lockups
fd368b
  Resolves: #1030601
fd368b
- Backport patch to fix vmtoolsd hangs
fd368b
  Resolves: #1063789
fd368b
fd368b
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.36.3-4
fd368b
- Mass rebuild 2014-01-24
fd368b
fd368b
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.36.3-3
fd368b
- Mass rebuild 2013-12-27
fd368b
fd368b
* Thu Jun 20 2013 Colin Walters <walters@redhat.com> - 2.36.3-2
fd368b
- Backport patch from upstream to fix dconf corruption, among
fd368b
  other failures. (#975521)
fd368b
fd368b
* Sun Jun  9 2013 Matthias Clasen <mclasen@redhat.com> - 2.36.3-1
fd368b
- Update to 2.36.3
fd368b
fd368b
* Mon May 13 2013 Richard Hughes <rhughes@redhat.com> - 2.36.2-1
fd368b
- Update to 2.36.2
fd368b
fd368b
* Sat Apr 27 2013 Thorsten Leemhuis <fedora@leemhuis.info> - 2.36.1-2
fd368b
- Fix pidgin freezes by applying patch from master (#956872)
fd368b
fd368b
* Mon Apr 15 2013 Kalev Lember <kalevlember@gmail.com> - 2.36.1-1
fd368b
- Update to 2.36.1
fd368b
fd368b
* Mon Mar 25 2013 Kalev Lember <kalevlember@gmail.com> - 2.36.0-1
fd368b
- Update to 2.36.0
fd368b
fd368b
* Tue Mar 19 2013 Matthias Clasen <mclasen@redhat.com> - 2.35.9-1
fd368b
- Update to 2.35.9
fd368b
fd368b
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 2.35.8-1
fd368b
- Update to 2.35.8
fd368b
fd368b
* Tue Feb 05 2013 Kalev Lember <kalevlember@gmail.com> - 2.35.7-1
fd368b
- Update to 2.35.7
fd368b
fd368b
* Tue Jan 15 2013 Matthias Clasen <mclasen@redhat.com> - 2.35.4-1
fd368b
- Update to 2.35.4
fd368b
fd368b
* Thu Dec 20 2012 Kalev Lember <kalevlember@gmail.com> - 2.35.3-1
fd368b
- Update to 2.35.3
fd368b
fd368b
* Sat Nov 24 2012 Kalev Lember <kalevlember@gmail.com> - 2.35.2-1
fd368b
- Update to 2.35.2
fd368b
fd368b
* Thu Nov 08 2012 Kalev Lember <kalevlember@gmail.com> - 2.35.1-1
fd368b
- Update to 2.35.1
fd368b
- Drop upstreamed codegen-in-datadir.patch
fd368b
fd368b
* Tue Oct 16 2012 Kalev Lember <kalevlember@gmail.com> - 2.34.1-1
fd368b
- Update to 2.34.1
fd368b
fd368b
* Wed Oct 10 2012 Tomas Bzatek <tbzatek@redhat.com> - 2.34.0-4
fd368b
- Re-enable fam, put it in separate subpackage
fd368b
fd368b
* Wed Oct 10 2012 Matthias Clasen <mclasen@redhat.com> - 2.34.0-3
fd368b
- Disable fam. We use the inotify implementation at runtime anyway.
fd368b
  See http://lists.fedoraproject.org/pipermail/devel/2012-October/172438.htm
fd368b
fd368b
* Thu Sep 27 2012 Colin Walters <walters@verbum.org> - 2.34.0-2
fd368b
- Use install -p to preserve timestamps on .py files
fd368b
- Rename systemtap tapsets with architecture-specific prefix
fd368b
- Pull upstream patch to avoid conflict on /usr/bin/gdbus-codegen
fd368b
- Split gtk-doc off into -doc package to avoid multilib conflicts
fd368b
- Resolves: #718404
fd368b
fd368b
* Mon Sep 24 2012 Kalev Lember <kalevlember@gmail.com> - 2.34.0-1
fd368b
- Update to 2.34.0
fd368b
fd368b
* Tue Sep 18 2012 Kalev Lember <kalevlember@gmail.com> - 2.33.14-1
fd368b
- Update to 2.33.14
fd368b
fd368b
* Wed Sep 12 2012 Lennart Poettering <lpoetter@redhat.com> - 2.33.12-2
fd368b
- Drop explicit dependency on eject, as it is included in util-linux now, which is available in the base set
fd368b
fd368b
* Tue Sep 04 2012 Richard Hughes <hughsient@gmail.com> - 2.33.12-1
fd368b
- Update to 2.33.12
fd368b
fd368b
* Tue Aug 21 2012 Richard Hughes <hughsient@gmail.com> - 2.33.10-1
fd368b
- Update to 2.33.10
fd368b
fd368b
* Mon Aug 13 2012 Colin Walters <walters@verbum.org> - 2.33.6-3
fd368b
- Re-add code to strip RPATHs (#840414)
fd368b
fd368b
* Fri Jul 20 2012 Tomas Bzatek <tbzatek@redhat.com> - 2.33.6-2
fd368b
- Add runtime dependency on eject (#748007)
fd368b
fd368b
* Wed Jul 18 2012 Matthias Clasen <mclasen@redhat.com> - 2.33.6-1
fd368b
- Update to 2.33.6
fd368b
fd368b
* Tue Jul 17 2012 Richard Hughes <hughsient@gmail.com> - 2.33.4-1
fd368b
- Update to 2.33.4
fd368b
fd368b
* Tue Jun 26 2012 Matthias Clsaen <mclasen@redhat.com> - 2.33.3-1
fd368b
- Update to 2.33.3
fd368b
fd368b
* Wed Jun 06 2012 Richard Hughes <hughsient@gmail.com> - 2.33.2-1
fd368b
- Update to 2.33.2
fd368b
fd368b
* Sat May 05 2012 Kalev Lember <kalevlember@gmail.com> - 2.33.1-1
fd368b
- Update to 2.33.1
fd368b
fd368b
* Mon Apr 30 2012 Kalev Lember <kalevlember@gmail.com> - 2.32.1-3
fd368b
- Obsolete the removed -static subpackage
fd368b
fd368b
* Mon Apr 30 2012 Colin Walters <walters@verbum.org> - 2.32.1-2
fd368b
- Drop glib2-static subpackage; anaconda hasn't required it since
fd368b
  2007.  See bug 193143.
fd368b
fd368b
* Fri Apr 13 2012 Matthias Clasen <mclasen@redhat.com> 2.32.1-1
fd368b
- Update to 2.32.1
fd368b
fd368b
* Tue Mar 27 2012 Matthias Clasen <mclasen@redhat.com> 2.32.0-1
fd368b
- Update to 2.32.0
fd368b
fd368b
* Tue Mar 20 2012 Kalev Lember <kalevlember@gmail.com> 2.31.22-1
fd368b
- Update to 2.31.22
fd368b
fd368b
* Mon Mar  5 2012 Matthias Clasen <mclasen@redhat.com> 2.31.20-1
fd368b
- Update to 2.31.20
fd368b
fd368b
* Fri Feb 24 2012 Matthias Clasen <mclasen@redhat.com> 2.31.18-1
fd368b
- Update to 2.31.18
fd368b
fd368b
* Tue Feb 21 2012 Richard Hughes <rhughes@redhat.com> 2.31.16-2
fd368b
- Add BR: elfutils-libelf-devel for the GResource functionality
fd368b
fd368b
* Mon Feb  6 2012 Matthias Clasen <mclasen@redhat.com> 2.31.16-1
fd368b
- Update to 2.31.16
fd368b
- Drop --with-runtime-libdir, since we have /lib -> /usr/lib now
fd368b
fd368b
* Fri Jan 20 2012 Matthias Clasen <mclasen@redhat.com> 2.31.12-1
fd368b
- Update to 2.31.12
fd368b
fd368b
* Tue Jan 17 2012 Matthias Clasen <mclasen@redhat.com> 2.31.10-2
fd368b
- Fix a header problem that was causing build failures
fd368b
fd368b
* Mon Jan 16 2012 Matthias Clasen <mclasen@redhat.com> - 2.31.10-1
fd368b
- Update to 2.31.10
fd368b
fd368b
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.31.6-2
fd368b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
fd368b
fd368b
* Mon Dec 19 2011 Matthias Clasen <mclasen@redhat.com> - 2.31.6-1
fd368b
- Update to 2.31.6
fd368b
fd368b
* Wed Nov 23 2011 Matthias Clasen <mclasen@redhat.com> - 2.31.2-2
fd368b
- Fix a GDBus regression leading to segfaults
fd368b
fd368b
* Mon Nov 21 2011 Matthias Clasen <mclasen@redhat.com> - 2.31.2-1
fd368b
- Update to 2.31.2
fd368b
fd368b
* Fri Oct 21 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.31.0-1
fd368b
- Update to 2.31.0
fd368b
fd368b
* Fri Oct 14 2011 Matthias Clasen <mclasen@redhat.com> - 2.30.1-1
fd368b
- Update to 2.30.1
fd368b
fd368b
* Wed Oct 05 2011 Dan Williams <dcbw@redhat.com> - 2.30.0-2
fd368b
- Fix signal marshalling on 64-bit big-endian platforms (rh #736489)
fd368b
fd368b
* Mon Sep 26 2011 Ray <rstrode@redhat.com> - 2.30.0-1
fd368b
- Update to 2.30.0
fd368b
fd368b
* Mon Sep 19 2011 Matthias Clasen <mclasen@redhat.com> - 2.29.92-1
fd368b
- Update to 2.29.92
fd368b
fd368b
* Tue Sep  6 2011 Matthias Clasen <mclasen@redhat.com> - 2.29.90-1
fd368b
- Update to 2.29.90
fd368b
fd368b
* Tue Aug 30 2011 Matthias Clasen <mclasen@redhat.com> - 2.29.18-1
fd368b
- Update to 2.29.18
fd368b
fd368b
* Tue Aug 16 2011 Matthias Clasen <mclasen@redhat.com> - 2.29.16-1
fd368b
- Update to 2.29.16
fd368b
fd368b
* Sat Jul 23 2011 Matthias Clasen <mclasen@redhat.com> - 2.29.14-1
fd368b
- Update to 2.29.14
fd368b
fd368b
* Tue Jul  5 2011 Matthias Clasen <mclasen@redhat.com> - 2.29.10-1
fd368b
- Update to 2.29.10
fd368b
fd368b
* Tue Jun 14 2011 Matthias Clasen <mclasen@redhat.com> - 2.29.8-1
fd368b
- Update to 2.29.8
fd368b
fd368b
* Thu Jun  9 2011 Ville Skyttä <ville.skytta@iki.fi> - 2.29.6-4
fd368b
- Own %%ghost /usr/lib*/gio/modules/giomodule.cache.
fd368b
fd368b
* Mon Jun  6 2011 Matthias Clasen <mclasen@redhat.com> - 2.29.6-3
fd368b
- Fix a deadlock when finalizing e.g. widgets
fd368b
fd368b
* Sun Jun  5 2011 Matthias Clasen <mclasen@redhat.com> - 2.29.6-1
fd368b
- Update to 2.29.6
fd368b
fd368b
* Fri May 27 2011 Colin Walters <walters@verbum.org> - 2.29.4-2
fd368b
- Remove G_BROKEN_FILENAMES; Closes: #708536
fd368b
fd368b
* Fri May  6 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.29.4-1
fd368b
- Update to 2.29.4
fd368b
fd368b
* Thu Apr 14 2011 Matthias Clasen <mclasen@redhat.com> - 2.28.6-2
fd368b
- Include byte-compiled files, it seems to be required (#670861)
fd368b
fd368b
* Thu Apr 14 2011 Matthias Clasen <mclasen@redhat.com> - 2.28.6-1
fd368b
- Update to 2.28.6
fd368b
fd368b
* Fri Apr  1 2011 Matthias Clasen <mclasen@redhat.com> - 2.28.5-1
fd368b
- Update to 2.28.5
fd368b
fd368b
* Tue Mar 29 2011 Matthias Clasen <mclasen@redhat.com> - 2.28.4-2
fd368b
- Fix some introspection annotations
fd368b
fd368b
* Mon Mar 21 2011 Matthias Clasen <mclasen@redhat.com> - 2.28.4-1
fd368b
- Update to 2.28.4
fd368b
fd368b
* Fri Mar 18 2011 Colin Walters <walters@verbum.org> - 2.28.3-2
fd368b
- Rebuild to hopefully pick up new systemtap mark ABI
fd368b
  The current version doesn't seem to be triggering the stock
fd368b
  marks; a local rebuild of the RPM does, so let's do a rebuild
fd368b
  here.
fd368b
fd368b
* Mon Mar 14 2011 Matthias Clasen <mclasen@redhat.com> - 2.28.3-1
fd368b
- Update to 2.28.3
fd368b
fd368b
* Mon Mar  7 2011 Matthias Clasen <mclasen@redhat.com> - 2.28.2-1
fd368b
- Update to 2.28.2
fd368b
fd368b
* Fri Feb 18 2011 Matthias Clasen <mclasen@redhat.com> - 2.28.1-1
fd368b
- Update to 2.28.1
fd368b
- Drop another space-saving hack from the spec
fd368b
fd368b
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.28.0-2
fd368b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
fd368b
fd368b
* Tue Feb  8 2011 Matthias Clasen <mclasen@redhat.com> - 2.28.0-1
fd368b
- Update to 2.28.0
fd368b
fd368b
* Sat Jan 29 2011 Matthias Clasen <mclasen@redhat.com> - 2.27.93-1
fd368b
- Update to 2.27.93
fd368b
fd368b
* Mon Jan 24 2011 Ville Skyttä <ville.skytta@iki.fi> - 2.27.92-2
fd368b
- Don't run gio-querymodules* in %%postun if it no longer exists.
fd368b
fd368b
* Sat Jan 22 2011 Matthias Clasen <mclasen@redhat.com> - 2.27.92-1
fd368b
- Update to 2.27.92
fd368b
- Drop update-gio-modules wrapper
fd368b
fd368b
* Tue Jan 11 2011 Matthias Clasen <mclasen@redhat.com> - 2.27.91-1
fd368b
- Update to 2.27.91
fd368b
fd368b
* Thu Jan  6 2011 Matthias Clasen <mclasen@redhat.com> - 2.27.90-1
fd368b
- Update to 2.27.90
fd368b
fd368b
* Wed Dec  1 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.27.4-1
fd368b
- Update to 2.27.4
fd368b
fd368b
* Thu Nov 11 2010 Matthias Clasen <mclasen@redhat.com> - 2.27.3-1
fd368b
- Update to 2.27.3
fd368b
fd368b
* Mon Nov  1 2010 Matthias Clasen <mclasen@redhat.com> - 2.27.2-1
fd368b
- Update to 2.27.2
fd368b
fd368b
* Wed Sep 29 2010 jkeating - 2.27.0-3
fd368b
- Rebuilt for gcc bug 634757
fd368b
fd368b
* Mon Sep 20 2010 Matthias Clasen <mclasen@redhat.com> - 2.27.0-2
fd368b
- Make /usr/bin/update-gio-modules executable
fd368b
- Make /etc/bash_completion.d/*.sh not executable
fd368b
fd368b
* Mon Sep 20 2010 Matthias Clasen <mclasen@redhat.com> - 2.27.0-1
fd368b
- Update to 2.27.0
fd368b
fd368b
* Tue Aug 31 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.15-1
fd368b
- Update to 2.25.15
fd368b
fd368b
* Wed Aug 18 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.14-2
fd368b
- Fix a PolicyKit problem
fd368b
fd368b
* Tue Aug 17 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.14-1
fd368b
- Update to 2.25.14
fd368b
fd368b
* Mon Aug  9 2010 Colin Walters <walters@verbum.org> - 2.25.13-2
fd368b
- Add patch from mjw to enable systemtap
fd368b
  For background, see: https://bugzilla.gnome.org/show_bug.cgi?id=606044
fd368b
fd368b
* Fri Aug  6 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.13-1
fd368b
- Update to 2.25.13
fd368b
fd368b
* Mon Aug  2 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.12-1
fd368b
- Update to 2.25.12
fd368b
fd368b
* Mon Jul 12 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.11-1
fd368b
- Update to 2.25.11
fd368b
fd368b
* Tue Jun 29 2010 Colin Walters <walters@verbum.org> - 2.25.10-4
fd368b
- Include gsettings bash completion
fd368b
fd368b
* Mon Jun 28 2010 Colin Walters <walters@verbum.org> - 2.25.10-3
fd368b
- Revert rpath change; Fedora's libtool is supposed to not generate
fd368b
  them for system paths.
fd368b
- Add changes to spec file to support being built from snapshot as
fd368b
  well as "make dist"-ball.  This includes BuildRequires and autogen.sh
fd368b
  handling, and gtk-doc enabling if we're bootstrapping.
fd368b
fd368b
* Sun Jun 27 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.10-2
fd368b
- Fix an evince crash
fd368b
fd368b
* Sat Jun 26 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.10-1
fd368b
- Update to 2.25.10
fd368b
fd368b
* Wed Jun 23 2010 Colin Walters <walters@verbum.org> - 2.25.9-3
fd368b
- Only strip rpath at install time, not before build.  Neutering
fd368b
  libtool sabotages gtk-doc, since it needs those rpaths to run
fd368b
  an in-tree binary.
fd368b
fd368b
* Tue Jun 22 2010 Richard Hughes <rhughes@redhat.com> - 2.25.9-2
fd368b
- Backport a patch from git master to avoid a segfault when doing the
fd368b
  schema file check for several GNOME projects.
fd368b
fd368b
* Fri Jun 18 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.9-1
fd368b
- Update to 2.25.9
fd368b
fd368b
* Tue Jun  8 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.8-1
fd368b
- Update to 2.25.8
fd368b
fd368b
* Tue May 25 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.7-2
fd368b
- Require shared-mime-info
fd368b
fd368b
* Mon May 24 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.7-1
fd368b
- Update to 2.25.7
fd368b
fd368b
* Wed May 19 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.6-1
fd368b
- Update to 2.25.6
fd368b
- Simplify gio-querymodules handling
fd368b
fd368b
* Mon May 17 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.5-2
fd368b
- Remove an erroneous removal
fd368b
fd368b
* Fri May 14 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.5-1
fd368b
- Update to 2.25.5
fd368b
fd368b
* Fri Apr 23 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.3-1
fd368b
- Update to 2.25.3
fd368b
- Move schema compiler to the main package, since it is
fd368b
  needed by other rpm's %%post at runtime
fd368b
- Split up man pages to go along with their binaries
fd368b
fd368b
* Mon Apr 19 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.1-2
fd368b
- Add a multilib wrapper for gio-querymodules
fd368b
fd368b
* Mon Apr 19 2010 Matthias Clasen <mclasen@redhat.com> - 2.25.1-1
fd368b
- Update to 2.25.1
fd368b
fd368b
* Sun Mar 28 2010 Matthias Clasen <mclasen@redhat.com> - 2.24.0-1
fd368b
- Update to 2.24.0
fd368b
fd368b
* Mon Mar 22 2010 Matthias Clasen <mclasen@redhat.com> - 2.23.6-1
fd368b
- Update to 2.23.6
fd368b
fd368b
* Wed Mar 10 2010 Matthias Clasen <mclasen@redhat.com> - 2.23.5-2
fd368b
- Fix some rpmlint complaints
fd368b
fd368b
* Tue Mar  9 2010 Matthias Clasen <mclasen@redhat.com> - 2.23.5-1
fd368b
- Update to 2.23.5
fd368b
fd368b
* Sun Feb 21 2010 Matthias Clasen <mclasen@redhat.com> - 2.23.4-1
fd368b
- Update to 2.23.4
fd368b
fd368b
* Thu Feb 11 2010 Matthias Clasen <mclasen@redhat.com> - 2.23.3-1
fd368b
- Update to 2.23.3
fd368b
fd368b
* Mon Jan 25 2010 Matthias Clasen <mclasen@redhat.com> - 2.23.2-3
fd368b
- Actually apply the patch, too
fd368b
fd368b
* Mon Jan 25 2010 Matthias Clasen <mclasen@redhat.com> - 2.23.2-2
fd368b
- Drop the dependency on a GLIBC_PRIVATE symbol
fd368b
fd368b
* Mon Jan 25 2010 Matthias Clasen <mclasen@redhat.com> - 2.23.2-1
fd368b
- Update to 2.23.2
fd368b
fd368b
* Mon Dec 20 2009 Matthias Clasen <mclasen@redhat.com> - 2.23.1-1
fd368b
- Update to 2.23.1
fd368b
fd368b
* Mon Nov 30 2009 Matthias Clasen <mclasen@redhat.com> - 2.23.0-1
fd368b
- Update to 2.23.0
fd368b
fd368b
* Fri Sep 25 2009 Matthias Clasen <mclasen@redhat.com> - 2.22.0-4
fd368b
- Avoid multilib conflicts even harder
fd368b
fd368b
* Thu Sep 24 2009 Matthias Clasen <mclasen@redhat.com> - 2.22.0-3
fd368b
- Avoid multilib conflicts (#525213)
fd368b
fd368b
* Wed Sep 23 2009 Matthias Clasen <mclasen@redhat.com> - 2.22.0-2
fd368b
- Fix location of gdb macros
fd368b
fd368b
* Tue Sep 22 2009 Matthias Clasen <mclasen@redhat.com> - 2.22.0-1
fd368b
- Update to 2.22.0
fd368b
fd368b
* Fri Sep  4 2009 Matthias Clasen <mclasen@redhat.com> - 2.21.6-1
fd368b
- Update to 2.21.6
fd368b
fd368b
* Mon Aug 24 2009 Matthias Clasen <mclasen@redhat.com> - 2.21.5-1
fd368b
- Update to 2.21.5
fd368b
fd368b
* Sun Aug  2 2009 Matthias Clasen <mclasen@redhat.com> - 2.21.4-3
fd368b
- Save some space
fd368b
fd368b
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.21.4-2
fd368b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
fd368b
fd368b
* Fri Jul 17 2009 Matthias Clasen <mclasen@redhat.com> - 2.21.4-1
fd368b
- Update to 2.21.4
fd368b
fd368b
* Mon Jul  6 2009 Matthias Clasen <mclasen@redhat.com> - 2.21.3-2
fd368b
- Use --with-runtime-libdir
fd368b
fd368b
* Mon Jul  6 2009 Matthias Clasen <mclasen@redhat.com> - 2.21.3-1
fd368b
- Update to 2.21.3
fd368b
fd368b
* Mon Jun 15 2009 Matthias Clasen <mclasen@redhat.com> - 2.21.2-1
fd368b
- Update to 2.21.2
fd368b
fd368b
* Fri May 29 2009 Matthias Clasen <mclasen@redhat.com> - 2.21.1-1
fd368b
- Update to 2.21.1
fd368b
fd368b
* Fri May 15 2009 Matthias Clasen <mclasen@redhat.com> - 2.21.0-1
fd368b
- Update to 2.21.0
fd368b
fd368b
* Thu Apr  9 2009 Matthias Clasen <mclasen@redhat.com> - 2.20.1-1
fd368b
- Update to 2.20.1
fd368b
- See http://download.gnome.org/sources/glib/2.20/glib-2.20.1.news
fd368b
fd368b
* Fri Mar 13 2009 Matthias Clasen <mclasen@redhat.com> - 2.20.0-1
fd368b
- Update to 2.20.0
fd368b
fd368b
* Thu Mar 12 2009 Matthias Clasen <mclasen@redhat.com> - 2.19.10-2
fd368b
- Fix integer overflows in the base64 handling functions. CVE-2008-4316
fd368b
fd368b
* Mon Mar  2 2009 Matthias Clasen <mclasen@redhat.com> - 2.19.10-1
fd368b
- Update to 2.19.10
fd368b
fd368b
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.19.8-2
fd368b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
fd368b
fd368b
* Tue Feb 17 2009 Matthias Clasen <mclasen@redhat.com> - 2.19.8-1
fd368b
- Update to 2.19.8
fd368b
- Drop atomic patch, since we are building for i586 now
fd368b
fd368b
* Mon Feb 16 2009 Matthias Clasen <mclasen@redhat.com> - 2.19.7-1
fd368b
- Update to 2.19.7
fd368b
fd368b
* Mon Feb  2 2009 Matthias Clasen <mclasen@redhat.com> - 2.19.6-1
fd368b
- Update to 2.19.6
fd368b
fd368b
* Tue Jan 20 2009 Matthias Clasen <mclasen@redhat.com> - 2.19.5-1
fd368b
- Update to 2.19.5
fd368b
fd368b
* Mon Jan  5 2009 Matthias Clasen <mclasen@redhat.com> - 2.19.4-1
fd368b
- Update to 2.19.4
fd368b
fd368b
* Mon Dec 15 2008 Matthias Clasen <mclasen@redhat.com> - 2.19.3-1
fd368b
- Update to 2.19.3
fd368b
fd368b
* Tue Dec  2 2008 Matthias Clasen <mclasen@redhat.com> - 2.19.2-2
fd368b
- Rebuild
fd368b
fd368b
* Mon Dec  1 2008 Matthias Clasen <mclasen@redhat.com> - 2.19.2-1
fd368b
- Update to 2.19.2
fd368b
fd368b
* Mon Dec  1 2008 Matthias Clasen <mclasen@redhat.com> - 2.19.1-2
fd368b
- Update to 2.19.1
fd368b
fd368b
* Mon Oct 27 2008 Matthias Clasen <mclasen@redhat.com> - 2.18.2-3
fd368b
- Use asm implementation for atomic ops on x86
fd368b
fd368b
* Fri Oct 24 2008 Alexander Larsson <alexl@redhat.com> - 2.18.2-2
fd368b
- Don't return generic fallback icons for files,
fd368b
  as this means custom mimetypes don't work (from svn)
fd368b
fd368b
* Thu Oct 16 2008 Matthias Clasen <mclasen@redhat.com> - 2.18.2-1
fd368b
- Update to 2.18.2
fd368b
fd368b
* Wed Oct  1 2008 David Zeuthen <davidz@redhat.com> - 2.18.1-2
fd368b
- Update the patch to always pass FUSE POSIX URI's
fd368b
fd368b
* Wed Sep 17 2008 Matthias Clasen <mclasen@redhat.com> - 2.18.1-1
fd368b
- Update to 2.18.1
fd368b
fd368b
* Tue Sep  2 2008 Matthias Clasen <mclasen@redhat.com> - 2.18.0-1
fd368b
- Update to 2.18.0
fd368b
fd368b
* Fri Aug 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.17.7-1
fd368b
- Update to 2.17.7
fd368b
fd368b
* Thu Jul 24 2008 David Zeuthen <davidz@redhat.com> - 2.17.4-5
fd368b
- rebuild
fd368b
fd368b
* Thu Jul 24 2008 David Zeuthen <davidz@redhat.com> - 2.17.4-4
fd368b
- autoreconf
fd368b
fd368b
* Thu Jul 24 2008 David Zeuthen <davidz@redhat.com> - 2.17.4-3
fd368b
- Backport patch for g_mount_guess_content_type_sync
fd368b
fd368b
* Mon Jul 21 2008 Matthias Clasen <mclasen@redhat.com> - 2.17.4-2
fd368b
- Fix statfs configure check
fd368b
fd368b
* Mon Jul 21 2008 Matthias Clasen <mclasen@redhat.com> - 2.17.4-1
fd368b
- Update to 2.17.4
fd368b
fd368b
* Thu Jul  3 2008 Matthias Clasen <mclasen@redhat.com> - 2.17.3-3
fd368b
- Fix a stupid crash
fd368b
fd368b
* Wed Jul  2 2008 Matthias Clasen <mclasen@redhat.com> - 2.17.3-1
fd368b
- Update to 2.17.3
fd368b
fd368b
* Mon Jun 16 2008 Matthias Clasen <mclasen@redhat.com> - 2.17.2-2
fd368b
- Fix a directory ownership oversight
fd368b
fd368b
* Thu Jun 12 2008 Matthias Clasen <mclasen@redhat.com> - 2.17.2-1
fd368b
- Update to 2.17.2
fd368b
fd368b
* Tue May 27 2008 Matthias Clasen <mclasen@redhat.com> - 2.17.0-1
fd368b
- Update to 2.17.0
fd368b
fd368b
* Thu Apr 24 2008 Tomas Bzatek <tbzatek@redhat.com> - 2.16.3-5
fd368b
- Add support for GIO to set selinux attributes (gnome #529694)
fd368b
fd368b
* Thu Apr 17 2008 David Zeuthen <davidz@redhat.com> - 2.16.3-4
fd368b
- Only pass URI's for gio apps (#442835)
fd368b
fd368b
* Sun Apr 13 2008 Dan Williams <dcbw@redhat.com> - 2.16.3-3
fd368b
- Revert upstream changes to g_static_mutex_get_mutex_impl_shortcut that broke
fd368b
    users of GMutex and GStaticMutex (bgo#316221)
fd368b
fd368b
* Wed Apr  9 2008 Matthias Clasen <mclasen@redhat.com> - 2.16.3-2
fd368b
- Fix a possible crash in application launching (bgo#527132)
fd368b
fd368b
* Tue Apr  8 2008 Matthias Clasen <mclasen@redhat.com> - 2.16.3-1
fd368b
- Update to 2.16.3
fd368b
fd368b
* Thu Apr  3 2008 Matthias Clasen <mclasen@redhat.com> - 2.16.2-2
fd368b
- Fix occasional misbehaviour of g_timeout_add_seconds
fd368b
fd368b
* Tue Apr  1 2008 Matthias Clasen <mclasen@redhat.com> - 2.16.2-1
fd368b
- Update to 2.16.2
fd368b
fd368b
* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> - 2.16.1-1
fd368b
- Update to 2.16.1
fd368b
fd368b
* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> - 2.16.0-1
fd368b
- Update to 2.16.0
fd368b
fd368b
* Mon Mar  3 2008 Matthias Clasen <mclasen@redhat.com> - 2.15.6-2
fd368b
- Fix inline support
fd368b
fd368b
* Mon Feb 25 2008 Matthias Clasen <mclasen@redhat.com> - 2.15.6-1
fd368b
- Update to 2.15.6
fd368b
fd368b
* Mon Feb 11 2008 Matthias Clasen <mclasen@redhat.com> - 2.15.5-1
fd368b
- Update to 2.15.5
fd368b
fd368b
* Thu Feb  7 2008 Matthias Clasen <mclasen@redhat.com> - 2.15.4-2
fd368b
- Update PCRE to 7.6
fd368b
fd368b
* Mon Jan 28 2008 Matthias Clasen <mclasen@redhat.com> - 2.15.4-1
fd368b
- Update to 2.15.4
fd368b
fd368b
* Mon Jan 21 2008 Matthias Clasen <mclasen@redhat.com> - 2.15.3-1
fd368b
- Update to 2.15.3
fd368b
fd368b
* Mon Jan 14 2008 Matthias Clasen <mclasen@redhat.com> - 2.15.2-1
fd368b
- Update to 2.15.2
fd368b
fd368b
* Tue Jan  8 2008 Matthias Clasen <mclasen@redhat.com> - 2.15.1-1
fd368b
- 2.15.1
fd368b
- add new BuildRequires
fd368b
fd368b
* Sat Dec 22 2007 Matthias Clasen <mclasen@redhat.com> - 2.15.0-4
fd368b
- Another attempt
fd368b
fd368b
* Sat Dec 22 2007 Matthias Clasen <mclasen@redhat.com> - 2.15.0-3
fd368b
- Fix some errors in desktop files handling
fd368b
fd368b
* Fri Dec 21 2007 Caolan McNamara <caolanm@redhat.com> - 2.15.0-2
fd368b
- add jakubs patch in so xulrunner will build and so gcc too
fd368b
fd368b
* Thu Dec 20 2007 Matthias Clasen <mclasen@redhat.com> - 2.15.0-1
fd368b
- Update to 2.15.0
fd368b
fd368b
* Sat Nov 24 2007 Matthias Clasen <mclasen@redhat.com> - 2.14.4-1
fd368b
- Update to 2.14.4
fd368b
fd368b
* Wed Nov  7 2007 Matthias Clasen <mclasen@redhat.com> - 2.14.3-1
fd368b
- Update to 2.14.3, including a new version of PCRE that
fd368b
  fixes several vulnerabilities
fd368b
fd368b
* Tue Oct 16 2007 Matthias Clasen <mclasen@redhat.com> - 2.14.2-1
fd368b
- Update to 2.14.2 (bug fixes)
fd368b
fd368b
* Sun Sep 16 2007 Matthias Clasen <mclasen@redhat.com> - 2.14.1-1
fd368b
- Update to 2.14.1
fd368b
fd368b
* Sat Aug  4 2007 Matthias Clasen <mclasen@redhat.com> - 2.14.0-1
fd368b
- Update to 2.14.0
fd368b
fd368b
* Thu Aug  2 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.7-3
fd368b
- Update License field
fd368b
- Don't ship ChangeLog
fd368b
fd368b
* Thu Jul 12 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.7-2
fd368b
- Fix build issues on ppc
fd368b
fd368b
* Thu Jul 12 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.7-1
fd368b
- Update to 2.13.7
fd368b
fd368b
* Fri Jun 29 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.6-1
fd368b
- Update to 2.13.6
fd368b
- Drop an ancient Conflict
fd368b
fd368b
* Mon Jun 18 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.5-1
fd368b
- Update to 2.13.5
fd368b
fd368b
* Wed Jun  6 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.4-1
fd368b
- Update to 2.13.4
fd368b
fd368b
* Mon Jun  4 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.3-1
fd368b
- Update to 2.13.3
fd368b
fd368b
* Wed May 23 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.2-1
fd368b
- Update to 2.13.2
fd368b
fd368b
* Sat May 19 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.1-1
fd368b
- Update to 2.13.1
fd368b
fd368b
* Fri Mar  9 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.11-1
fd368b
- Update to 2.12.11
fd368b
fd368b
* Wed Mar  7 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.10-1
fd368b
- Update to 2.12.10
fd368b
fd368b
* Fri Feb  9 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.9-4
fd368b
- More package review demands:
fd368b
 * keep all -devel content in /usr/lib
fd368b
fd368b
* Sun Feb  4 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.9-3
fd368b
- More package review feedback:
fd368b
 * install /etc/profile.d snipplets as 644
fd368b
 * explain Conflict with libgnomeui
fd368b
 * remove stale Conflict with glib-devel
fd368b
fd368b
* Sat Feb  3 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.9-2
fd368b
- Incorporate package review feedback:
fd368b
 * drop an obsolete Provides:
fd368b
 * add a -static subpackage
fd368b
 * explain %%check ppc exception
fd368b
 * align summaries
fd368b
fd368b
* Tue Jan 16 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.9-1
fd368b
- Update to 2.12.9
fd368b
fd368b
* Mon Jan 15 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.8-1
fd368b
- Update to 2.12.8
fd368b
fd368b
* Thu Jan  4 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.7-1
fd368b
- Update to 2.12.7
fd368b
- Fix bit-test on x86-64
fd368b
fd368b
* Wed Dec 20 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.6-1
fd368b
- Update to 2.12.6
fd368b
fd368b
* Mon Dec 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.5-2
fd368b
- Fix the configure check for broken poll
fd368b
fd368b
* Mon Dec 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.5-1
fd368b
- Update to 2.12.5
fd368b
fd368b
* Sun Oct 22 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.4-1
fd368b
- Update to 2.12.4
fd368b
fd368b
* Wed Aug 30 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.3-1.fc6
fd368b
- Update to 2.12.3
fd368b
- Drop upstreamed patch
fd368b
fd368b
* Sun Aug 27 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.2-2.fc6
fd368b
- Use Posix monotonic timers for GTimer
fd368b
fd368b
* Tue Aug 15 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.2-1.fc6
fd368b
- Update to 2.12.2
fd368b
fd368b
* Sat Jul 22 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.1-1
fd368b
- Update to 2.12.1
fd368b
fd368b
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.12.0-1.1
fd368b
- rebuild
fd368b
fd368b
* Sun Jul  2 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.0-1
fd368b
- Update to 2.12.0
fd368b
fd368b
* Tue Jun 20 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.4-1
fd368b
- Update to 2.11.4
fd368b
fd368b
* Mon Jun 12 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.3-1
fd368b
- Update to 2.11.3
fd368b
fd368b
* Mon Jun  5 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.2-1
fd368b
- Update to 2.11.2
fd368b
fd368b
* Thu Jun  1 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.1-6
fd368b
- Rebuild
fd368b
fd368b
* Thu May 25 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.1-5
fd368b
- Fix some fallout
fd368b
fd368b
* Thu May 25 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.1-4
fd368b
- Include static libraries, since anaconda needs them (#193143)
fd368b
fd368b
* Thu May 25 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.1-3
fd368b
- Keep glibconfig.h in /usr/lib
fd368b
fd368b
* Mon May 22 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.1-2
fd368b
- Move glib to /lib
fd368b
fd368b
* Mon May 15 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.1-1
fd368b
- Update to 2.11.1
fd368b
fd368b
* Tue May 2 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.0-1
fd368b
- Update to 2.11.0
fd368b
fd368b
* Fri Apr 7 2006 Matthias Clasen <mclasen@redhat.com> - 2.10.2-2
fd368b
- Update to 2.10.2
fd368b
fd368b
* Tue Mar 7 2006 Matthias Clasen <mclasen@redhat.com> - 2.10.1-1
fd368b
- Update to 2.10.1
fd368b
fd368b
* Fri Feb 24 2006 Matthias Clasen <mclasen@redhat.com> - 2.10.0-1
fd368b
- Update to 2.10.0
fd368b
fd368b
* Sat Feb 12 2006 Matthias Clasen <mclasen@redhat.com> - 2.9.6-1
fd368b
- Update to 2.9.6
fd368b
fd368b
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.9.5-1.2
fd368b
- bump again for double-long bug on ppc(64)
fd368b
fd368b
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.9.5-1.1
fd368b
- rebuilt for new gcc4.1 snapshot and glibc changes
fd368b
fd368b
* Fri Jan 27 2006 Matthias Clasen <mclasen@redhat.com> - 2.9.5-1
fd368b
- Update to 2.9.5
fd368b
fd368b
* Wed Jan 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.9.4-1
fd368b
- Update to 2.9.4
fd368b
fd368b
* Mon Jan 16 2006 Matthias Clasen <mclasen@redhat.com> - 2.9.3-1
fd368b
- Update to 2.9.3
fd368b
fd368b
* Fri Jan  6 2006 Matthias Clasen <mclasen@redhat.com> - 2.9.2-2
fd368b
- Update to 2.9.2
fd368b
fd368b
* Sun Dec 11 2005 Matthias Clasen <mclasen@redhat.com>
fd368b
- Specfile cosmetics
fd368b
fd368b
* Sat Dec 10 2005 Matthias Clasen <mclasen@redhat.com> - 2.9.1-1
fd368b
- New upstream version
fd368b
fd368b
* Wed Nov 30 2005 Matthias Clasen <mclasen@redhat.com> - 2.9.0-1
fd368b
- New upstream version
fd368b
fd368b
* Tue Nov 15 2005 Matthias Clasen <mclasen@redhat.com> - 2.8.4-1
fd368b
- New upstream version
fd368b
fd368b
* Mon Oct  3 2005 Matthias Clasen <mclasen@redhat.com> - 2.8.3-1
fd368b
- New upstream version
fd368b
fd368b
* Mon Sep 26 2005 Matthias Clasen <mclasen@redhat.com> - 2.8.2-1
fd368b
- New upstream version
fd368b
fd368b
* Sat Aug 23 2005 Matthias Clasen <mclasen@redhat.com> - 2.8.1-1
fd368b
- New upstream version
fd368b
- Drop patches
fd368b
fd368b
* Sat Aug 13 2005 Matthias Clasen <mclasen@redhat.com> - 2.8.0-1
fd368b
- New stable upstream version
fd368b
- Drop patches
fd368b
fd368b
* Fri Aug  5 2005 Matthias Clasen <mclasen@redhat.com> - 2.7.6-3
fd368b
- Fix C++ guards in gstdio.h
fd368b
fd368b
* Thu Aug  4 2005 Matthias Clasen <mclasen@redhat.com> - 2.7.6-2
fd368b
- Another attempt to fix atomic ops on s390
fd368b
fd368b
* Tue Aug  3 2005 Matthias Clasen <mclasen@redhat.com> - 2.7.6-1
fd368b
- Update to 2.7.6
fd368b
fd368b
* Tue Aug  2 2005 Matthias Clasen <mclasen@redhat.com> - 2.7.5-1
fd368b
- Update to 2.7.5
fd368b
fd368b
* Fri Jul 22 2005 Matthias Clasen <mclasen@redhat.com> - 2.7.4-1
fd368b
- Update to 2.7.4
fd368b
fd368b
* Fri Jul 15 2005 Matthias Clasen <mclasen@redhat.com> - 2.7.3-1
fd368b
- Update to 2.7.3
fd368b
fd368b
* Fri Jul  8 2005 Matthias Clasen <mclasen@redhat.com> - 2.7.2-1
fd368b
- Update to 2.7.2
fd368b
fd368b
* Fri Jul  1 2005 Matthias Clasen <mclasen@redhat.com> - 2.7.1-1
fd368b
- Update to 2.7.1
fd368b
fd368b
* Mon Jun 13 2005 Matthias Clasen <mclasen@redhat.com> - 2.7.0-1
fd368b
- Update to 2.7.0
fd368b
fd368b
* Wed Apr  6 2005 Matthias Clasen <mclasen@redhat.com> - 2.6.4-1
fd368b
- Update to 2.6.4
fd368b
- Drop upstreamed patches
fd368b
fd368b
* Fri Mar 11 2005 Matthias Clasen <mclasen@redhat.com> - 2.6.3-4
fd368b
- Fix #150817
fd368b
fd368b
* Wed Mar  4 2005 Matthias Clasen <mclasen@redhat.com> - 2.6.3-3
fd368b
- Rebuild
fd368b
fd368b
* Wed Mar  2 2005 Matthias Clasen <mclasen@redhat.com> - 2.6.3-2
fd368b
- Rebuild with gcc4
fd368b
fd368b
* Mon Feb 28 2005 Matthias Clasen <mclasen@redhat.com> - 2.6.3-1
fd368b
- Upgrade to 2.6.3
fd368b
fd368b
* Fri Feb  4 2005 Matthias Clasen <mclasen@redhat.com> - 2.6.2-1
fd368b
- Upgrade to 2.6.2
fd368b
fd368b
* Mon Jan 10 2005 Matthias Clasen <mclasen@redhat.com> - 2.6.1-1
fd368b
- Upgrade to 2.6.1
fd368b
fd368b
* Mon Dec 21 2004 Matthias Clasen <mclasen@redhat.com> - 2.6.0-1
fd368b
- Upgrade to 2.6.0
fd368b
fd368b
* Mon Dec 06 2004 Matthias Clasen <mclasen@redhat.com> - 2.4.8-1
fd368b
- Upgrade to 2.4.8
fd368b
fd368b
* Wed Oct 13 2004 Matthias Clasen <mclasen@redhat.com> - 2.4.7-1
fd368b
- Upgrade to 2.4.7
fd368b
fd368b
* Fri Aug 13 2004 Matthias Clasen <mclasen@redhat.com> - 2.4.6-1
fd368b
- Update to 2.4.6
fd368b
fd368b
* Sun Aug 1 2004 ALan Cox <alan@redhat.com> - 2.4.5-2
fd368b
- Fixed BuildRoot to use % macro not hardcode /var/tmp
fd368b
fd368b
* Fri Jul 30 2004 Matthias Clasen <mclasen@redhat.com> - 2.4.5-1
fd368b
- Update to 2.4.5
fd368b
- Escape macros in changelog section
fd368b
fd368b
* Fri Jul 09 2004 Matthias Clasen <mclasen@redhat.com> - 2.4.4-1
fd368b
- Update to 2.4.4
fd368b
fd368b
* Mon Jun 21 2004 Matthias Clasen <mclasen@redhat.com> - 2.4.2-1
fd368b
- Require gettext at build time  (#125320)
fd368b
- Update to 2.4.2 (#125736)
fd368b
fd368b
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
fd368b
- rebuilt
fd368b
fd368b
* Wed May 19 2004 Matthias Clasen <mclasen@redhat.com> 2.4.1-1
fd368b
- Update to 2.4.1
fd368b
fd368b
* Tue Mar 16 2004 Owen Taylor <otaylor@redhat.com> 2.4.0-1
fd368b
- Update to 2.4.0
fd368b
fd368b
* Wed Mar 10 2004 Mark McLoughlin <markmc@redhat.com> 2.3.6-1
fd368b
- Update to 2.3.6
fd368b
- Remove gatomic build fix
fd368b
fd368b
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
fd368b
- rebuilt
fd368b
fd368b
* Tue Mar 02 2004 Mark McLoughlin <markmc@redhat.com> 2.3.5-1
fd368b
- Update to 2.3.5
fd368b
- Fix build on ppc64
fd368b
- Disable make check on s390 as well - test-thread failing
fd368b
fd368b
* Wed Feb 25 2004 Mark McLoughlin <markmc@redhat.com> 2.3.3-1
fd368b
- Update to 2.3.3
fd368b
fd368b
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
fd368b
- rebuilt
fd368b
fd368b
* Fri Jan 23 2004 Jonathan Blandford <jrb@redhat.com> 2.3.2-1
fd368b
- new version
fd368b
- remove 'make check' temporarily
fd368b
fd368b
* Mon Sep  8 2003 Owen Taylor <otaylor@redhat.com> 2.2.3-2.0
fd368b
- Conflict with libgnomeui <= 2.2.0 (#83581, Göran Uddeborg)
fd368b
fd368b
* Tue Aug 26 2003 Owen Taylor <otaylor@redhat.com> 2.2.3-1.1
fd368b
- Version 2.2.3
fd368b
fd368b
* Tue Jul  8 2003 Owen Taylor <otaylor@redhat.com> 2.2.2-2.0
fd368b
- Bump for rebuild
fd368b
fd368b
* Sun Jun  8 2003 Owen Taylor <otaylor@redhat.com>
fd368b
- Version 2.2.2
fd368b
fd368b
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
fd368b
- rebuilt
fd368b
fd368b
* Tue Jun  3 2003 Jeff Johnson <jbj@redhat.com>
fd368b
- add explicit epoch's where needed.
fd368b
fd368b
* Sun Feb  2 2003 Owen Taylor <otaylor@redhat.com>
fd368b
- Version 2.2.1
fd368b
fd368b
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
fd368b
- rebuilt
fd368b
fd368b
* Thu Jan  9 2003 Owen Taylor <otaylor@redhat.com>
fd368b
- Add static libraries to build (#78685, Bernd Kischnick)
fd368b
- Bump-and-rebuild for new redhat-rpm-config
fd368b
fd368b
* Fri Dec 20 2002 Owen Taylor <otaylor@redhat.com>
fd368b
- Version 2.2.0
fd368b
- Add make check to the build process
fd368b
fd368b
* Mon Dec 16 2002 Owen Taylor <otaylor@redhat.com>
fd368b
- Version 2.1.5
fd368b
fd368b
* Wed Dec 11 2002 Owen Taylor <otaylor@redhat.com>
fd368b
- Version 2.1.4
fd368b
fd368b
* Mon Dec  2 2002 Owen Taylor <otaylor@redhat.com>
fd368b
- Version 2.1.3
fd368b
fd368b
* Mon Oct 07 2002 Havoc Pennington <hp@redhat.com>
fd368b
- Try rebuilding with new arches
fd368b
fd368b
* Tue Aug 13 2002 Havoc Pennington <hp@redhat.com>
fd368b
- install glib2.sh and glib2.csh to set G_BROKEN_FILENAMES
fd368b
- blow away unpackaged files in install
fd368b
fd368b
* Thu Aug  8 2002 Owen Taylor <otaylor@redhat.com>
fd368b
- Version 2.0.6
fd368b
- Remove fixed-ltmain.sh; shouldn't be needed any more.
fd368b
fd368b
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
fd368b
- automated rebuild
fd368b
fd368b
* Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
fd368b
- 2.0.4
fd368b
fd368b
* Thu May 23 2002 Tim Powers <timp@redhat.com>
fd368b
- automated rebuild
fd368b
fd368b
* Wed Apr 24 2002 Havoc Pennington <hp@redhat.com>
fd368b
 - rebuild in different environment
fd368b
fd368b
* Mon Apr 15 2002 Owen Taylor <otaylor@redhat.com>
fd368b
- Fix missing .po files (#63336)
fd368b
fd368b
* Wed Apr  3 2002 Alex Larsson <alexl@redhat.com>
fd368b
- Update to version 2.0.1
fd368b
fd368b
* Fri Mar  8 2002 Owen Taylor <otaylor@redhat.com>
fd368b
- Version 2.0.0
fd368b
fd368b
* Mon Feb 25 2002 Alex Larsson <alexl@redhat.com>
fd368b
- Update to 1.3.15
fd368b
fd368b
* Thu Feb 21 2002 Alex Larsson <alexl@redhat.com>
fd368b
- Bump for rebuild
fd368b
fd368b
* Mon Feb 18 2002 Alex Larsson <alexl@redhat.com>
fd368b
- Update to 1.3.14
fd368b
fd368b
* Fri Feb 15 2002 Havoc Pennington <hp@redhat.com>
fd368b
- add horrible buildrequires hack
fd368b
fd368b
* Thu Feb 14 2002 Havoc Pennington <hp@redhat.com>
fd368b
- 1.3.13.91 cvs snap
fd368b
fd368b
* Mon Feb 11 2002 Matt Wilson <msw@redhat.com>
fd368b
- rebuild from CVS snapshot
fd368b
- use setup -q
fd368b
fd368b
* Thu Jan 31 2002 Jeremy Katz <katzj@redhat.com>
fd368b
- rebuild
fd368b
fd368b
* Tue Jan 29 2002 Owen Taylor <otaylor@redhat.com>
fd368b
- 1.3.13
fd368b
fd368b
* Tue Jan 22 2002 Havoc Pennington <hp@redhat.com>
fd368b
- attempting rebuild in rawhide
fd368b
fd368b
* Wed Jan  2 2002 Havoc Pennington <hp@redhat.com>
fd368b
- remove 64-bit patch now upstream, 1.3.12.90
fd368b
fd368b
* Mon Nov 26 2001 Havoc Pennington <hp@redhat.com>
fd368b
- add some missing files to file list, langify
fd368b
fd368b
* Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
fd368b
- add temporary patch to fix GTypeFundamentals on 64-bit
fd368b
fd368b
* Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
fd368b
- Version 1.3.11
fd368b
fd368b
* Thu Oct 25 2001 Owen Taylor <otaylor@redhat.com>
fd368b
- Version 1.3.10
fd368b
fd368b
* Tue Sep 25 2001 Owen Taylor <otaylor@redhat.com>
fd368b
- Version 1.3.9
fd368b
fd368b
* Wed Sep 19 2001 Owen Taylor <otaylor@redhat.com>
fd368b
- Version 1.3.8
fd368b
fd368b
* Fri Jul 20 2001 Owen Taylor <otaylor@redhat.com>
fd368b
- Make -devel package require main package (#45388)
fd368b
- Fix description and summary
fd368b
- Configure with --disable-gtk-doc
fd368b
fd368b
* Wed Jun 20 2001 Florian La Roche <Florian.LaRoche@redhat.de>
fd368b
- add some portability fixes needed at least on s390
fd368b
- copy config.{guess,sub} instead of calling libtoolize
fd368b
fd368b
* Wed Jun 13 2001 Havoc Pennington <hp@redhat.com>
fd368b
- try a new glib tarball with Makefile changes to work around
fd368b
  libtool linking to installed .la files
fd368b
- make -devel require pkgconfig
fd368b
fd368b
* Tue Jun 12 2001 Havoc Pennington <hp@redhat.com>
fd368b
- either libtool or the bad libtool hacks caused link
fd368b
  against glib-gobject 1.3.2, rebuild
fd368b
fd368b
* Tue Jun 12 2001 Havoc Pennington <hp@redhat.com>
fd368b
- 1.3.6
fd368b
- bad libtool workarounds
fd368b
fd368b
* Fri May 04 2001 Owen Taylor <otaylor@redhat.com>
fd368b
- 1.3.5, rename to glib2
fd368b
fd368b
* Fri Nov 17 2000 Owen Taylor <otaylor@redhat.com>
fd368b
- Final 1.3.2
fd368b
fd368b
* Mon Nov 13 2000 Owen Taylor <otaylor@redhat.com>
fd368b
- Version 1.3.2pre1
fd368b
- Remove pkgconfig
fd368b
fd368b
* Sun Aug 13 2000 Owen Taylor <otaylor@redhat.com>
fd368b
- Call 1.3.1b instead of snap... the snap* naming doesn't
fd368b
  order correctly.
fd368b
fd368b
* Thu Aug 10 2000 Havoc Pennington <hp@redhat.com>
fd368b
- new snapshot with fixed .pc files
fd368b
fd368b
* Thu Aug 10 2000 Havoc Pennington <hp@redhat.com>
fd368b
- include .pc files in file list
fd368b
fd368b
* Thu Aug 10 2000 Havoc Pennington <hp@redhat.com>
fd368b
- Include pkg-config
fd368b
- Upgrade to a glib CVS snapshot
fd368b
fd368b
* Wed Jul 19 2000 Jakub Jelinek <jakub@redhat.com>
fd368b
- rebuild to cope with glibc locale binary incompatibility
fd368b
fd368b
* Fri Jul 14 2000 Owen Taylor <otaylor@redhat.com>
fd368b
- Remove glib-config.1 manpage from build since
fd368b
  it conflicts with glib-devel. When we go to
fd368b
  glib glib1.2 setup, we should add it back
fd368b
fd368b
* Fri Jul 07 2000 Owen Taylor <otaylor@redhat.com>
fd368b
- Version 1.3.1
fd368b
- Move back to standard %%{prefix}
fd368b
fd368b
* Thu Jun 8 2000 Owen Taylor <otaylor@redhat.com>
fd368b
- Rebuild in /opt/gtk-beta
fd368b
fd368b
* Tue May 30 2000 Owen Taylor <otaylor@redhat.com>
fd368b
- New version (adds gobject)
fd368b
fd368b
* Wed Apr 25 2000 Owen Taylor <otaylor@redhat.com>
fd368b
- Don't blow away /etc/ld.so.conf (sorry!)
fd368b
fd368b
* Tue Apr 24 2000 Owen Taylor <otaylor@redhat.com>
fd368b
- Snapshot RPM for Pango testing
fd368b
fd368b
* Fri Feb 04 2000 Owen Taylor <otaylor@redhat.com>
fd368b
- Added fixes from stable branch of CVS
fd368b
fd368b
* Thu Oct 7  1999 Owen Taylor <otaylor@redhat.com>
fd368b
- version 1.2.6
fd368b
fd368b
* Fri Sep 24 1999 Owen Taylor <otaylor@redhat.com>
fd368b
- version 1.2.5
fd368b
fd368b
* Fri Sep 17 1999 Owen Taylor <otaylor@redhat.com>
fd368b
- version 1.2.4
fd368b
fd368b
* Mon Jun 7 1999 Owen Taylor <otaylor@redhat.com>
fd368b
- version 1.2.3
fd368b
fd368b
* Thu Mar 25 1999 Michael Fulbright <drmike@redhat.com>
fd368b
- version 1.2.1
fd368b
fd368b
* Fri Feb 26 1999 Michael Fulbright <drmike@redhat.com>
fd368b
- Version 1.2
fd368b
fd368b
* Thu Feb 25 1999 Michael Fulbright <drmike@redhat.com>
fd368b
- version 1.2.0pre1
fd368b
fd368b
* Tue Feb 23 1999 Cristian Gafton <gafton@redhat.com>
fd368b
- new description tags
fd368b
fd368b
* Sun Feb 21 1999 Michael Fulbright <drmike@redhat.com>
fd368b
- removed libtoolize from %%build
fd368b
fd368b
* Thu Feb 11 1999 Michael Fulbright <drmike@redhat.com>
fd368b
- added libgthread to file list
fd368b
fd368b
* Fri Feb 05 1999 Michael Fulbright <drmike@redhat.com>
fd368b
- version 1.1.15
fd368b
fd368b
* Wed Feb 03 1999 Michael Fulbright <drmike@redhat.com>
fd368b
- version 1.1.14
fd368b
fd368b
* Mon Jan 18 1999 Michael Fulbright <drmike@redhat.com>
fd368b
- version 1.1.13
fd368b
fd368b
* Wed Jan 06 1999 Michael Fulbright <drmike@redhat.com>
fd368b
- version 1.1.12
fd368b
fd368b
* Wed Dec 16 1998 Michael Fulbright <drmike@redhat.com>
fd368b
- updated in preparation for the GNOME freeze
fd368b
fd368b
* Mon Apr 13 1998 Marc Ewing <marc@redhat.com>
fd368b
- Split out glib package