2006-05-23 13:18:16 +00:00
|
|
|
%define libdir /%{_lib}
|
|
|
|
|
2005-12-12 05:58:51 +00:00
|
|
|
Summary: A library of handy utility functions
|
2004-09-09 05:16:47 +00:00
|
|
|
Name: glib2
|
2007-12-21 04:38:40 +00:00
|
|
|
Version: 2.15.0
|
2007-12-22 18:55:18 +00:00
|
|
|
Release: 4%{?dist}
|
2007-08-02 20:22:45 +00:00
|
|
|
License: LGPLv2+
|
2004-09-09 05:16:47 +00:00
|
|
|
Group: System Environment/Libraries
|
2007-06-29 18:16:47 +00:00
|
|
|
URL: http://www.gtk.org
|
2007-12-21 04:38:40 +00:00
|
|
|
Source: http://download.gnome.org/sources/glib/2.15/glib-%{version}.tar.bz2
|
2004-09-09 05:17:09 +00:00
|
|
|
Source2: glib2.sh
|
|
|
|
Source3: glib2.csh
|
2006-11-20 05:31:21 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2007-02-03 18:39:01 +00:00
|
|
|
BuildRequires: pkgconfig >= 1:0.14
|
2007-12-21 04:38:40 +00:00
|
|
|
BuildRequires: gamin-devel
|
2004-09-09 05:18:52 +00:00
|
|
|
BuildRequires: gettext
|
2004-09-09 05:16:47 +00:00
|
|
|
|
2007-12-21 11:09:38 +00:00
|
|
|
Patch0: glib-2.15.0-gtestutils.patch
|
2007-12-22 18:24:02 +00:00
|
|
|
Patch1: desktopfiles.patch
|
2007-12-21 11:09:38 +00:00
|
|
|
|
2004-09-09 05:16:56 +00:00
|
|
|
%description
|
|
|
|
GLib is the low-level core library that forms the basis
|
|
|
|
for projects such as GTK+ and GNOME. It provides data structure
|
|
|
|
handling for C, portability wrappers, and interfaces for such runtime
|
2006-01-06 14:39:39 +00:00
|
|
|
functionality as an event loop, threads, dynamic loading, and an
|
|
|
|
object system.
|
2004-09-09 05:16:47 +00:00
|
|
|
|
2004-09-09 05:17:11 +00:00
|
|
|
This package provides version 2 of GLib.
|
2004-09-09 05:16:47 +00:00
|
|
|
|
|
|
|
%package devel
|
2007-02-03 18:39:01 +00:00
|
|
|
Summary: A library of handy utility functions
|
2004-09-09 05:16:47 +00:00
|
|
|
Group: Development/Libraries
|
2007-02-03 18:39:01 +00:00
|
|
|
Requires: pkgconfig >= 1:0.14
|
2006-05-03 03:48:13 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2004-09-09 05:16:47 +00:00
|
|
|
|
|
|
|
%description devel
|
2004-09-09 05:17:34 +00:00
|
|
|
The glib2-devel package includes the header files for
|
2004-09-09 05:17:11 +00:00
|
|
|
version 2 of the GLib library.
|
2004-09-09 05:16:47 +00:00
|
|
|
|
2007-02-04 22:33:37 +00:00
|
|
|
# anaconda needs static libs, see RH bug #193143
|
2007-02-03 18:39:01 +00:00
|
|
|
%package static
|
|
|
|
Summary: A library of handy utility functions
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name}-devel = %{version}-%{release}
|
|
|
|
|
|
|
|
%description static
|
|
|
|
The glib2-static package includes static libraries
|
|
|
|
of version 2 of the GLib library.
|
|
|
|
|
2004-09-09 05:17:06 +00:00
|
|
|
%prep
|
|
|
|
%setup -q -n glib-%{version}
|
2007-12-21 11:09:38 +00:00
|
|
|
%patch0 -p1 -b .gtestutils.patch
|
2007-12-22 18:24:02 +00:00
|
|
|
%patch1 -p1 -b .desktopfiles
|
2004-09-09 05:17:06 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
for i in config.guess config.sub ; do
|
|
|
|
test -f /usr/share/libtool/$i && cp /usr/share/libtool/$i .
|
|
|
|
done
|
2007-02-10 04:56:34 +00:00
|
|
|
%configure --disable-gtk-doc --enable-static
|
2007-02-03 18:39:01 +00:00
|
|
|
make %{?_smp_mflags}
|
2006-11-20 05:31:21 +00:00
|
|
|
|
|
|
|
%check
|
2007-02-03 18:39:01 +00:00
|
|
|
# abicheck scripts don't work on ppc
|
2007-01-15 05:34:33 +00:00
|
|
|
%ifnarch ppc ppc64
|
2007-08-04 04:29:36 +00:00
|
|
|
# FIXME need to make make check work without --enable-debug
|
|
|
|
#make check
|
2007-01-15 05:34:33 +00:00
|
|
|
%endif
|
2004-09-09 05:17:06 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
2006-05-23 13:18:16 +00:00
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
2004-09-09 05:17:06 +00:00
|
|
|
|
2007-02-10 04:56:34 +00:00
|
|
|
# we build into /usr/lib, but we want the libraries (but not
|
|
|
|
# the devel stuff) in /lib
|
|
|
|
./mkinstalldirs $RPM_BUILD_ROOT/%{_lib}
|
|
|
|
pushd $RPM_BUILD_ROOT%{_libdir}
|
2007-12-21 04:38:40 +00:00
|
|
|
for name in glib gobject gmodule gthread gio; do
|
2007-02-10 04:56:34 +00:00
|
|
|
mv lib${name}-2.0.so.* ../../%{_lib}
|
|
|
|
ln -sf ../../%{_lib}/lib${name}-2.0.so.*.* lib${name}-2.0.so
|
|
|
|
done
|
|
|
|
popd
|
|
|
|
|
2004-09-09 05:17:09 +00:00
|
|
|
## glib2.sh and glib2.csh
|
2007-02-03 18:49:44 +00:00
|
|
|
./mkinstalldirs $RPM_BUILD_ROOT%{_sysconfdir}/profile.d
|
2007-02-04 22:33:37 +00:00
|
|
|
install -p -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/profile.d
|
|
|
|
install -p -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/profile.d
|
2004-09-09 05:17:09 +00:00
|
|
|
|
2007-02-10 04:56:34 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
2007-12-21 04:38:40 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/gio/modules/*.{a,la}
|
2006-05-23 13:18:16 +00:00
|
|
|
|
2004-09-09 05:17:06 +00:00
|
|
|
%find_lang glib20
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files -f glib20.lang
|
2007-02-03 18:39:01 +00:00
|
|
|
%defattr(-, root, root, -)
|
2007-08-02 20:22:45 +00:00
|
|
|
%doc AUTHORS COPYING NEWS README
|
2006-05-23 13:18:16 +00:00
|
|
|
%{libdir}/libglib-2.0.so.*
|
|
|
|
%{libdir}/libgthread-2.0.so.*
|
|
|
|
%{libdir}/libgmodule-2.0.so.*
|
|
|
|
%{libdir}/libgobject-2.0.so.*
|
2007-12-21 04:38:40 +00:00
|
|
|
%{libdir}/libgio-2.0.so.*
|
2004-09-09 05:17:09 +00:00
|
|
|
%{_sysconfdir}/profile.d/*
|
2007-12-21 04:45:58 +00:00
|
|
|
%{_libdir}/gio/modules/libgiofam.so
|
2004-09-09 05:17:06 +00:00
|
|
|
|
|
|
|
%files devel
|
2007-02-03 18:39:01 +00:00
|
|
|
%defattr(-, root, root, -)
|
2007-02-10 04:56:34 +00:00
|
|
|
%{_libdir}/lib*.so
|
2006-05-25 14:21:04 +00:00
|
|
|
%{_libdir}/glib-2.0
|
2004-09-09 05:17:06 +00:00
|
|
|
%{_includedir}/*
|
|
|
|
%{_datadir}/aclocal/*
|
|
|
|
%{_libdir}/pkgconfig/*
|
|
|
|
%{_datadir}/glib-2.0
|
|
|
|
%{_bindir}/*
|
2007-08-02 20:22:45 +00:00
|
|
|
%doc %{_datadir}/gtk-doc/html/*
|
|
|
|
%doc %{_mandir}/man1/*
|
2004-09-09 05:17:06 +00:00
|
|
|
|
2007-02-03 18:39:01 +00:00
|
|
|
%files static
|
|
|
|
%defattr(-, root, root, -)
|
2007-02-10 04:56:34 +00:00
|
|
|
%{_libdir}/lib*.a
|
2007-02-03 18:39:01 +00:00
|
|
|
|
2004-09-09 05:16:47 +00:00
|
|
|
%changelog
|
2007-12-22 18:55:18 +00:00
|
|
|
* Sat Dec 22 2007 Matthias Clasen <mclasen@redhat.com> - 2.15.0-4
|
|
|
|
- Another attempt
|
|
|
|
|
2007-12-22 18:06:02 +00:00
|
|
|
* Sat Dec 22 2007 Matthias Clasen <mclasen@redhat.com> - 2.15.0-3
|
|
|
|
- Fix some errors in desktop files handling
|
|
|
|
|
2007-12-21 11:09:38 +00:00
|
|
|
* Fri Dec 21 2007 Caolan McNamara <caolanm@redhat.com> - 2.15.0-2
|
|
|
|
- add jakubs patch in so xulrunner will build and so gcc too
|
|
|
|
|
2007-12-21 04:38:40 +00:00
|
|
|
* Thu Dec 20 2007 Matthias Clasen <mclasen@redhat.com> - 2.15.0-1
|
|
|
|
- Update to 2.15.0
|
|
|
|
|
2007-11-24 18:58:40 +00:00
|
|
|
* Sat Nov 24 2007 Matthias Clasen <mclasen@redhat.com> - 2.14.4-1
|
|
|
|
- Update to 2.14.4
|
|
|
|
|
2007-11-07 07:09:27 +00:00
|
|
|
* Wed Nov 7 2007 Matthias Clasen <mclasen@redhat.com> - 2.14.3-1
|
|
|
|
- Update to 2.14.3, including a new version of PCRE that
|
|
|
|
fixes several vulnerabilities
|
|
|
|
|
2007-10-16 06:40:10 +00:00
|
|
|
* Tue Oct 16 2007 Matthias Clasen <mclasen@redhat.com> - 2.14.2-1
|
|
|
|
- Update to 2.14.2 (bug fixes)
|
|
|
|
|
2007-09-16 20:08:01 +00:00
|
|
|
* Sun Sep 16 2007 Matthias Clasen <mclasen@redhat.com> - 2.14.1-1
|
|
|
|
- Update to 2.14.1
|
|
|
|
|
2007-08-04 04:14:32 +00:00
|
|
|
* Sat Aug 4 2007 Matthias Clasen <mclasen@redhat.com> - 2.14.0-1
|
|
|
|
- Update to 2.14.0
|
|
|
|
|
2007-08-02 20:22:45 +00:00
|
|
|
* Thu Aug 2 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.7-3
|
|
|
|
- Update License field
|
|
|
|
- Don't ship ChangeLog
|
|
|
|
|
2007-07-13 01:54:21 +00:00
|
|
|
* Thu Jul 12 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.7-2
|
|
|
|
- Fix build issues on ppc
|
|
|
|
|
2007-07-12 18:24:32 +00:00
|
|
|
* Thu Jul 12 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.7-1
|
|
|
|
- Update to 2.13.7
|
|
|
|
|
2007-06-29 18:16:47 +00:00
|
|
|
* Fri Jun 29 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.6-1
|
|
|
|
- Update to 2.13.6
|
|
|
|
- Drop an ancient Conflict
|
|
|
|
|
2007-06-18 18:09:34 +00:00
|
|
|
* Mon Jun 18 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.5-1
|
|
|
|
- Update to 2.13.5
|
|
|
|
|
2007-06-06 05:15:51 +00:00
|
|
|
* Wed Jun 6 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.4-1
|
|
|
|
- Update to 2.13.4
|
|
|
|
|
2007-06-04 16:13:56 +00:00
|
|
|
* Mon Jun 4 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.3-1
|
|
|
|
- Update to 2.13.3
|
|
|
|
|
2007-05-23 05:01:17 +00:00
|
|
|
* Wed May 23 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.2-1
|
|
|
|
- Update to 2.13.2
|
|
|
|
|
2007-05-19 21:14:25 +00:00
|
|
|
* Sat May 19 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.1-1
|
|
|
|
- Update to 2.13.1
|
|
|
|
|
2007-03-09 05:07:42 +00:00
|
|
|
* Fri Mar 9 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.11-1
|
|
|
|
- Update to 2.12.11
|
|
|
|
|
2007-03-07 19:19:24 +00:00
|
|
|
* Wed Mar 7 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.10-1
|
|
|
|
- Update to 2.12.10
|
|
|
|
|
2007-02-10 04:56:34 +00:00
|
|
|
* Fri Feb 9 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.9-4
|
|
|
|
- More package review demands:
|
|
|
|
* keep all -devel content in /usr/lib
|
|
|
|
|
2007-02-04 22:33:37 +00:00
|
|
|
* Sun Feb 4 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.9-3
|
|
|
|
- More package review feedback:
|
|
|
|
* install /etc/profile.d snipplets as 644
|
|
|
|
* explain Conflict with libgnomeui
|
|
|
|
* remove stale Conflict with glib-devel
|
|
|
|
|
2007-02-03 18:39:01 +00:00
|
|
|
* Sat Feb 3 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.9-2
|
|
|
|
- Incorporate package review feedback:
|
|
|
|
* drop an obsolete Provides:
|
|
|
|
* add a -static subpackage
|
|
|
|
* explain %%check ppc exception
|
|
|
|
* align summaries
|
|
|
|
|
2007-01-17 01:26:58 +00:00
|
|
|
* Tue Jan 16 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.9-1
|
|
|
|
- Update to 2.12.9
|
|
|
|
|
2007-01-15 05:24:09 +00:00
|
|
|
* Mon Jan 15 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.8-1
|
|
|
|
- Update to 2.12.8
|
|
|
|
|
2007-01-05 02:36:17 +00:00
|
|
|
* Thu Jan 4 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.7-1
|
2007-01-05 02:35:42 +00:00
|
|
|
- Update to 2.12.7
|
2007-01-05 03:38:32 +00:00
|
|
|
- Fix bit-test on x86-64
|
2007-01-05 02:35:42 +00:00
|
|
|
|
2006-12-20 18:07:04 +00:00
|
|
|
* Wed Dec 20 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.6-1
|
|
|
|
- Update to 2.12.6
|
|
|
|
|
2006-12-19 16:22:16 +00:00
|
|
|
* Mon Dec 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.5-2
|
|
|
|
- Fix the configure check for broken poll
|
|
|
|
|
2006-12-19 03:50:45 +00:00
|
|
|
* Mon Dec 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.5-1
|
|
|
|
- Update to 2.12.5
|
|
|
|
|
2006-10-23 02:15:23 +00:00
|
|
|
* Sun Oct 22 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.4-1
|
|
|
|
- Update to 2.12.4
|
|
|
|
|
2006-08-30 13:24:47 +00:00
|
|
|
* Wed Aug 30 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.3-1.fc6
|
|
|
|
- Update to 2.12.3
|
|
|
|
- Drop upstreamed patch
|
|
|
|
|
2006-08-28 03:13:20 +00:00
|
|
|
* Sun Aug 27 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.2-2.fc6
|
|
|
|
- Use Posix monotonic timers for GTimer
|
|
|
|
|
2006-08-16 02:32:23 +00:00
|
|
|
* Tue Aug 15 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.2-1.fc6
|
|
|
|
- Update to 2.12.2
|
|
|
|
|
2006-07-22 19:26:48 +00:00
|
|
|
* Sat Jul 22 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.1-1
|
|
|
|
- Update to 2.12.1
|
|
|
|
|
2006-07-12 05:57:10 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.12.0-1.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-07-02 20:23:15 +00:00
|
|
|
* Sun Jul 2 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.0-1
|
|
|
|
- Update to 2.12.0
|
|
|
|
|
2006-06-20 15:35:36 +00:00
|
|
|
* Tue Jun 20 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.4-1
|
|
|
|
- Update to 2.11.4
|
|
|
|
|
2006-06-12 16:27:40 +00:00
|
|
|
* Mon Jun 12 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.3-1
|
|
|
|
- Update to 2.11.3
|
|
|
|
|
2006-06-05 18:28:43 +00:00
|
|
|
* Mon Jun 5 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.2-1
|
|
|
|
- Update to 2.11.2
|
|
|
|
|
2006-06-02 03:15:39 +00:00
|
|
|
* Thu Jun 1 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.1-6
|
|
|
|
- Rebuild
|
|
|
|
|
2006-05-25 19:13:00 +00:00
|
|
|
* Thu May 25 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.1-5
|
|
|
|
- Fix some fallout
|
|
|
|
|
2006-05-25 17:00:47 +00:00
|
|
|
* Thu May 25 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.1-4
|
|
|
|
- Include static libraries, since anaconda needs them (#193143)
|
|
|
|
|
2006-05-25 14:21:04 +00:00
|
|
|
* Thu May 25 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.1-3
|
|
|
|
- Keep glibconfig.h in /usr/lib
|
|
|
|
|
2006-05-23 13:18:16 +00:00
|
|
|
* Mon May 22 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.1-2
|
|
|
|
- Move glib to /lib
|
|
|
|
|
2006-05-15 17:54:08 +00:00
|
|
|
* Mon May 15 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.1-1
|
|
|
|
- Update to 2.11.1
|
|
|
|
|
2006-05-03 03:48:13 +00:00
|
|
|
* Tue May 2 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.0-1
|
|
|
|
- Update to 2.11.0
|
|
|
|
|
2006-04-07 17:57:21 +00:00
|
|
|
* Fri Apr 7 2006 Matthias Clasen <mclasen@redhat.com> - 2.10.2-2
|
|
|
|
- Update to 2.10.2
|
|
|
|
|
2006-03-07 20:05:28 +00:00
|
|
|
* Tue Mar 7 2006 Matthias Clasen <mclasen@redhat.com> - 2.10.1-1
|
|
|
|
- Update to 2.10.1
|
|
|
|
|
2006-02-24 20:08:09 +00:00
|
|
|
* Fri Feb 24 2006 Matthias Clasen <mclasen@redhat.com> - 2.10.0-1
|
|
|
|
- Update to 2.10.0
|
|
|
|
|
2006-02-11 15:48:45 +00:00
|
|
|
* Sat Feb 12 2006 Matthias Clasen <mclasen@redhat.com> - 2.9.6-1
|
|
|
|
- Update to 2.9.6
|
|
|
|
|
2006-02-11 03:10:40 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.9.5-1.2
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 11:49:11 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.9.5-1.1
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2006-01-27 14:53:27 +00:00
|
|
|
* Fri Jan 27 2006 Matthias Clasen <mclasen@redhat.com> - 2.9.5-1
|
|
|
|
- Update to 2.9.5
|
|
|
|
|
2006-01-18 18:05:28 +00:00
|
|
|
* Wed Jan 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.9.4-1
|
|
|
|
- Update to 2.9.4
|
|
|
|
|
2006-01-17 00:36:05 +00:00
|
|
|
* Mon Jan 16 2006 Matthias Clasen <mclasen@redhat.com> - 2.9.3-1
|
|
|
|
- Update to 2.9.3
|
|
|
|
|
2006-01-06 14:41:39 +00:00
|
|
|
* Fri Jan 6 2006 Matthias Clasen <mclasen@redhat.com> - 2.9.2-2
|
2006-01-06 14:39:39 +00:00
|
|
|
- Update to 2.9.2
|
|
|
|
|
2005-12-12 05:58:51 +00:00
|
|
|
* Sun Dec 11 2005 Matthias Clasen <mclasen@redhat.com>
|
|
|
|
- Specfile cosmetics
|
|
|
|
|
2005-12-10 20:50:09 +00:00
|
|
|
* Sat Dec 10 2005 Matthias Clasen <mclasen@redhat.com> - 2.9.1-1
|
|
|
|
- New upstream version
|
|
|
|
|
2005-11-30 15:46:38 +00:00
|
|
|
* Wed Nov 30 2005 Matthias Clasen <mclasen@redhat.com> - 2.9.0-1
|
|
|
|
- New upstream version
|
|
|
|
|
2005-11-15 18:51:53 +00:00
|
|
|
* Tue Nov 15 2005 Matthias Clasen <mclasen@redhat.com> - 2.8.4-1
|
|
|
|
- New upstream version
|
|
|
|
|
2005-10-03 17:23:01 +00:00
|
|
|
* Mon Oct 3 2005 Matthias Clasen <mclasen@redhat.com> - 2.8.3-1
|
|
|
|
- New upstream version
|
|
|
|
|
2005-09-27 03:18:26 +00:00
|
|
|
* Mon Sep 26 2005 Matthias Clasen <mclasen@redhat.com> - 2.8.2-1
|
|
|
|
- New upstream version
|
|
|
|
|
2005-08-23 05:06:16 +00:00
|
|
|
* Sat Aug 23 2005 Matthias Clasen <mclasen@redhat.com> - 2.8.1-1
|
|
|
|
- New upstream version
|
|
|
|
- Drop patches
|
|
|
|
|
2005-08-14 02:44:07 +00:00
|
|
|
* Sat Aug 13 2005 Matthias Clasen <mclasen@redhat.com> - 2.8.0-1
|
|
|
|
- New stable upstream version
|
2005-08-14 05:37:12 +00:00
|
|
|
- Drop patches
|
2005-08-14 02:44:07 +00:00
|
|
|
|
2005-08-05 14:10:07 +00:00
|
|
|
* Fri Aug 5 2005 Matthias Clasen <mclasen@redhat.com> - 2.7.6-3
|
|
|
|
- Fix C++ guards in gstdio.h
|
|
|
|
|
2005-08-04 14:25:48 +00:00
|
|
|
* Thu Aug 4 2005 Matthias Clasen <mclasen@redhat.com> - 2.7.6-2
|
|
|
|
- Another attempt to fix atomic ops on s390
|
|
|
|
|
2005-08-03 21:10:56 +00:00
|
|
|
* Tue Aug 3 2005 Matthias Clasen <mclasen@redhat.com> - 2.7.6-1
|
|
|
|
- Update to 2.7.6
|
|
|
|
|
2005-08-02 16:56:32 +00:00
|
|
|
* Tue Aug 2 2005 Matthias Clasen <mclasen@redhat.com> - 2.7.5-1
|
|
|
|
- Update to 2.7.5
|
|
|
|
|
2005-07-22 19:09:29 +00:00
|
|
|
* Fri Jul 22 2005 Matthias Clasen <mclasen@redhat.com> - 2.7.4-1
|
|
|
|
- Update to 2.7.4
|
|
|
|
|
2005-07-15 19:19:35 +00:00
|
|
|
* Fri Jul 15 2005 Matthias Clasen <mclasen@redhat.com> - 2.7.3-1
|
|
|
|
- Update to 2.7.3
|
|
|
|
|
2005-07-08 16:58:12 +00:00
|
|
|
* Fri Jul 8 2005 Matthias Clasen <mclasen@redhat.com> - 2.7.2-1
|
|
|
|
- Update to 2.7.2
|
|
|
|
|
2005-07-01 20:08:43 +00:00
|
|
|
* Fri Jul 1 2005 Matthias Clasen <mclasen@redhat.com> - 2.7.1-1
|
|
|
|
- Update to 2.7.1
|
|
|
|
|
2005-06-13 17:36:46 +00:00
|
|
|
* Mon Jun 13 2005 Matthias Clasen <mclasen@redhat.com> - 2.7.0-1
|
|
|
|
- Update to 2.7.0
|
|
|
|
|
2005-04-06 16:06:59 +00:00
|
|
|
* Wed Apr 6 2005 Matthias Clasen <mclasen@redhat.com> - 2.6.4-1
|
|
|
|
- Update to 2.6.4
|
|
|
|
- Drop upstreamed patches
|
|
|
|
|
2005-03-11 18:15:03 +00:00
|
|
|
* Fri Mar 11 2005 Matthias Clasen <mclasen@redhat.com> - 2.6.3-4
|
|
|
|
- Fix #150817
|
|
|
|
|
2005-03-04 13:33:53 +00:00
|
|
|
* Wed Mar 4 2005 Matthias Clasen <mclasen@redhat.com> - 2.6.3-3
|
|
|
|
- Rebuild
|
|
|
|
|
2005-03-02 15:00:35 +00:00
|
|
|
* Wed Mar 2 2005 Matthias Clasen <mclasen@redhat.com> - 2.6.3-2
|
|
|
|
- Rebuild with gcc4
|
|
|
|
|
2005-02-28 14:02:48 +00:00
|
|
|
* Mon Feb 28 2005 Matthias Clasen <mclasen@redhat.com> - 2.6.3-1
|
|
|
|
- Upgrade to 2.6.3
|
|
|
|
|
2005-02-05 00:45:44 +00:00
|
|
|
* Fri Feb 4 2005 Matthias Clasen <mclasen@redhat.com> - 2.6.2-1
|
|
|
|
- Upgrade to 2.6.2
|
|
|
|
|
2005-01-10 14:31:13 +00:00
|
|
|
* Mon Jan 10 2005 Matthias Clasen <mclasen@redhat.com> - 2.6.1-1
|
2005-01-10 14:30:00 +00:00
|
|
|
- Upgrade to 2.6.1
|
|
|
|
|
2004-12-21 16:14:04 +00:00
|
|
|
* Mon Dec 21 2004 Matthias Clasen <mclasen@redhat.com> - 2.6.0-1
|
|
|
|
- Upgrade to 2.6.0
|
|
|
|
|
2004-12-06 14:26:42 +00:00
|
|
|
* Mon Dec 06 2004 Matthias Clasen <mclasen@redhat.com> - 2.4.8-1
|
|
|
|
- Upgrade to 2.4.8
|
|
|
|
|
2004-10-13 13:30:04 +00:00
|
|
|
* Wed Oct 13 2004 Matthias Clasen <mclasen@redhat.com> - 2.4.7-1
|
|
|
|
- Upgrade to 2.4.7
|
|
|
|
|
2004-09-09 05:19:44 +00:00
|
|
|
* Fri Aug 13 2004 Matthias Clasen <mclasen@redhat.com> - 2.4.6-1
|
|
|
|
- Update to 2.4.6
|
|
|
|
|
2004-09-09 05:19:36 +00:00
|
|
|
* Sun Aug 1 2004 ALan Cox <alan@redhat.com> - 2.4.5-2
|
|
|
|
- Fixed BuildRoot to use % macro not hardcode /var/tmp
|
|
|
|
|
2004-09-09 05:19:15 +00:00
|
|
|
* Fri Jul 30 2004 Matthias Clasen <mclasen@redhat.com> - 2.4.5-1
|
|
|
|
- Update to 2.4.5
|
|
|
|
- Escape macros in changelog section
|
|
|
|
|
2004-09-09 05:19:06 +00:00
|
|
|
* Fri Jul 09 2004 Matthias Clasen <mclasen@redhat.com> - 2.4.4-1
|
|
|
|
- Update to 2.4.4
|
|
|
|
|
2004-09-09 05:18:52 +00:00
|
|
|
* Mon Jun 21 2004 Matthias Clasen <mclasen@redhat.com> - 2.4.2-1
|
|
|
|
- Require gettext at build time (#125320)
|
|
|
|
- Update to 2.4.2 (#125736)
|
|
|
|
|
2004-09-09 05:18:46 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 05:18:42 +00:00
|
|
|
* Wed May 19 2004 Matthias Clasen <mclasen@redhat.com> 2.4.1-1
|
|
|
|
- Update to 2.4.1
|
|
|
|
|
2004-09-09 05:18:37 +00:00
|
|
|
* Tue Mar 16 2004 Owen Taylor <otaylor@redhat.com> 2.4.0-1
|
|
|
|
- Update to 2.4.0
|
|
|
|
|
|
|
|
* Wed Mar 10 2004 Mark McLoughlin <markmc@redhat.com> 2.3.6-1
|
|
|
|
- Update to 2.3.6
|
|
|
|
- Remove gatomic build fix
|
|
|
|
|
|
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Tue Mar 02 2004 Mark McLoughlin <markmc@redhat.com> 2.3.5-1
|
|
|
|
- Update to 2.3.5
|
|
|
|
- Fix build on ppc64
|
|
|
|
- Disable make check on s390 as well - test-thread failing
|
|
|
|
|
|
|
|
* Wed Feb 25 2004 Mark McLoughlin <markmc@redhat.com> 2.3.3-1
|
|
|
|
- Update to 2.3.3
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 05:17:53 +00:00
|
|
|
* Fri Jan 23 2004 Jonathan Blandford <jrb@redhat.com> 2.3.2-1
|
|
|
|
- new version
|
|
|
|
- remove 'make check' temporarily
|
|
|
|
|
|
|
|
* Mon Sep 8 2003 Owen Taylor <otaylor@redhat.com> 2.2.3-2.0
|
|
|
|
- Conflict with libgnomeui <= 2.2.0 (#83581, Göran Uddeborg)
|
|
|
|
|
2004-09-09 05:17:34 +00:00
|
|
|
* Tue Aug 26 2003 Owen Taylor <otaylor@redhat.com> 2.2.3-1.1
|
|
|
|
- Version 2.2.3
|
|
|
|
|
|
|
|
* Tue Jul 8 2003 Owen Taylor <otaylor@redhat.com> 2.2.2-2.0
|
|
|
|
- Bump for rebuild
|
|
|
|
|
|
|
|
* Sun Jun 8 2003 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Version 2.2.2
|
|
|
|
|
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Tue Jun 3 2003 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- add explicit epoch's where needed.
|
|
|
|
|
2004-09-09 05:17:14 +00:00
|
|
|
* Sun Feb 2 2003 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Version 2.2.1
|
|
|
|
|
|
|
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Thu Jan 9 2003 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Add static libraries to build (#78685, Bernd Kischnick)
|
|
|
|
- Bump-and-rebuild for new redhat-rpm-config
|
|
|
|
|
|
|
|
* Fri Dec 20 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Version 2.2.0
|
|
|
|
- Add make check to the build process
|
|
|
|
|
|
|
|
* Mon Dec 16 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Version 2.1.5
|
|
|
|
|
|
|
|
* Wed Dec 11 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Version 2.1.4
|
|
|
|
|
2004-09-09 05:17:11 +00:00
|
|
|
* Mon Dec 2 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Version 2.1.3
|
|
|
|
|
|
|
|
* Mon Oct 07 2002 Havoc Pennington <hp@redhat.com>
|
|
|
|
- Try rebuilding with new arches
|
|
|
|
|
2004-09-09 05:17:09 +00:00
|
|
|
* Tue Aug 13 2002 Havoc Pennington <hp@redhat.com>
|
|
|
|
- install glib2.sh and glib2.csh to set G_BROKEN_FILENAMES
|
|
|
|
- blow away unpackaged files in install
|
|
|
|
|
2004-09-09 05:17:06 +00:00
|
|
|
* Thu Aug 8 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Version 2.0.6
|
|
|
|
- Remove fixed-ltmain.sh; shouldn't be needed any more.
|
|
|
|
|
|
|
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
* Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
|
|
|
|
- 2.0.4
|
|
|
|
|
|
|
|
* Thu May 23 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
* Wed Apr 24 2002 Havoc Pennington <hp@redhat.com>
|
|
|
|
- rebuild in different environment
|
|
|
|
|
2004-09-09 05:16:59 +00:00
|
|
|
* Mon Apr 15 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Fix missing .po files (#63336)
|
|
|
|
|
2004-09-09 05:16:56 +00:00
|
|
|
* Wed Apr 3 2002 Alex Larsson <alexl@redhat.com>
|
|
|
|
- Update to version 2.0.1
|
|
|
|
|
|
|
|
* Fri Mar 8 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Version 2.0.0
|
|
|
|
|
|
|
|
* Mon Feb 25 2002 Alex Larsson <alexl@redhat.com>
|
|
|
|
- Update to 1.3.15
|
|
|
|
|
|
|
|
* Thu Feb 21 2002 Alex Larsson <alexl@redhat.com>
|
|
|
|
- Bump for rebuild
|
|
|
|
|
|
|
|
* Mon Feb 18 2002 Alex Larsson <alexl@redhat.com>
|
|
|
|
- Update to 1.3.14
|
|
|
|
|
|
|
|
* Fri Feb 15 2002 Havoc Pennington <hp@redhat.com>
|
|
|
|
- add horrible buildrequires hack
|
|
|
|
|
|
|
|
* Thu Feb 14 2002 Havoc Pennington <hp@redhat.com>
|
|
|
|
- 1.3.13.91 cvs snap
|
|
|
|
|
|
|
|
* Mon Feb 11 2002 Matt Wilson <msw@redhat.com>
|
|
|
|
- rebuild from CVS snapshot
|
|
|
|
- use setup -q
|
|
|
|
|
|
|
|
* Thu Jan 31 2002 Jeremy Katz <katzj@redhat.com>
|
|
|
|
- rebuild
|
|
|
|
|
|
|
|
* Tue Jan 29 2002 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- 1.3.13
|
|
|
|
|
|
|
|
* Tue Jan 22 2002 Havoc Pennington <hp@redhat.com>
|
|
|
|
- attempting rebuild in rawhide
|
|
|
|
|
|
|
|
* Wed Jan 2 2002 Havoc Pennington <hp@redhat.com>
|
|
|
|
- remove 64-bit patch now upstream, 1.3.12.90
|
|
|
|
|
|
|
|
* Mon Nov 26 2001 Havoc Pennington <hp@redhat.com>
|
|
|
|
- add some missing files to file list, langify
|
|
|
|
|
|
|
|
* Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
|
|
|
|
- add temporary patch to fix GTypeFundamentals on 64-bit
|
|
|
|
|
|
|
|
* Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
|
|
|
|
- Version 1.3.11
|
|
|
|
|
|
|
|
* Thu Oct 25 2001 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Version 1.3.10
|
|
|
|
|
|
|
|
* Tue Sep 25 2001 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Version 1.3.9
|
|
|
|
|
|
|
|
* Wed Sep 19 2001 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Version 1.3.8
|
|
|
|
|
2004-09-09 05:16:47 +00:00
|
|
|
* Fri Jul 20 2001 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Make -devel package require main package (#45388)
|
|
|
|
- Fix description and summary
|
|
|
|
- Configure with --disable-gtk-doc
|
|
|
|
|
|
|
|
* Wed Jun 20 2001 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- add some portability fixes needed at least on s390
|
|
|
|
- copy config.{guess,sub} instead of calling libtoolize
|
|
|
|
|
|
|
|
* Wed Jun 13 2001 Havoc Pennington <hp@redhat.com>
|
|
|
|
- try a new glib tarball with Makefile changes to work around
|
|
|
|
libtool linking to installed .la files
|
|
|
|
- make -devel require pkgconfig
|
|
|
|
|
|
|
|
* Tue Jun 12 2001 Havoc Pennington <hp@redhat.com>
|
|
|
|
- either libtool or the bad libtool hacks caused link
|
|
|
|
against glib-gobject 1.3.2, rebuild
|
|
|
|
|
|
|
|
* Tue Jun 12 2001 Havoc Pennington <hp@redhat.com>
|
|
|
|
- 1.3.6
|
|
|
|
- bad libtool workarounds
|
|
|
|
|
|
|
|
* Fri May 04 2001 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- 1.3.5, rename to glib2
|
|
|
|
|
|
|
|
* Fri Nov 17 2000 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Final 1.3.2
|
|
|
|
|
|
|
|
* Mon Nov 13 2000 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Version 1.3.2pre1
|
|
|
|
- Remove pkgconfig
|
|
|
|
|
|
|
|
* Sun Aug 13 2000 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Call 1.3.1b instead of snap... the snap* naming doesn't
|
|
|
|
order correctly.
|
|
|
|
|
|
|
|
* Thu Aug 10 2000 Havoc Pennington <hp@redhat.com>
|
|
|
|
- new snapshot with fixed .pc files
|
|
|
|
|
|
|
|
* Thu Aug 10 2000 Havoc Pennington <hp@redhat.com>
|
|
|
|
- include .pc files in file list
|
|
|
|
|
|
|
|
* Thu Aug 10 2000 Havoc Pennington <hp@redhat.com>
|
|
|
|
- Include pkg-config
|
|
|
|
- Upgrade to a glib CVS snapshot
|
|
|
|
|
|
|
|
* Wed Jul 19 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- rebuild to cope with glibc locale binary incompatibility
|
|
|
|
|
|
|
|
* Fri Jul 14 2000 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Remove glib-config.1 manpage from build since
|
|
|
|
it conflicts with glib-devel. When we go to
|
|
|
|
glib glib1.2 setup, we should add it back
|
|
|
|
|
|
|
|
* Fri Jul 07 2000 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Version 1.3.1
|
2004-09-09 05:19:15 +00:00
|
|
|
- Move back to standard %%{prefix}
|
2004-09-09 05:16:47 +00:00
|
|
|
|
|
|
|
* Thu Jun 8 2000 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Rebuild in /opt/gtk-beta
|
|
|
|
|
|
|
|
* Tue May 30 2000 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- New version (adds gobject)
|
|
|
|
|
|
|
|
* Wed Apr 25 2000 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Don't blow away /etc/ld.so.conf (sorry!)
|
|
|
|
|
|
|
|
* Tue Apr 24 2000 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Snapshot RPM for Pango testing
|
|
|
|
|
|
|
|
* Fri Feb 04 2000 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- Added fixes from stable branch of CVS
|
|
|
|
|
|
|
|
* Thu Oct 7 1999 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- version 1.2.6
|
|
|
|
|
|
|
|
* Fri Sep 24 1999 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- version 1.2.5
|
|
|
|
|
|
|
|
* Fri Sep 17 1999 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- version 1.2.4
|
|
|
|
|
|
|
|
* Mon Jun 7 1999 Owen Taylor <otaylor@redhat.com>
|
|
|
|
- version 1.2.3
|
|
|
|
|
|
|
|
* Thu Mar 25 1999 Michael Fulbright <drmike@redhat.com>
|
|
|
|
- version 1.2.1
|
|
|
|
|
|
|
|
* Fri Feb 26 1999 Michael Fulbright <drmike@redhat.com>
|
|
|
|
- Version 1.2
|
|
|
|
|
|
|
|
* Thu Feb 25 1999 Michael Fulbright <drmike@redhat.com>
|
|
|
|
- version 1.2.0pre1
|
|
|
|
|
|
|
|
* Tue Feb 23 1999 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- new description tags
|
|
|
|
|
|
|
|
* Sun Feb 21 1999 Michael Fulbright <drmike@redhat.com>
|
2004-09-09 05:19:15 +00:00
|
|
|
- removed libtoolize from %%build
|
2004-09-09 05:16:47 +00:00
|
|
|
|
|
|
|
* Thu Feb 11 1999 Michael Fulbright <drmike@redhat.com>
|
|
|
|
- added libgthread to file list
|
|
|
|
|
|
|
|
* Fri Feb 05 1999 Michael Fulbright <drmike@redhat.com>
|
|
|
|
- version 1.1.15
|
|
|
|
|
|
|
|
* Wed Feb 03 1999 Michael Fulbright <drmike@redhat.com>
|
|
|
|
- version 1.1.14
|
|
|
|
|
|
|
|
* Mon Jan 18 1999 Michael Fulbright <drmike@redhat.com>
|
|
|
|
- version 1.1.13
|
|
|
|
|
|
|
|
* Wed Jan 06 1999 Michael Fulbright <drmike@redhat.com>
|
|
|
|
- version 1.1.12
|
|
|
|
|
|
|
|
* Wed Dec 16 1998 Michael Fulbright <drmike@redhat.com>
|
|
|
|
- updated in preparation for the GNOME freeze
|
|
|
|
|
|
|
|
* Mon Apr 13 1998 Marc Ewing <marc@redhat.com>
|
|
|
|
- Split out glib package
|
|
|
|
|