Blame SPECS/mingw-glib2.spec

e6143c
%{?mingw_package_header}
e6143c
e6143c
Name:           mingw-glib2
44a5a5
Version:        2.70.1
44a5a5
Release:        2%{?dist}
e6143c
Summary:        MinGW Windows GLib2 library
e6143c
e6143c
License:        LGPLv2+
e6143c
URL:            http://www.gtk.org
e6143c
# first two digits of version
e6143c
%global release_version %(echo %{version} | awk -F. '{print $1"."$2}')
e6143c
Source0:        http://download.gnome.org/sources/glib/%{release_version}/glib-%{version}.tar.xz
e6143c
e6143c
BuildArch:      noarch
e6143c
e6143c
BuildRequires:  meson
e6143c
BuildRequires:  gcc
e6143c
BuildRequires:  gcc-c++
e6143c
e6143c
BuildRequires:  mingw32-filesystem >= 107
e6143c
BuildRequires:  mingw32-gcc
e6143c
BuildRequires:  mingw32-binutils
e6143c
BuildRequires:  mingw32-win-iconv
e6143c
BuildRequires:  mingw32-gettext
e6143c
BuildRequires:  mingw32-libffi
e6143c
BuildRequires:  mingw32-pcre
e6143c
BuildRequires:  mingw32-zlib
e6143c
e6143c
BuildRequires:  mingw64-filesystem >= 107
e6143c
BuildRequires:  mingw64-gcc
e6143c
BuildRequires:  mingw64-binutils
e6143c
BuildRequires:  mingw64-win-iconv
e6143c
BuildRequires:  mingw64-gettext
e6143c
BuildRequires:  mingw64-libffi
e6143c
BuildRequires:  mingw64-pcre
e6143c
BuildRequires:  mingw64-zlib
e6143c
e6143c
# Native version required for msgfmt use in build
e6143c
BuildRequires:  gettext
e6143c
# Native version required for glib-genmarshal
e6143c
BuildRequires:  glib2-devel >= 2.45.3
e6143c
BuildRequires:  python3-devel
e6143c
e6143c
# https://bugzilla.gnome.org/show_bug.cgi?id=674214
e6143c
Patch1:         0001-Use-CreateFile-on-Win32-to-make-sure-g_unlink-always.patch
e6143c
e6143c
# Prefer the use of GCC constructors over DllMain
e6143c
# This prevents having to depend on DllMain in static libraries
e6143c
# http://lists.fedoraproject.org/pipermail/mingw/2013-March/006429.html
e6143c
# http://lists.fedoraproject.org/pipermail/mingw/2013-March/006469.html
e6143c
# https://bugzilla.gnome.org/show_bug.cgi?id=698118
e6143c
#Patch5:         glib-prefer-constructors-over-DllMain.patch
e6143c
e6143c
%description
e6143c
MinGW Windows Glib2 library.
e6143c
e6143c
# Win32
e6143c
%package -n mingw32-glib2
e6143c
Summary:        MinGW Windows Glib2 library for the win32 target
e6143c
# glib-genmarshal and glib-mkenums are written in Python
e6143c
Requires:       python3
e6143c
e6143c
%description -n mingw32-glib2
e6143c
MinGW Windows Glib2 library.
e6143c
e6143c
%package -n mingw32-glib2-static
e6143c
Summary:        Static version of the MinGW Windows GLib2 library
e6143c
Requires:       mingw32-glib2 = %{version}-%{release}
e6143c
Requires:       mingw32-gettext-static
e6143c
e6143c
%description -n mingw32-glib2-static
e6143c
Static version of the MinGW Windows GLib2 library.
e6143c
e6143c
# Win64
e6143c
%package -n mingw64-glib2
e6143c
Summary:        MinGW Windows Glib2 library for the win64 target
e6143c
# glib-genmarshal and glib-mkenums are written in Python
e6143c
Requires:       python3
e6143c
e6143c
%description -n mingw64-glib2
e6143c
MinGW Windows Glib2 library.
e6143c
e6143c
%package -n mingw64-glib2-static
e6143c
Summary:        Static version of the MinGW Windows GLib2 library
e6143c
Requires:       mingw64-glib2 = %{version}-%{release}
e6143c
Requires:       mingw64-gettext-static
e6143c
e6143c
%description -n mingw64-glib2-static
e6143c
Static version of the MinGW Windows GLib2 library.
e6143c
e6143c
e6143c
%{?mingw_debug_package}
e6143c
e6143c
e6143c
%prep
e6143c
%autosetup -p1 -n glib-%{version}
e6143c
e6143c
%build
e6143c
%mingw_meson --default-library=both
e6143c
%mingw_ninja
e6143c
e6143c
%install
e6143c
%mingw_ninja_install
e6143c
e6143c
# There's a small difference in the file glibconfig.h between the
e6143c
# shared and the static build:
e6143c
#
e6143c
#diff -ur shared/usr/i686-pc-mingw32/sys-root/mingw/lib/glib-2.0/include/glibconfig.h static/usr/i686-pc-mingw32/sys-root/mingw/lib/glib-2.0/include/glibconfig.h
e6143c
#--- shared/usr/i686-pc-mingw32/sys-root/mingw/lib/glib-2.0/include/glibconfig.h	2009-02-20 17:34:35.735677022 +0100
e6143c
#+++ static/usr/i686-pc-mingw32/sys-root/mingw/lib/glib-2.0/include/glibconfig.h	2009-02-20 17:33:35.498932269 +0100
e6143c
#@@ -92,7 +92,8 @@
e6143c
# 
e6143c
# #define G_OS_WIN32
e6143c
# #define G_PLATFORM_WIN32
e6143c
#-
e6143c
#+#define GLIB_STATIC_COMPILATION 1
e6143c
#+#define GOBJECT_STATIC_COMPILATION 1
e6143c
# 
e6143c
# #define G_VA_COPY	va_copy
e6143c
#
e6143c
# However, we can't merge this change as it is situation-dependent...
e6143c
#
e6143c
# Developers using the static build of GLib need to add -DGLIB_STATIC_COMPILATION
e6143c
# and -DGOBJECT_STATIC_COMPILATION to their CFLAGS to avoid compile failures
e6143c
e6143c
# Drop the folder which was temporary used for installing the static bits
e6143c
rm -f %{buildroot}/%{mingw32_libdir}/charset.alias
e6143c
rm -f %{buildroot}/%{mingw64_libdir}/charset.alias
e6143c
e6143c
# Drop the GDB helper files as we can't use the native Fedora GDB to debug Win32 programs
e6143c
rm -rf %{buildroot}%{mingw32_datadir}/gdb
e6143c
rm -rf %{buildroot}%{mingw64_datadir}/gdb
e6143c
e6143c
# Remove the gtk-doc documentation and manpages which duplicate Fedora native
e6143c
rm -rf %{buildroot}%{mingw32_mandir}
e6143c
rm -rf %{buildroot}%{mingw32_datadir}/gtk-doc
e6143c
e6143c
rm -rf %{buildroot}%{mingw64_mandir}
e6143c
rm -rf %{buildroot}%{mingw64_datadir}/gtk-doc
e6143c
e6143c
# Bash-completion files aren't interesting for mingw
e6143c
rm -rf %{buildroot}%{mingw32_datadir}/bash-completion
e6143c
rm -rf %{buildroot}%{mingw64_datadir}/bash-completion
e6143c
e6143c
# The .def files are also of no use to other binaries
e6143c
rm -f %{buildroot}%{mingw32_libdir}/*.def
e6143c
rm -f %{buildroot}%{mingw64_libdir}/*.def
e6143c
e6143c
# The gdbus-codegen pieces are already in the native glib2 package
e6143c
rm -f %{buildroot}%{mingw32_bindir}/gdbus-codegen
e6143c
rm -rf %{buildroot}%{mingw32_libdir}/gdbus-2.0
e6143c
e6143c
rm -f %{buildroot}%{mingw64_bindir}/gdbus-codegen
e6143c
rm -rf %{buildroot}%{mingw64_libdir}/gdbus-2.0
e6143c
e6143c
# Drop all .la files
e6143c
find %{buildroot} -name "*.la" -delete
e6143c
e6143c
%mingw_find_lang glib20
e6143c
e6143c
# Manually invoke the python byte compile macro for each path that needs byte
e6143c
# compilation.
e6143c
%py_byte_compile %{__python3} %{buildroot}%{mingw32_datadir}/glib-2.0/gdb
e6143c
%py_byte_compile %{__python3} %{buildroot}%{mingw32_datadir}/glib-2.0/codegen
e6143c
%py_byte_compile %{__python3} %{buildroot}%{mingw64_datadir}/glib-2.0/gdb
e6143c
%py_byte_compile %{__python3} %{buildroot}%{mingw64_datadir}/glib-2.0/codegen
e6143c
e6143c
e6143c
# Win32
e6143c
%files -n mingw32-glib2 -f mingw32-glib20.lang
e6143c
%license COPYING
e6143c
%{mingw32_bindir}/gdbus.exe
e6143c
%{mingw32_bindir}/gio.exe
e6143c
%{mingw32_bindir}/gio-querymodules.exe
e6143c
%{mingw32_bindir}/glib-compile-resources.exe
e6143c
%{mingw32_bindir}/glib-compile-schemas.exe
e6143c
%{mingw32_bindir}/glib-genmarshal
e6143c
%{mingw32_bindir}/glib-gettextize
e6143c
%{mingw32_bindir}/glib-mkenums
e6143c
%{mingw32_bindir}/gobject-query.exe
e6143c
%{mingw32_bindir}/gresource.exe
e6143c
%{mingw32_bindir}/gsettings.exe
e6143c
%{mingw32_bindir}/gspawn-win32-helper-console.exe
e6143c
%{mingw32_bindir}/gspawn-win32-helper.exe
e6143c
%{mingw32_bindir}/gtester-report
e6143c
%{mingw32_bindir}/libgio-2.0-0.dll
e6143c
%{mingw32_bindir}/libglib-2.0-0.dll
e6143c
%{mingw32_bindir}/libgmodule-2.0-0.dll
e6143c
%{mingw32_bindir}/libgobject-2.0-0.dll
e6143c
%{mingw32_bindir}/libgthread-2.0-0.dll
e6143c
%{mingw32_includedir}/glib-2.0/
e6143c
%{mingw32_includedir}/gio-win32-2.0/
e6143c
%{mingw32_libdir}/glib-2.0/
e6143c
%{mingw32_libdir}/libgio-2.0.dll.a
e6143c
%{mingw32_libdir}/libglib-2.0.dll.a
e6143c
%{mingw32_libdir}/libgmodule-2.0.dll.a
e6143c
%{mingw32_libdir}/libgobject-2.0.dll.a
e6143c
%{mingw32_libdir}/libgthread-2.0.dll.a
e6143c
%{mingw32_libdir}/pkgconfig/gio-2.0.pc
e6143c
%{mingw32_libdir}/pkgconfig/gio-windows-2.0.pc
e6143c
%{mingw32_libdir}/pkgconfig/glib-2.0.pc
e6143c
%{mingw32_libdir}/pkgconfig/gmodule-2.0.pc
e6143c
%{mingw32_libdir}/pkgconfig/gmodule-export-2.0.pc
e6143c
%{mingw32_libdir}/pkgconfig/gmodule-no-export-2.0.pc
e6143c
%{mingw32_libdir}/pkgconfig/gobject-2.0.pc
e6143c
%{mingw32_libdir}/pkgconfig/gthread-2.0.pc
e6143c
%{mingw32_datadir}/aclocal/glib-2.0.m4
e6143c
%{mingw32_datadir}/aclocal/glib-gettext.m4
e6143c
%{mingw32_datadir}/aclocal/gsettings.m4
e6143c
%{mingw32_datadir}/gettext/its/
e6143c
%{mingw32_datadir}/glib-2.0/
e6143c
e6143c
%files -n mingw32-glib2-static
e6143c
%{mingw32_libdir}/libgio-2.0.a
e6143c
%{mingw32_libdir}/libglib-2.0.a
e6143c
%{mingw32_libdir}/libgmodule-2.0.a
e6143c
%{mingw32_libdir}/libgobject-2.0.a
e6143c
%{mingw32_libdir}/libgthread-2.0.a
e6143c
e6143c
# Win64
e6143c
%files -n mingw64-glib2 -f mingw64-glib20.lang
e6143c
%license COPYING
e6143c
%{mingw64_bindir}/gdbus.exe
e6143c
%{mingw64_bindir}/gio.exe
e6143c
%{mingw64_bindir}/gio-querymodules.exe
e6143c
%{mingw64_bindir}/glib-compile-resources.exe
e6143c
%{mingw64_bindir}/glib-compile-schemas.exe
e6143c
%{mingw64_bindir}/glib-genmarshal
e6143c
%{mingw64_bindir}/glib-gettextize
e6143c
%{mingw64_bindir}/glib-mkenums
e6143c
%{mingw64_bindir}/gobject-query.exe
e6143c
%{mingw64_bindir}/gresource.exe
e6143c
%{mingw64_bindir}/gsettings.exe
e6143c
%{mingw64_bindir}/gspawn-win64-helper-console.exe
e6143c
%{mingw64_bindir}/gspawn-win64-helper.exe
e6143c
%{mingw64_bindir}/gtester-report
e6143c
%{mingw64_bindir}/libgio-2.0-0.dll
e6143c
%{mingw64_bindir}/libglib-2.0-0.dll
e6143c
%{mingw64_bindir}/libgmodule-2.0-0.dll
e6143c
%{mingw64_bindir}/libgobject-2.0-0.dll
e6143c
%{mingw64_bindir}/libgthread-2.0-0.dll
e6143c
%{mingw64_includedir}/glib-2.0/
e6143c
%{mingw64_includedir}/gio-win32-2.0/
e6143c
%{mingw64_libdir}/glib-2.0/
e6143c
%{mingw64_libdir}/libgio-2.0.dll.a
e6143c
%{mingw64_libdir}/libglib-2.0.dll.a
e6143c
%{mingw64_libdir}/libgmodule-2.0.dll.a
e6143c
%{mingw64_libdir}/libgobject-2.0.dll.a
e6143c
%{mingw64_libdir}/libgthread-2.0.dll.a
e6143c
%{mingw64_libdir}/pkgconfig/gio-2.0.pc
e6143c
%{mingw64_libdir}/pkgconfig/gio-windows-2.0.pc
e6143c
%{mingw64_libdir}/pkgconfig/glib-2.0.pc
e6143c
%{mingw64_libdir}/pkgconfig/gmodule-2.0.pc
e6143c
%{mingw64_libdir}/pkgconfig/gmodule-export-2.0.pc
e6143c
%{mingw64_libdir}/pkgconfig/gmodule-no-export-2.0.pc
e6143c
%{mingw64_libdir}/pkgconfig/gobject-2.0.pc
e6143c
%{mingw64_libdir}/pkgconfig/gthread-2.0.pc
e6143c
%{mingw64_datadir}/aclocal/glib-2.0.m4
e6143c
%{mingw64_datadir}/aclocal/glib-gettext.m4
e6143c
%{mingw64_datadir}/aclocal/gsettings.m4
e6143c
%{mingw64_datadir}/gettext/its/
e6143c
%{mingw64_datadir}/glib-2.0/
e6143c
e6143c
%files -n mingw64-glib2-static
e6143c
%{mingw64_libdir}/libgio-2.0.a
e6143c
%{mingw64_libdir}/libglib-2.0.a
e6143c
%{mingw64_libdir}/libgmodule-2.0.a
e6143c
%{mingw64_libdir}/libgobject-2.0.a
e6143c
%{mingw64_libdir}/libgthread-2.0.a
e6143c
e6143c
e6143c
%changelog
44a5a5
* Mon Aug 08 2022 Konstantin Kostiuk <kkostiuk@redhat.com> - 2.70.1-2
44a5a5
- Rebuild for mingw-zlib update
44a5a5
  resolves: rhbz#2116278
44a5a5
e6143c
* Mon Oct 04 2021 Richard W.M. Jones <rjones@redhat.com> - 2.66.7-4
e6143c
- Rebuild for changed mingw-libffi soname
e6143c
  resolves: rhbz#2009943
e6143c
e6143c
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.66.7-3
e6143c
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
e6143c
  Related: rhbz#1991688
e6143c
e6143c
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.66.7-2
e6143c
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
e6143c
e6143c
* Fri Mar 05 2021 Sandro Mani <manisandro@gmail.com> - 2.66.7-1
e6143c
- Update to 2.66.7
e6143c
e6143c
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.66.2-2
e6143c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
e6143c
e6143c
* Mon Oct 19 2020 Sandro Mani <manisandro@gmail.com> - 2.66.2-1
e6143c
- Update to 2.66.2
e6143c
e6143c
* Mon Oct 05 2020 Sandro Mani <manisandro@gmail.com> - 2.66.1-1
e6143c
- Update to 2.66.1
e6143c
e6143c
* Tue Sep 15 2020 Sandro Mani <manisandro@gmail.com> - 2.66.0-1
e6143c
- Update to 2.66.0
e6143c
e6143c
* Wed Aug 12 13:36:55 GMT 2020 Sandro Mani <manisandro@gmail.com> - 2.64.3-3
e6143c
- Rebuild (mingw-gettext)
e6143c
e6143c
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.64.3-2
e6143c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
e6143c
e6143c
* Fri May 22 2020 Sandro Mani <manisandro@gmail.com> - 2.64.3-1
e6143c
- Update to 2.64.3
e6143c
e6143c
* Mon Apr 20 2020 Sandro Mani <manisandro@gmail.com> - 2.64.2-2
e6143c
- Rebuild (gettext)
e6143c
e6143c
* Sat Apr 11 2020 Sandro Mani <manisandro@gmail.com> - 2.64.2-1
e6143c
- Update to 2.64.2
e6143c
e6143c
* Thu Mar 12 2020 Sandro Mani <manisandro@gmail.com> - 2.64.1-1
e6143c
- Update to 2.64.1
e6143c
e6143c
* Fri Mar 06 2020 Sandro Mani <manisandro@gmail.com> - 2.64.0-1
e6143c
- Update to 2.64.0
e6143c
e6143c
* Tue Feb 25 2020 Sandro Mani <manisandro@gmail.com> - 2.63.6-1
e6143c
- Update to 2.63.6
e6143c
e6143c
* Tue Feb 11 2020 Sandro Mani <manisandro@gmail.com> - 2.63.5-2
e6143c
- Backport proposed patch for CVE-2020-6750
e6143c
e6143c
* Mon Feb 03 2020 Sandro Mani <manisandro@gmail.com> - 2.63.5-1
e6143c
- Update to 2.63.5
e6143c
e6143c
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.63.4-2
e6143c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
e6143c
e6143c
* Fri Jan 24 2020 Sandro Mani <manisandro@gmail.com> - 2.63.4-1
e6143c
- Update to 2.63.4
e6143c
e6143c
* Mon Dec 16 2019 Sandro Mani <manisandro@gmail.com> - 2.63.3-1
e6143c
- Update to 2.63.3
e6143c
e6143c
* Tue Dec 03 2019 Sandro Mani <manisandro@gmail.com> - 2.63.2-1
e6143c
- Update to 2.63.2
e6143c
e6143c
* Tue Oct 08 2019 Sandro Mani <manisandro@gmail.com> - 2.63.0-2
e6143c
- Rebuild (Changes/Mingw32GccDwarf2)
e6143c
e6143c
* Fri Oct 04 2019 Sandro Mani <manisandro@gmail.com> - 2.63.0-1
e6143c
- Update to 2.63.0
e6143c
e6143c
* Mon Sep 16 2019 Sandro Mani <manisandro@gmail.com> - 2.62.0-1
e6143c
- Update to 2.62.0
e6143c
e6143c
* Wed Sep 04 2019 Sandro Mani <manisandro@gmail.com> - 2.61.3-1
e6143c
- Update to 2.61.3
e6143c
e6143c
* Thu Aug 15 2019 Fabiano Fidêncio <fidencio@redhat.com> - 2.61.2-1
e6143c
- Update to 2.61.2
e6143c
e6143c
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.58.3-3
e6143c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
e6143c
e6143c
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.58.3-2
e6143c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
e6143c
e6143c
* Tue Jan 22 2019 Kalev Lember <klember@redhat.com> - 2.58.3-1
e6143c
- Update to 2.58.3
e6143c
e6143c
* Tue Jan 08 2019 Kalev Lember <klember@redhat.com> - 2.58.2-1
e6143c
- Update to 2.58.2
e6143c
e6143c
* Fri Sep 21 2018 Kalev Lember <klember@redhat.com> - 2.58.1-1
e6143c
- Update to 2.58.1
e6143c
e6143c
* Thu Aug 02 2018 Thomas Sailer <t.sailer@alumni.ethz.ch> - 2.57.2-1
e6143c
- Update to 2.57.2
e6143c
e6143c
* Thu Aug 02 2018 Thomas Sailer <t.sailer@alumni.ethz.ch> - 2.57.1-1
e6143c
- Update to 2.57.1
e6143c
e6143c
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.56.1-3
e6143c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
e6143c
e6143c
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 2.56.1-2
e6143c
- Rebuilt for Python 3.7
e6143c
e6143c
* Mon May 28 2018 Thomas Sailer <t.sailer@alumni.ethz.ch> - 2.56.1-1
e6143c
- Update to 2.56.1
e6143c
e6143c
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.54.1-2
e6143c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
e6143c
e6143c
* Sun Oct 15 2017 Kalev Lember <klember@redhat.com> - 2.54.1-1
e6143c
- Update to 2.54.1
e6143c
e6143c
* Mon Aug 21 2017 Kalev Lember <klember@redhat.com> - 2.53.6-1
e6143c
- Update to 2.53.6
e6143c
e6143c
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.52.2-3
e6143c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
e6143c
e6143c
* Thu Jul 13 2017 Petr Pisar <ppisar@redhat.com> - 2.52.2-2
e6143c
- perl dependency renamed to perl-interpreter
e6143c
  <https://fedoraproject.org/wiki/Changes/perl_Package_to_Install_Core_Modules>
e6143c
e6143c
* Mon Jun 19 2017 Kalev Lember <klember@redhat.com> - 2.52.2-1
e6143c
- Update to 2.52.2
e6143c
e6143c
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.50.1-2
e6143c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
e6143c
e6143c
* Wed Oct 12 2016 Kalev Lember <klember@redhat.com> - 2.50.1-1
e6143c
- Update to 2.50.1
e6143c
e6143c
* Fri Sep 23 2016 Kalev Lember <klember@redhat.com> - 2.50.0-1
e6143c
- Update to 2.50.0
e6143c
e6143c
* Fri Sep 16 2016 Kalev Lember <klember@redhat.com> - 2.48.2-2
e6143c
- Add missing perl dep for glib-mkenums
e6143c
- Don't set group tags
e6143c
e6143c
* Thu Aug 18 2016 Kalev Lember <klember@redhat.com> - 2.48.2-1
e6143c
- Update to 2.48.2
e6143c
e6143c
* Tue May 10 2016 Kalev Lember <klember@redhat.com> - 2.48.1-1
e6143c
- Update to 2.48.1
e6143c
e6143c
* Mon May  2 2016 Thomas Sailer <t.sailer@alumni.ethz.ch> - 2.48.0-1
e6143c
- update to 2.48.0
e6143c
e6143c
* Sun Feb  7 2016 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.47.5-1
e6143c
- Update to 2.47.5
e6143c
e6143c
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.47.4-3
e6143c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
e6143c
e6143c
* Tue Jan 05 2016 Richard Jones <rjones@redhat.com> - 2.47.4-2
e6143c
- Use global instead of define.
e6143c
e6143c
* Tue Dec 29 2015 Thomas Sailer <t.sailer@alumni.ethz.ch> - 2.47.4-1
e6143c
- Update to 2.47.4
e6143c
e6143c
* Wed Nov 18 2015 Kalev Lember <klember@redhat.com> - 2.46.2-1
e6143c
- Update to 2.46.2
e6143c
e6143c
* Fri Oct 16 2015 Kalev Lember <klember@redhat.com> - 2.46.1-1
e6143c
- Update to 2.46.1
e6143c
e6143c
* Tue Sep 22 2015 Kalev Lember <klember@redhat.com> - 2.46.0-1
e6143c
- Update to 2.46.0
e6143c
e6143c
* Sat Aug 22 2015 Kalev Lember <klember@redhat.com> - 2.45.6-1
e6143c
- Update to 2.45.6
e6143c
e6143c
* Thu Jul  2 2015 Thomas Sailer <t.sailer@alumni.ethz.ch> - 2.45.3-1
e6143c
- Update to 2.45.3
e6143c
e6143c
* Tue Jun 23 2015 Fabiano Fidêncio <fidencio@redhat.com> - 2.44.0-4
e6143c
- gio/ginetaddress.c: Fix Windows XP inet_pton() Emulation
e6143c
  (https://bugzilla.gnome.org/show_bug.cgi?id=730352#c24)
e6143c
e6143c
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.44.0-3
e6143c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
e6143c
e6143c
* Mon Apr 20 2015 Kalev Lember <kalevlember@gmail.com> - 2.44.0-2
e6143c
- Add back two accidentally dropped GNetworkMonitor crasher fixes
e6143c
  (GNOME BZ #733338)
e6143c
e6143c
* Tue Mar 24 2015 Kalev Lember <kalevlember@gmail.com> - 2.44.0-1
e6143c
- Update to 2.44.0
e6143c
- Use license macro for the COPYING file
e6143c
e6143c
* Mon Jan 26 2015 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.43.3-1
e6143c
- Update to 2.43.3
e6143c
e6143c
* Sat Nov 15 2014 Kalev Lember <kalevlember@gmail.com> - 2.42.1-1
e6143c
- Update to 2.42.1
e6143c
e6143c
* Tue Sep 23 2014 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.42.0-1
e6143c
- Update to 2.42.0
e6143c
e6143c
* Sat Sep 20 2014 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.41.5-1
e6143c
- Update to 2.41.5
e6143c
e6143c
* Fri Sep 12 2014 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.41.4-1
e6143c
- Update to 2.41.4
e6143c
e6143c
* Tue Jul 22 2014 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.41.2-1
e6143c
- Update to 2.41.2
e6143c
e6143c
* Sat Jun 14 2014 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.41.0-3
e6143c
- Prevent an invalid @CARBON_LIBS@ from appearing in the .pc files (GNOME BZ #731657)
e6143c
e6143c
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.41.0-2
e6143c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e6143c
e6143c
* Sun Jun  1 2014 Thomas Sailer <t.sailer@alumni.ethz.ch> - 2.41.0-1
e6143c
- update to 2.41.0
e6143c
e6143c
* Thu May 15 2014 Richard W.M. Jones <rjones@redhat.com> - 2.40.0-3
e6143c
- Fix valgrind support (RHBZ#1095664, GNOME bug 730198).
e6143c
- Include <stdint.h>, required by valgrind.h only on Rawhide.
e6143c
e6143c
* Sat Mar 29 2014 Kalev Lember <kalevlember@gmail.com> - 2.40.0-1
e6143c
- Update to 2.40.0
e6143c
e6143c
* Thu Mar  6 2014 Thomas Sailer <t.sailer@alumni.ethz.ch> - 2.39.91-1
e6143c
- Update to 2.39.91
e6143c
e6143c
* Sat Mar  1 2014 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.39.90-1
e6143c
- Update to 2.39.90
e6143c
e6143c
* Sat Feb  8 2014 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.39.4-1
e6143c
- Update to 2.39.4
e6143c
e6143c
* Tue Dec 17 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.39.2-1
e6143c
- Update to 2.39.2
e6143c
e6143c
* Wed Nov 20 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.39.1-1
e6143c
- Update to 2.39.1
e6143c
e6143c
* Wed Nov 20 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.38.2-1
e6143c
- Update to 2.38.2
e6143c
e6143c
* Tue Sep 24 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.38.0-1
e6143c
- Update to 2.38.0
e6143c
e6143c
* Wed Sep  4 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.37.7-1
e6143c
- Update to 2.37.7
e6143c
e6143c
* Thu Aug  1 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.37.5-1
e6143c
- Update to 2.37.5
e6143c
e6143c
* Wed Jul 10 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.37.4-1
e6143c
- Update to 2.37.4
e6143c
e6143c
* Thu Jun 27 2013 Kalev Lember <kalevlember@gmail.com> - 2.37.3-2
e6143c
- Include the COPYING file in %%doc (thanks daumas for noticing it!)
e6143c
e6143c
* Wed Jun 26 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.37.3-1
e6143c
- Update to 2.37.3
e6143c
e6143c
* Sun Jun 16 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.37.1-2
e6143c
- Rebuild to resolve InterlockedCompareExchange regression in mingw32 libraries
e6143c
e6143c
* Fri May 31 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.37.1-1
e6143c
- Update to 2.37.1
e6143c
e6143c
* Sun May  5 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.37.0-1
e6143c
- Update to 2.37.0
e6143c
e6143c
* Tue Apr 16 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.36.1-1
e6143c
- Update to 2.36.1
e6143c
- Dropped upstreamed patches
e6143c
e6143c
* Mon Apr 15 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.36.0-3
e6143c
- Revert unintended ABI break on win64 (RHBZ #951588, GNOME BZ #697879)
e6143c
e6143c
* Fri Mar 29 2013 Kalev Lember <kalevlember@gmail.com> - 2.36.0-2
e6143c
- Drop two patches that have been fixed upstream
e6143c
e6143c
* Tue Mar 26 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.36.0-1
e6143c
- Update to 2.36.0
e6143c
e6143c
* Sat Mar 23 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.35.9-1
e6143c
- Update to 2.35.9
e6143c
- Added R: mingw{32,64}-gettext-static to the -static subpackages
e6143c
- Prefer the use of GCC constructors over DllMain
e6143c
  This removes the DllMain symbol from the static libraries
e6143c
e6143c
* Fri Feb 22 2013 Thomas Sailer <t.sailer@alumni.ethz.ch> - 2.35.8-1
e6143c
- update to 2.35.8
e6143c
e6143c
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.35.4-4
e6143c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
e6143c
e6143c
* Sun Jan 20 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.35.4-3
e6143c
- Replaced the gcc 4.8 workaround with a more proper fix (GNOME BZ #692079)
e6143c
e6143c
* Sat Jan 19 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.35.4-2
e6143c
- Work around more strict behaviour of gcc 4.8, GNOME BZ #692079
e6143c
- Use verbose make
e6143c
e6143c
* Wed Jan 16 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.35.4-1
e6143c
- Update to 2.35.4
e6143c
e6143c
* Thu Jan  3 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.35.3-3
e6143c
- Resolve regression regarding linking against C++ code (GNOME BZ #690902)
e6143c
e6143c
* Tue Jan  1 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.35.3-2
e6143c
- Make sure g_log_default_handler uses the correct file descriptors for stdout and stderr
e6143c
e6143c
* Tue Jan  1 2013 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.35.3-1
e6143c
- Update to 2.35.3
e6143c
e6143c
* Fri Nov  9 2012 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.35.1-1
e6143c
- Update to 2.35.1
e6143c
e6143c
* Sat Oct 20 2012 Kalev Lember <kalevlember@gmail.com> - 2.34.1-1
e6143c
- Update to 2.34.1
e6143c
e6143c
* Fri Oct  5 2012 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.34.0-1
e6143c
- Update to 2.34.0
e6143c
e6143c
* Mon Aug 27 2012 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.33.10-2
e6143c
- Use CreateFile on Win32 to make sure g_unlink always works (GNOME BZ #674214)
e6143c
- Fixed typo's in description
e6143c
e6143c
* Sat Aug 25 2012 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.33.10-1
e6143c
- Update to 2.33.10
e6143c
e6143c
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.33.1-2
e6143c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e6143c
e6143c
* Sat May 05 2012 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.33.1-1
e6143c
- Update to 2.33.1
e6143c
e6143c
* Sat May 05 2012 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.32.2-2
e6143c
- Fix compile failure while building static library (GNOME BZ #675516)
e6143c
e6143c
* Tue May 01 2012 Kalev Lember <kalevlember@gmail.com> - 2.32.2-1
e6143c
- Update to 2.32.2
e6143c
- Dropped upstreamed patches
e6143c
e6143c
* Sat Apr 14 2012 Kalev Lember <kalevlember@gmail.com> - 2.32.1-1
e6143c
- Update to 2.32.1
e6143c
- Dropped an upstreamed patch
e6143c
- Added two new patches to fix build
e6143c
e6143c
* Wed Mar 28 2012 Kalev Lember <kalevlember@gmail.com> - 2.32.0-2
e6143c
- Add a patch to fix alignment tests when cross compiling
e6143c
e6143c
* Mon Mar 26 2012 Kalev Lember <kalevlember@gmail.com> - 2.32.0-1
e6143c
- Update to 2.32.0
e6143c
- Dropped upstreamed patch
e6143c
e6143c
* Sat Mar 10 2012 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.31.20-2
e6143c
- Added win64 support
e6143c
e6143c
* Thu Mar 08 2012 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.31.20-1
e6143c
- Update to 2.31.20
e6143c
- Dropped unneeded BR: mingw32-dlfcn
e6143c
- Dropped .la files
e6143c
e6143c
* Tue Mar 06 2012 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.31.18-2
e6143c
- Renamed the source package to mingw-glib2 (RHBZ #800389)
e6143c
- Use mingw macros without leading underscore
e6143c
e6143c
* Tue Feb 28 2012 Kalev Lember <kalevlember@gmail.com> - 2.31.18-1
e6143c
- Update to 2.31.18
e6143c
e6143c
* Mon Feb 27 2012 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.31.16-2
e6143c
- Rebuild against the mingw-w64 toolchain
e6143c
e6143c
* Tue Feb 07 2012 Kalev Lember <kalevlember@gmail.com> - 2.31.16-1
e6143c
- Update to 2.31.16
e6143c
e6143c
* Thu Jan 12 2012 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.31.8-1
e6143c
- Update to 2.31.8
e6143c
e6143c
* Tue Nov 22 2011 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.31.2-1
e6143c
- Update to 2.31.2
e6143c
e6143c
* Tue Oct 18 2011 Kalev Lember <kalevlember@gmail.com> - 2.30.1-1
e6143c
- Update to 2.30.1
e6143c
e6143c
* Fri Sep 30 2011 Kalev Lember <kalevlember@gmail.com> - 2.30.0-1
e6143c
- Update to 2.30.0
e6143c
e6143c
* Tue Aug 30 2011 Kalev Lember <kalevlember@gmail.com> - 2.29.18-1
e6143c
- Update to 2.29.18
e6143c
e6143c
* Sun Jul 10 2011 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.29.10-2
e6143c
- Dropped the gdbus-codegen pieces as they match the native glib2 package
e6143c
e6143c
* Fri Jul 08 2011 Kalev Lember <kalevlember@gmail.com> - 2.29.10-1
e6143c
- Update to 2.29.10
e6143c
- Switch to xz compressed tarballs
e6143c
e6143c
* Wed Jul 06 2011 Kalev Lember <kalevlember@gmail.com> - 2.28.6-4
e6143c
- Rebuilt against win-iconv
e6143c
e6143c
* Thu Apr 28 2011 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.28.6-3
e6143c
- Own the folders %%{_mingw32_libdir}/gio and %%{_mingw32_libdir}/gio/modules
e6143c
- Dropped the .def files as they aren't useful for other binaries
e6143c
e6143c
* Wed Apr 27 2011 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.28.6-2
e6143c
- Dropped the proxy-libintl pieces
e6143c
e6143c
* Sat Apr 23 2011 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.28.6-1
e6143c
- Update to 2.28.6
e6143c
- Dropped the ugly build hack as it isn't needed anymore (the
e6143c
  broken mingw32-runtime has been fixed by now)
e6143c
- Made the pkgconfig LDFLAGS libtool friendly (fixes compilation for
e6143c
  non-libtool based projects such as midori)
e6143c
e6143c
* Sun Feb 13 2011 Thomas Sailer <t.sailer@alumni.ethz.ch> - 2.28.0-1
e6143c
- update to 2.28.0
e6143c
e6143c
* Sun Feb 13 2011 Thomas Sailer <t.sailer@alumni.ethz.ch> - 2.27.93-1
e6143c
- update to 2.27.93
e6143c
e6143c
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.27.4-2
e6143c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
e6143c
e6143c
* Mon Dec  6 2010 Thomas Sailer <t.sailer@alumni.ethz.ch> - 2.27.4-1
e6143c
- update to 2.27.4
e6143c
e6143c
* Sun Nov  7 2010 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.26.0-4
e6143c
- Fix a build failure in mingw32-libsoup and mingw32-webkitgtk
e6143c
e6143c
* Sun Oct 17 2010 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.26.0-3
e6143c
- Let binaries depending on GLib link against the libintl wrapper library
e6143c
  in a way that libtool doesn't refuse
e6143c
e6143c
* Sat Oct 16 2010 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.26.0-2
e6143c
- Rebuild in order to make libintl-8.dll a soft dependency
e6143c
e6143c
* Mon Oct 11 2010 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.26.0-1
e6143c
- Update to 2.26.0
e6143c
e6143c
* Thu Sep 23 2010 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.25.17-1
e6143c
- Update to 2.25.17
e6143c
e6143c
* Sun Sep 12 2010 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.25.15-1
e6143c
- Update to 2.25.15
e6143c
e6143c
* Wed Aug 11 2010 David Malcolm <dmalcolm@redhat.com> - 2.25.12-2
e6143c
- recompiling .py files against Python 2.7 (rhbz#623338)
e6143c
e6143c
* Thu Aug  5 2010 Thomas Sailer <t.sailer@alumni.ethz.ch> - 2.25.12-1
e6143c
- update to 2.25.12
e6143c
e6143c
* Fri Jun 11 2010 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.24.1-1
e6143c
- Update to 2.24.1
e6143c
e6143c
* Wed Feb 24 2010 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.23.4-1
e6143c
- Update to 2.23.4
e6143c
e6143c
* Sun Jan 31 2010 Thomas Sailer <t.sailer@alumni.ethz.ch> - 2.23.2-1
e6143c
- Update to 2.23.2
e6143c
e6143c
* Wed Dec  2 2009 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.23.0-1
e6143c
- Update to 2.23.0
e6143c
- Added BR: mingw32-zlib
e6143c
e6143c
* Fri Oct  9 2009 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.22.2-1
e6143c
- Update to 2.22.2
e6143c
e6143c
* Wed Sep 23 2009 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.22.0-1
e6143c
- Update to 2.22.0
e6143c
e6143c
* Fri Sep 18 2009 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.21.6-2
e6143c
- Rebuild because of broken mingw32-gcc/mingw32-binutils
e6143c
e6143c
* Sat Sep  5 2009 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.21.6-1
e6143c
- Update to 2.21.6
e6143c
e6143c
* Mon Aug 24 2009 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.21.5-1
e6143c
- Update to 2.21.5
e6143c
e6143c
* Thu Aug 13 2009 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.21.4-1
e6143c
- Update to 2.21.4
e6143c
e6143c
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.21.3-2
e6143c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
e6143c
e6143c
* Mon Jul  6 2009 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.21.3-1
e6143c
- Update to 2.21.3
e6143c
- Drop upstreamed patch
e6143c
e6143c
* Mon Jun 22 2009 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.21.2-2
e6143c
- The wrong RPM variable was overriden for -debuginfo support. Should be okay now
e6143c
e6143c
* Mon Jun 22 2009 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.21.2-1
e6143c
- Update to 2.21.2
e6143c
- Split out debug symbols to a -debuginfo subpackage
e6143c
e6143c
* Wed Jun 10 2009 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.21.1-1
e6143c
- Update to 2.21.1
e6143c
- Use %%global instead of %%define
e6143c
- Dropped the glib-i386-atomic.patch as it doesn't have any effect (the mingw32
e6143c
  toolchain is called i686-pc-mingw32, not i386-pc-mingw32)
e6143c
e6143c
* Thu Apr 16 2009 Thomas Sailer <t.sailer@alumni.ethz.ch> - 2.20.1-1
e6143c
- Update to 2.20.1
e6143c
e6143c
* Thu Mar 5 2009 Erik van Pienbroek <epienbro@fedoraproject.org> - 2.19.10-1
e6143c
- Update to 2.19.10
e6143c
- Dropped the gtk-doc documentation as it's identical to the base glib2 package
e6143c
e6143c
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.19.5-5
e6143c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
e6143c
e6143c
* Fri Feb 20 2009 Erik van Pienbroek <info@nntpgrab.nl> - 2.19.5-4
e6143c
- Added -static subpackage
e6143c
- Developers using the static build of GLib need to add
e6143c
  -DGLIB_STATIC_COMPILATION and -DGOBJECT_STATIC_COMPILATION to
e6143c
  their CFLAGS to avoid compile failures
e6143c
- Fixed the %%defattr line
e6143c
- Rebuild for mingw32-gcc 4.4 (RWMJ)
e6143c
e6143c
* Fri Jan 30 2009 Richard W.M. Jones <rjones@redhat.com> - 2.19.5-3
e6143c
- Requires pkgconfig.
e6143c
e6143c
* Fri Jan 23 2009 Richard W.M. Jones <rjones@redhat.com> - 2.19.5-2
e6143c
- Rebase to native Fedora version 2.19.5.
e6143c
- Use _smp_mflags.
e6143c
- Use find_lang.
e6143c
- Don't build static libraries.
e6143c
- +BR dlfcn.
e6143c
e6143c
* Wed Sep 24 2008 Richard W.M. Jones <rjones@redhat.com> - 2.18.1-2
e6143c
- Rename mingw -> mingw32.
e6143c
e6143c
* Mon Sep 22 2008 Daniel P. Berrange <berrange@redhat.com> - 2.18.1-1
e6143c
- Update to 2.18.1 release
e6143c
e6143c
* Sun Sep 21 2008 Richard W.M. Jones <rjones@redhat.com> - 2.18.0-3
e6143c
- Remove manpages which duplicate Fedora native.
e6143c
e6143c
* Thu Sep 11 2008 Daniel P. Berrange <berrange@redhat.com> - 2.18.0-2
e6143c
- Add BR on pkgconfig, gettext and glib2 (native)
e6143c
e6143c
* Tue Sep  9 2008 Daniel P. Berrange <berrange@redhat.com> - 2.18.0-1
e6143c
- Initial RPM release