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