4073ae
Name: glib2
4073ae
Version: 2.68.4
1f3217
Release: 5%{?dist}
4073ae
Summary: A library of handy utility functions
4073ae
4073ae
License: LGPLv2+
4073ae
URL: http://www.gtk.org
4073ae
Source0: http://download.gnome.org/sources/glib/2.68/glib-%{version}.tar.xz
4073ae
4073ae
# Required for RHEL core crypto components policy. Good for Fedora too.
4073ae
# https://bugzilla.redhat.com/show_bug.cgi?id=1630260
4073ae
# https://gitlab.gnome.org/GNOME/glib/-/merge_requests/903
4073ae
Patch0: gnutls-hmac.patch
4073ae
4073ae
# Add patches to move applications into systemd scopes in compliance with
4073ae
# https://systemd.io/DESKTOP_ENVIRONMENTS/
4073ae
# Proposed upstream at https://gitlab.gnome.org/GNOME/glib/-/merge_requests/1596
4073ae
Patch1: 1596.patch
4073ae
4073ae
# Add GPowerProfileMonitor
4073ae
# https://gitlab.gnome.org/GNOME/glib/-/merge_requests/1965
4073ae
# https://gitlab.gnome.org/GNOME/glib/-/merge_requests/2194
4073ae
# https://gitlab.gnome.org/GNOME/glib/-/merge_requests/2222
3ced12
Patch2: 1965.patch
3ced12
Patch3: 2194.patch
3ced12
Patch4: 2222.patch
3ced12
3ced12
# https://gitlab.gnome.org/GNOME/glib/-/merge_requests/2244
3ced12
Patch5: 2244.patch
4073ae
9bd4d2
# https://gitlab.gnome.org/GNOME/glib/-/merge_requests/2291
9bd4d2
Patch6: 2291.patch
9bd4d2
1f3217
# https://gitlab.gnome.org/GNOME/glib/-/merge_requests/1968
1f3217
Patch7: 1968.patch
1f3217
# https://gitlab.gnome.org/GNOME/glib/-/merge_requests/2435
1f3217
Patch8: 2435.patch
1f3217
4073ae
BuildRequires: chrpath
4073ae
BuildRequires: gcc
4073ae
BuildRequires: gcc-c++
4073ae
BuildRequires: gettext
4073ae
BuildRequires: gtk-doc
4073ae
BuildRequires: perl-interpreter
4073ae
# for sys/inotify.h
4073ae
BuildRequires: glibc-devel
4073ae
BuildRequires: libattr-devel
4073ae
BuildRequires: libselinux-devel
4073ae
BuildRequires: meson
4073ae
# for sys/sdt.h
4073ae
BuildRequires: systemtap-sdt-devel
4073ae
BuildRequires: pkgconfig(libelf)
4073ae
BuildRequires: pkgconfig(libffi)
4073ae
BuildRequires: pkgconfig(libpcre)
4073ae
BuildRequires: pkgconfig(mount)
4073ae
BuildRequires: pkgconfig(sysprof-capture-4)
4073ae
BuildRequires: pkgconfig(zlib)
4073ae
BuildRequires: python3-devel
4073ae
4073ae
# For gnutls-hmac.patch. We now dlopen libgnutls.so.30 so that we can build a
4073ae
# static glib2 without depending on a static build of GnuTLS as well. This will
4073ae
# ensure we notice if the GnuTLS soname bumps, so that we can update our patch.
4073ae
%if 0%{?__isa_bits} == 64
4073ae
Requires: libgnutls.so.30()(64bit)
4073ae
%else
4073ae
Requires: libgnutls.so.30
4073ae
%endif
4073ae
4073ae
# Remove gamin dependency
4073ae
Obsoletes: glib2-fam < 2.67.1-3
4073ae
4073ae
# glib 2.59.0 hash table changes broke older gcr versions / password prompts in gnome-shell
4073ae
Conflicts: gcr < 3.28.1
4073ae
4073ae
Provides: bundled(gnulib)
4073ae
Provides: bundled(gvdb)
4073ae
Provides: bundled(libcharset)
4073ae
Provides: bundled(xdgmime)
4073ae
4073ae
%description
4073ae
GLib is the low-level core library that forms the basis for projects
4073ae
such as GTK+ and GNOME. It provides data structure handling for C,
4073ae
portability wrappers, and interfaces for such runtime functionality
4073ae
as an event loop, threads, dynamic loading, and an object system.
4073ae
4073ae
4073ae
%package devel
4073ae
Summary: A library of handy utility functions
4073ae
Requires: %{name}%{?_isa} = %{version}-%{release}
4073ae
4073ae
%description devel
4073ae
The glib2-devel package includes the header files for the GLib library.
4073ae
4073ae
%package doc
4073ae
Summary: A library of handy utility functions
4073ae
Requires: %{name} = %{version}-%{release}
4073ae
BuildArch: noarch
4073ae
4073ae
%description doc
4073ae
The glib2-doc package includes documentation for the GLib library.
4073ae
4073ae
%package static
4073ae
Summary: glib static
4073ae
Requires: %{name}-devel = %{version}-%{release}
4073ae
4073ae
%description static
4073ae
The %{name}-static subpackage contains static libraries for %{name}.
4073ae
4073ae
%package tests
4073ae
Summary: Tests for the glib2 package
4073ae
Requires: %{name}%{?_isa} = %{version}-%{release}
4073ae
4073ae
%description tests
4073ae
The glib2-tests package contains tests that can be used to verify
4073ae
the functionality of the installed glib2 package.
4073ae
4073ae
%prep
4073ae
%autosetup -n glib-%{version} -p1
4073ae
4073ae
%build
4073ae
# Bug 1324770: Also explicitly remove PCRE sources since we use --with-pcre=system
4073ae
rm glib/pcre/*.[ch]
4073ae
4073ae
%meson \
4073ae
    -Dman=true \
4073ae
    -Ddtrace=true \
4073ae
    -Dsystemtap=true \
4073ae
    -Dsysprof=enabled \
4073ae
    -Dglib_debug=disabled \
4073ae
    -Dgtk_doc=true \
4073ae
    -Dinstalled_tests=true \
4073ae
    -Dgnutls=true \
4073ae
    --default-library=both \
4073ae
    %{nil}
4073ae
4073ae
%meson_build
4073ae
4073ae
%install
4073ae
%meson_install
4073ae
# Since this is a generated .py file, set it to a known timestamp for
4073ae
# better reproducibility.
4073ae
# Also copy the timestamp for other .py files, because meson doesn't
4073ae
# do this, see https://github.com/mesonbuild/meson/issues/5027.
4073ae
touch -r gio/gdbus-2.0/codegen/config.py.in %{buildroot}%{_datadir}/glib-2.0/codegen/*.py
4073ae
chrpath --delete %{buildroot}%{_libdir}/*.so
4073ae
4073ae
# Perform byte compilation manually to avoid issues with
4073ae
# irreproducibility of the default invalidation mode, see
4073ae
# https://www.python.org/dev/peps/pep-0552/ and
4073ae
# https://bugzilla.redhat.com/show_bug.cgi?id=1686078
4073ae
export PYTHONHASHSEED=0
4073ae
%py_byte_compile %{__python3} %{buildroot}%{_datadir}
4073ae
4073ae
mv %{buildroot}%{_bindir}/gio-querymodules %{buildroot}%{_bindir}/gio-querymodules-%{__isa_bits}
4073ae
sed -i -e "/^gio_querymodules=/s/gio-querymodules/gio-querymodules-%{__isa_bits}/" %{buildroot}%{_libdir}/pkgconfig/gio-2.0.pc
4073ae
4073ae
mkdir -p %{buildroot}%{_libdir}/gio/modules
4073ae
touch %{buildroot}%{_libdir}/gio/modules/giomodule.cache
4073ae
4073ae
%find_lang glib20
4073ae
4073ae
%transfiletriggerin -- %{_libdir}/gio/modules
4073ae
gio-querymodules-%{__isa_bits} %{_libdir}/gio/modules &> /dev/null || :
4073ae
4073ae
%transfiletriggerpostun -- %{_libdir}/gio/modules
4073ae
gio-querymodules-%{__isa_bits} %{_libdir}/gio/modules &> /dev/null || :
4073ae
4073ae
%transfiletriggerin -- %{_datadir}/glib-2.0/schemas
4073ae
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
4073ae
4073ae
%transfiletriggerpostun -- %{_datadir}/glib-2.0/schemas
4073ae
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
4073ae
4073ae
%files -f glib20.lang
4073ae
%license COPYING
4073ae
%doc AUTHORS NEWS README
4073ae
%{_libdir}/libglib-2.0.so.*
4073ae
%{_libdir}/libgthread-2.0.so.*
4073ae
%{_libdir}/libgmodule-2.0.so.*
4073ae
%{_libdir}/libgobject-2.0.so.*
4073ae
%{_libdir}/libgio-2.0.so.*
4073ae
%dir %{_datadir}/bash-completion
4073ae
%dir %{_datadir}/bash-completion/completions
4073ae
%{_datadir}/bash-completion/completions/gapplication
4073ae
%{_datadir}/bash-completion/completions/gdbus
4073ae
%{_datadir}/bash-completion/completions/gio
4073ae
%{_datadir}/bash-completion/completions/gsettings
4073ae
%dir %{_datadir}/glib-2.0
4073ae
%dir %{_datadir}/glib-2.0/schemas
4073ae
%dir %{_libdir}/gio
4073ae
%dir %{_libdir}/gio/modules
4073ae
%ghost %{_libdir}/gio/modules/giomodule.cache
4073ae
%{_bindir}/gio
4073ae
%{_bindir}/gio-querymodules*
4073ae
%{_bindir}/glib-compile-schemas
4073ae
%{_bindir}/gsettings
4073ae
%{_bindir}/gdbus
4073ae
%{_bindir}/gapplication
4073ae
%{_mandir}/man1/gio.1*
4073ae
%{_mandir}/man1/gio-querymodules.1*
4073ae
%{_mandir}/man1/glib-compile-schemas.1*
4073ae
%{_mandir}/man1/gsettings.1*
4073ae
%{_mandir}/man1/gdbus.1*
4073ae
%{_mandir}/man1/gapplication.1*
4073ae
4073ae
%files devel
4073ae
%{_libdir}/lib*.so
4073ae
%{_libdir}/glib-2.0
4073ae
%{_includedir}/*
4073ae
%{_datadir}/aclocal/*
4073ae
%{_libdir}/pkgconfig/*
4073ae
%{_datadir}/glib-2.0/gdb
4073ae
%{_datadir}/glib-2.0/gettext
4073ae
%{_datadir}/glib-2.0/schemas/gschema.dtd
4073ae
%{_datadir}/glib-2.0/valgrind/glib.supp
4073ae
%{_datadir}/bash-completion/completions/gresource
4073ae
%{_bindir}/glib-genmarshal
4073ae
%{_bindir}/glib-gettextize
4073ae
%{_bindir}/glib-mkenums
4073ae
%{_bindir}/gobject-query
4073ae
%{_bindir}/gtester
4073ae
%{_bindir}/gdbus-codegen
4073ae
%{_bindir}/glib-compile-resources
4073ae
%{_bindir}/gresource
4073ae
%{_datadir}/glib-2.0/codegen
4073ae
%attr (0755, root, root) %{_bindir}/gtester-report
4073ae
%{_mandir}/man1/glib-genmarshal.1*
4073ae
%{_mandir}/man1/glib-gettextize.1*
4073ae
%{_mandir}/man1/glib-mkenums.1*
4073ae
%{_mandir}/man1/gobject-query.1*
4073ae
%{_mandir}/man1/gtester-report.1*
4073ae
%{_mandir}/man1/gtester.1*
4073ae
%{_mandir}/man1/gdbus-codegen.1*
4073ae
%{_mandir}/man1/glib-compile-resources.1*
4073ae
%{_mandir}/man1/gresource.1*
4073ae
%{_datadir}/gdb/
4073ae
%{_datadir}/gettext/
4073ae
%{_datadir}/systemtap/
4073ae
4073ae
%files doc
4073ae
%{_datadir}/gtk-doc/
4073ae
4073ae
%files static
4073ae
%{_libdir}/libgio-2.0.a
4073ae
%{_libdir}/libglib-2.0.a
4073ae
%{_libdir}/libgmodule-2.0.a
4073ae
%{_libdir}/libgobject-2.0.a
4073ae
%{_libdir}/libgthread-2.0.a
4073ae
4073ae
%files tests
4073ae
%{_libexecdir}/installed-tests
4073ae
%{_datadir}/installed-tests
4073ae
4073ae
%changelog
1f3217
* Fri Jan 21 2022 Michael Catanzaro <mcatanzaro@redhat.com> - 2.68.4-5
1f3217
- Add one more upstream patch to gspawn patchset
1f3217
- Related: #1910092
1f3217
1f3217
* Fri Jan 21 2022 Michael Catanzaro <mcatanzaro@redhat.com> - 2.68.4-4
1f3217
- Add gspawn patchset
1f3217
- Resolves: #1910092
1f3217
9bd4d2
* Wed Dec 01 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 2.68.4-3
9bd4d2
- Fix GNetworkMonitor after NetworkManager D-Bus API changes
9bd4d2
- Resolves: #2014624
9bd4d2
3ced12
* Wed Sep 15 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 2.68.4-2
3ced12
- Fix g_get_user_database_entry() crash when used with nss-systemd
3ced12
- Resolves: #2004711
3ced12
4073ae
* Sat Aug 21 2021 Kalev Lember <klember@redhat.com> - 2.68.4-1
4073ae
- Update to 2.68.4
4073ae
4073ae
* Wed Aug 18 2021 DJ Delorie <dj@redhat.com> - 2.68.3-6
4073ae
- Rebuilt for libffi 3.4.2 SONAME transition.
4073ae
  Related: rhbz#1891914
4073ae
4073ae
* Tue Aug 17 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 2.68.3-5
4073ae
- Backport GPowerProfileMonitor
4073ae
- Resolves: #1994466
4073ae
4073ae
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.68.3-4
4073ae
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
4073ae
  Related: rhbz#1991688
4073ae
4073ae
* Tue Jul 27 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 2.68.3-3
4073ae
- Fix build with glibc 2.34
4073ae
- Resolves: #1984626
4073ae
4073ae
* Thu Jul 01 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 2.68.3-2
4073ae
- Refresh gnutls-hmac patchset to fix leaks in error path
4073ae
- Related: #1971823
4073ae
4073ae
* Mon Jun 28 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 2.68.3-1
4073ae
- Update to 2.68.3
4073ae
- Resolves: #1976713
4073ae
- Remove Recommends: shared-mime-info
4073ae
- Resolves: #1947897
4073ae
4073ae
* Wed Jun 23 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 2.68.2-2
4073ae
- Update GHmac patchset and reenable glib2-static
4073ae
- Resolves: #1971823
4073ae
4073ae
* Wed May 19 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 2.68.2-1
4073ae
- Update to 2.68.2
4073ae
- Resolves: #1961039
4073ae
4073ae
* Tue May 11 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 2.68.1-4
4073ae
- No changes, bump revision to retry gating
4073ae
- Related: #1951126
4073ae
4073ae
* Fri May 07 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 2.68.1-3
4073ae
- Add missing bundled provides
4073ae
- Add rpminspect gating configuration
4073ae
- Consolidate GDesktopAppInfo patchset
4073ae
- Resolves: #1951126
4073ae
4073ae
* Wed Apr 28 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 2.68.1-2
4073ae
- Refresh GDesktopAppInfo patchset
4073ae
- Related: #1951126
4073ae
4073ae
* Thu Apr 22 2021 Kalev Lember <klember@redhat.com> - 2.68.1-1
4073ae
- Update to 2.68.1
4073ae
4073ae
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 2.68.0-3
4073ae
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
4073ae
4073ae
* Fri Mar 26 2021 Kalev Lember <klember@redhat.com> - 2.68.0-2
4073ae
- Rebuild to fix sysprof-capture symbols leaking into libraries consuming it
4073ae
4073ae
* Thu Mar 18 2021 Kalev Lember <klember@redhat.com> - 2.68.0-1
4073ae
- Update to 2.68.0
4073ae
4073ae
* Thu Mar 18 2021 Petr Pisar <ppisar@redhat.com> - 2.67.6-2
4073ae
- Disable debugging glib (bug #1936339)
4073ae
4073ae
* Thu Mar 11 2021 Kalev Lember <klember@redhat.com> - 2.67.6-1
4073ae
- Update to 2.67.6
4073ae
4073ae
* Tue Mar 02 2021 Kalev Lember <klember@redhat.com> - 2.67.5-1
4073ae
- Update to 2.67.5
4073ae
4073ae
* Wed Feb 24 2021 Kalev Lember <klember@redhat.com> - 2.67.4-3
4073ae
- Enable sysprof capture support
4073ae
4073ae
* Fri Feb 19 2021 Kalev Lember <klember@redhat.com> - 2.67.4-2
4073ae
- Backport a fix for gsubprocesslauncher regression
4073ae
4073ae
* Tue Feb 16 2021 Kalev Lember <klember@redhat.com> - 2.67.4-1
4073ae
- Update to 2.67.4
4073ae
4073ae
* Tue Feb 09 2021 Benjamin Berg <bberg@redhat.com> - 2.67.3-2
4073ae
- Add patches to move applications into systemd scopes
4073ae
4073ae
* Thu Feb 04 2021 Kalev Lember <klember@redhat.com> - 2.67.3-1
4073ae
- Update to 2.67.3
4073ae
- Fix gtk-doc directory ownership
4073ae
4073ae
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.67.1-4
4073ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
4073ae
4073ae
* Fri Jan 22 2021 Peter Robinson <pbrobinson@fedoraproject.org> - 2.67.1-3
4073ae
- Drop dependency on gamin
4073ae
4073ae
* Sat Dec 19 2020 Kevin Fenzi <kevin@scrye.com> - 2.67.1-2
4073ae
- Add already upstream patch to fix gdm crasher.
4073ae
4073ae
* Sat Dec 19 2020 Kalev Lember <klember@redhat.com> - 2.67.1-1
4073ae
- Update to 2.67.1
4073ae
4073ae
* Fri Dec 04 2020 Ondrej Holy <oholy@redhat.com> - 2.67.0-7
4073ae
- Explicitly create modules dir to fix ELN build
4073ae
4073ae
* Tue Dec 01 2020 Ondrej Holy and Michael Catanzaro <mcatanzaro@redhat.com> - 2.67.0-6
4073ae
- Disable glib2-fam in RHEL
4073ae
4073ae
* Tue Nov 24 2020 Kalev Lember <klember@redhat.com> - 2.67.0-5
4073ae
- Backport upstream patches to fix invalid use of volatile objects
4073ae
  (gcc 11 support)
4073ae
4073ae
* Wed Nov 11 2020 Michael Catanzaro <mcatanzaro@redhat.com> - 2.67.0-4
4073ae
- Make GnuTLS patch RHEL-specific, and make glib2-static subpackage Fedora-specific
4073ae
4073ae
* Tue Nov 10 2020 Michael Catanzaro <mcatanzaro@redhat.com> - 2.67.0-3
4073ae
- Use GnuTLS to implement GHmac (thanks to Colin Walters)
4073ae
4073ae
* Wed Nov 04 2020 Michael Catanzaro <mcatanzaro@redhat.com> - 2.67.0-2
4073ae
- Backport fix for GSocketClient crash
4073ae
4073ae
* Thu Oct 29 2020 Kalev Lember <klember@redhat.com> - 2.67.0-1
4073ae
- Update to 2.67.0
4073ae
4073ae
* Mon Oct 19 2020 Kalev Lember <klember@redhat.com> - 2.66.2-1
4073ae
- Update to 2.66.2
4073ae
- Drop gtk-doc patch as we finally have a new enough gtk-doc
4073ae
4073ae
* Wed Oct 14 2020 Michael Catanzaro <mcatanzaro@redhat.com> - 2.66.1-3
4073ae
- Fix yet another timezone bug
4073ae
4073ae
* Wed Oct 14 2020 Michael Catanzaro <mcatanzaro@redhat.com> - 2.66.1-2
4073ae
- Fix timezone-related bugs in many applications caused by new glib timezone cache
4073ae
4073ae
* Thu Oct  1 2020 Kalev Lember <klember@redhat.com> - 2.66.1-1
4073ae
- Update to 2.66.1
4073ae
4073ae
* Thu Sep 10 2020 Kalev Lember <klember@redhat.com> - 2.66.0-1
4073ae
- Update to 2.66.0
4073ae
4073ae
* Wed Sep 02 2020 Kalev Lember <klember@redhat.com> - 2.65.3-1
4073ae
- Update to 2.65.3
4073ae
4073ae
* Tue Aug 25 2020 Adam Williamson <awilliam@redhat.com> - 2.65.2-3
4073ae
- Backport fix for GGO #2189 (error accessing some filesystems)
4073ae
4073ae
* Thu Aug 20 2020 Jeff Law <law@redhat.com> - 2.65.2-2
4073ae
- Re-enable LTO
4073ae
4073ae
* Tue Aug 18 2020 Kalev Lember <klember@redhat.com> - 2.65.2-1
4073ae
- Update to 2.65.2
4073ae
4073ae
* Mon Aug 17 2020 Kalev Lember <klember@redhat.com> - 2.65.1-1
4073ae
- Update to 2.65.1
4073ae
4073ae
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.65.0-5
4073ae
- Second attempt - Rebuilt for
4073ae
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
4073ae
4073ae
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.65.0-4
4073ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
4073ae
4073ae
* Tue Jun 30 2020 Jeff Law <aw@redhat.com> - 2.65.0-3
4073ae
Disable LTO
4073ae
4073ae
* Mon Jun 22 2020 Kalev Lember <klember@redhat.com> - 2.65.0-2
4073ae
- Update gio-2.0.pc with correct gio-querymodules name when renaming it
4073ae
  (#1849441)
4073ae
4073ae
* Mon Jun 22 2020 Kalev Lember <klember@redhat.com> - 2.65.0-1
4073ae
- Update to 2.65.0
4073ae
4073ae
* Wed May 20 2020 Kalev Lember <klember@redhat.com> - 2.64.3-1
4073ae
- Update to 2.64.3
4073ae
4073ae
* Tue Apr 28 2020 Tomas Popela <tpopela@redhat.com> - 2.64.2-2
4073ae
- Backport fix for a race condition in GCancellable (rhbz#1825230)
4073ae
4073ae
* Fri Apr 10 2020 Kalev Lember <klember@redhat.com> - 2.64.2-1
4073ae
- Update to 2.64.2
4073ae
4073ae
* Wed Mar 11 2020 Kalev Lember <klember@redhat.com> - 2.64.1-1
4073ae
- Update to 2.64.1
4073ae
4073ae
* Mon Mar 02 2020 Kalev Lember <klember@redhat.com> - 2.64.0-1
4073ae
- Update to 2.64.0
4073ae
4073ae
* Mon Feb 24 2020 Kalev Lember <klember@redhat.com> - 2.63.6-1
4073ae
- Update to 2.63.6
4073ae
4073ae
* Wed Feb 12 2020 Kalev Lember <klember@redhat.com> - 2.63.5-3
4073ae
- Backport a patch to work around SELinux policies not allowing
4073ae
  SYS_sched_setattr (#1795524)
4073ae
4073ae
* Fri Feb 07 2020 Michael Catanzaro <mcatanzaro@redhat.com> - 2.63.5-2
4073ae
- Add patch for CVE-2020-6750 and related issues.
4073ae
4073ae
* Mon Feb 03 2020 Kalev Lember <klember@redhat.com> - 2.63.5-1
4073ae
- Update to 2.63.5
4073ae
4073ae
* Wed Jan 29 2020 Stephen Gallagher <sgallagh@redhat.com> - 2.63.4-3
4073ae
- Fix GThreadPool initialization that is breaking createrepo_c (BZ #1795052)
4073ae
4073ae
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.63.4-2
4073ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
4073ae
4073ae
* Fri Jan 24 2020 Kalev Lember <klember@redhat.com> - 2.63.4-1
4073ae
- Update to 2.63.4
4073ae
4073ae
* Mon Dec 16 2019 Kalev Lember <klember@redhat.com> - 2.63.3-1
4073ae
- Update to 2.63.3
4073ae
4073ae
* Mon Dec 02 2019 Kalev Lember <klember@redhat.com> - 2.63.2-1
4073ae
- Update to 2.63.2
4073ae
4073ae
* Fri Oct 04 2019 Kalev Lember <klember@redhat.com> - 2.63.0-1
4073ae
- Update to 2.63.0
4073ae
4073ae
* Fri Oct 04 2019 Kalev Lember <klember@redhat.com> - 2.62.1-1
4073ae
- Update to 2.62.1
4073ae
4073ae
* Fri Sep 06 2019 Kalev Lember <klember@redhat.com> - 2.62.0-1
4073ae
- Update to 2.62.0
4073ae
4073ae
* Tue Sep 03 2019 Kalev Lember <klember@redhat.com> - 2.61.3-1
4073ae
- Update to 2.61.3
4073ae
4073ae
* Mon Aug 12 2019 Kalev Lember <klember@redhat.com> - 2.61.2-1
4073ae
- Update to 2.61.2
4073ae
4073ae
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.61.1-3
4073ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
4073ae
4073ae
* Tue Jun 11 2019 David King <amigadave@amigadave.com> - 2.61.1-2
4073ae
- Fix CVE-2019-12450 (#1719142)
4073ae
- Consistently use buildroot macro
4073ae
4073ae
* Fri May 24 2019 Kalev Lember <klember@redhat.com> - 2.61.1-1
4073ae
- Update to 2.61.1
4073ae
4073ae
* Tue Apr 16 2019 Adam Williamson <awilliam@redhat.com> - 2.61.0-2
4073ae
- Rebuild with Meson fix for #1699099
4073ae
4073ae
* Mon Apr 15 2019 Kalev Lember <klember@redhat.com> - 2.61.0-1
4073ae
- Update to 2.61.0
4073ae
4073ae
* Mon Apr 15 2019 Kalev Lember <klember@redhat.com> - 2.60.1-1
4073ae
- Update to 2.60.1
4073ae
4073ae
* Wed Mar 13 2019 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.60.0-3
4073ae
- Switch back to timestamp-based pyc invalidation mode
4073ae
4073ae
* Wed Mar  6 2019 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.60.0-2
4073ae
- Make sure all .py files have fixed timestamps (fixes issue with
4073ae
  parallel installability of i686 and amd64 -devel packages)
4073ae
- Switch to explicit byte compilation to override invalidation mode
4073ae
4073ae
* Mon Mar 04 2019 Kalev Lember <klember@redhat.com> - 2.60.0-1
4073ae
- Update to 2.60.0
4073ae
4073ae
* Mon Feb 18 2019 Kalev Lember <klember@redhat.com> - 2.59.3-1
4073ae
- Update to 2.59.3
4073ae
4073ae
* Mon Feb 04 2019 Kalev Lember <klember@redhat.com> - 2.59.2-1
4073ae
- Update to 2.59.2
4073ae
4073ae
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.59.1-2
4073ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
4073ae
4073ae
* Sat Jan 26 2019 Kalev Lember <klember@redhat.com> - 2.59.1-1
4073ae
- Update to 2.59.1
4073ae
4073ae
* Thu Jan 03 2019 Kalev Lember <klember@redhat.com> - 2.59.0-1
4073ae
- Update to 2.59.0
4073ae
- Switch to the meson build system
4073ae
4073ae
* Tue Dec 18 2018 Kalev Lember <klember@redhat.com> - 2.58.2-1
4073ae
- Update to 2.58.2
4073ae
4073ae
* Fri Oct 05 2018 Kalev Lember <klember@redhat.com> - 2.58.1-2
4073ae
- Fix multilib -devel installs (#1634778)
4073ae
4073ae
* Fri Sep 21 2018 Kalev Lember <klember@redhat.com> - 2.58.1-1
4073ae
- Update to 2.58.1
4073ae
4073ae
* Wed Sep 05 2018 Kalev Lember <klember@redhat.com> - 2.58.0-1
4073ae
- Update to 2.58.0
4073ae
4073ae
* Thu Aug 2 2018 Ondrej Holy <oholy@redhat.com> - 2.57.2-1
4073ae
- Update to 2.57.2
4073ae
4073ae
* Fri Jul 20 2018 Ondrej Holy <oholy@redhat.com> - 2.57.1-1
4073ae
- Update to 2.57.1
4073ae
4073ae
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.56.1-6
4073ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
4073ae
4073ae
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 2.56.1-5
4073ae
- Rebuilt for Python 3.7
4073ae
4073ae
* Thu Jun 14 2018 Debarshi Ray <rishi@fedoraproject.org> - 2.56.1-4
4073ae
- Backport patch to fix possible invalid pointer in dbus callback in the FD.o
4073ae
  notification backend (RH #1584916)
4073ae
4073ae
* Sun May 27 2018 Kalev Lember <klember@redhat.com> - 2.56.1-3
4073ae
- Fix multilib -devel installs (#1581067)
4073ae
4073ae
* Sun May 13 2018 Fabio Valentini <decathorpe@gmail.com> - 2.56.1-2
4073ae
- Include upstream patch to fix gdbus-codegen with meson 0.46.
4073ae
4073ae
* Sun Apr 08 2018 Kalev Lember <klember@redhat.com> - 2.56.1-1
4073ae
- Update to 2.56.1
4073ae
4073ae
* Mon Mar 12 2018 Kalev Lember <klember@redhat.com> - 2.56.0-1
4073ae
- Update to 2.56.0
4073ae
4073ae
* Wed Feb 07 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.55.2-3
4073ae
- Undo disabling mangling
4073ae
4073ae
* Wed Feb 07 2018 Kalev Lember <klember@redhat.com> - 2.55.2-2
4073ae
- Disable brp-mangle-shebangs shebangs
4073ae
4073ae
* Wed Feb 07 2018 Kalev Lember <klember@redhat.com> - 2.55.2-1
4073ae
- Update to 2.55.2
4073ae
- Drop ldconfig scriptlets
4073ae
4073ae
* Wed Jan 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.55.1-3
4073ae
- Switch to %%ldconfig_scriptlets
4073ae
4073ae
* Thu Jan 18 2018 Kalev Lember <klember@redhat.com> - 2.55.1-2
4073ae
- gmain: Partial revert of recent wakeup changes
4073ae
4073ae
* Mon Jan 08 2018 Kalev Lember <klember@redhat.com> - 2.55.1-1
4073ae
- Update to 2.55.1
4073ae
- Drop upstreamed systemtap multilib fix
4073ae
4073ae
* Tue Dec 19 2017 Kalev Lember <klember@redhat.com> - 2.55.0-1
4073ae
- Update to 2.55.0
4073ae
4073ae
* Wed Nov 01 2017 Kalev Lember <klember@redhat.com> - 2.54.2-1
4073ae
- Update to 2.54.2
4073ae
4073ae
* Fri Oct 06 2017 Kalev Lember <klember@redhat.com> - 2.54.1-1
4073ae
- Update to 2.54.1
4073ae
4073ae
* Mon Sep 11 2017 Kalev Lember <klember@redhat.com> - 2.54.0-1
4073ae
- Update to 2.54.0
4073ae
4073ae
* Tue Sep 05 2017 Kalev Lember <klember@redhat.com> - 2.53.7-1
4073ae
- Update to 2.53.7
4073ae
4073ae
* Sat Aug 19 2017 Kalev Lember <klember@redhat.com> - 2.53.6-1
4073ae
- Update to 2.53.6
4073ae
4073ae
* Mon Aug 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.53.5-1
4073ae
- Update to 2.53.5
4073ae
4073ae
* Tue Aug 01 2017 Kalev Lember <klember@redhat.com> - 2.53.4-4
4073ae
- Backport glib-mkenums flags annotation parsing fixes
4073ae
4073ae
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.53.4-3
4073ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
4073ae
4073ae
* Fri Jul 21 2017 Kalev Lember <klember@redhat.com> - 2.53.4-2
4073ae
- Revert a GKeyFile introspection ABI change
4073ae
4073ae
* Tue Jul 18 2017 Kalev Lember <klember@redhat.com> - 2.53.4-1
4073ae
- Update to 2.53.4
4073ae
4073ae
* Thu Jun 22 2017 Kalev Lember <klember@redhat.com> - 2.53.3-1
4073ae
- Update to 2.53.3
4073ae
4073ae
* Thu Jun 8 2017 Owen Taylor <otaylor@redhat.com> - 2.53.2-2
4073ae
- Make triggers also compile schemas in /app/share/glib-2.0/schemas
4073ae
4073ae
* Wed May 24 2017 Florian Müllner <fmuellner@redhat.com> - 2.53.2-1
4073ae
- Update to 2.53.2
4073ae
4073ae
* Mon May 15 2017 Kalev Lember <klember@redhat.com> - 2.52.2-2
4073ae
- Backport a gmain GWakeup patch to fix timedatex high CPU usage (#1450628)
4073ae
4073ae
* Tue May 09 2017 Kalev Lember <klember@redhat.com> - 2.52.2-1
4073ae
- Update to 2.52.2
4073ae
4073ae
* Tue Apr 11 2017 Colin Walters <walters@verbum.org> - 2.52.1-3
4073ae
- Backport patches for gmain wakeup for qemu
4073ae
  See: https://bugzilla.gnome.org/show_bug.cgi?id=761102
4073ae
4073ae
* Tue Apr 11 2017 Colin Walters <walters@verbum.org> - 2.52.1-2
4073ae
- Explictly remove PCRE sources
4073ae
- Related: https://bugzilla.redhat.com/show_bug.cgi?id=1324770
4073ae
4073ae
* Tue Apr 11 2017 Kalev Lember <klember@redhat.com> - 2.52.1-1
4073ae
- Update to 2.52.1
4073ae
4073ae
* Mon Mar 20 2017 Kalev Lember <klember@redhat.com> - 2.52.0-1
4073ae
- Update to 2.52.0
4073ae
4073ae
* Thu Mar 16 2017 Kalev Lember <klember@redhat.com> - 2.51.5-1
4073ae
- Update to 2.51.5
4073ae
4073ae
* Thu Mar 02 2017 Kalev Lember <klember@redhat.com> - 2.51.4-2
4073ae
- Remove the dependency on dbus-launch again (#927212)
4073ae
4073ae
* Wed Mar 01 2017 David King <amigadave@amigadave.com> - 2.51.4-1
4073ae
- Update to 2.51.4
4073ae
- Add a Requires on dbus-launch (#927212)
4073ae
- Use pkgconfig for BuildRequires
4073ae
4073ae
* Tue Feb 14 2017 Richard Hughes <rhughes@redhat.com> - 2.51.2-1
4073ae
- Update to 2.51.2
4073ae
4073ae
* Mon Feb 13 2017 Richard Hughes <rhughes@redhat.com> - 2.51.1-1
4073ae
- Update to 2.51.1
4073ae
4073ae
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.51.0-3
4073ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
4073ae
4073ae
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 2.51.0-2
4073ae
- Rebuild for Python 3.6
4073ae
4073ae
* Sun Oct 30 2016 Kalev Lember <klember@redhat.com> - 2.51.0-1
4073ae
- Update to 2.51.0
4073ae
4073ae
* Wed Oct 12 2016 Kalev Lember <klember@redhat.com> - 2.50.1-1
4073ae
- Update to 2.50.1
4073ae
4073ae
* Mon Sep 19 2016 Kalev Lember <klember@redhat.com> - 2.50.0-1
4073ae
- Update to 2.50.0
4073ae
4073ae
* Tue Sep 13 2016 Kalev Lember <klember@redhat.com> - 2.49.7-1
4073ae
- Update to 2.49.7
4073ae
- Don't set group tags
4073ae
4073ae
* Sun Aug 28 2016 Kalev Lember <klember@redhat.com> - 2.49.6-1
4073ae
- Update to 2.49.6
4073ae
4073ae
* Thu Aug 18 2016 Kalev Lember <klember@redhat.com> - 2.49.5-1
4073ae
- Update to 2.49.5
4073ae
- Own /usr/share/gdb and /usr/share/systemtap directories
4073ae
4073ae
* Tue Aug 16 2016 Miro Hrončok <mhroncok@redhat.com> - 2.49.4-3
4073ae
- Use Python 3 for the RPM Python byte compilation
4073ae
4073ae
* Wed Jul 27 2016 Ville Skyttä <ville.skytta@iki.fi> - 2.49.4-2
4073ae
- Switch to Python 3 (#1286284)
4073ae
4073ae
* Thu Jul 21 2016 Kalev Lember <klember@redhat.com> - 2.49.4-1
4073ae
- Update to 2.49.4
4073ae
4073ae
* Sun Jul 17 2016 Kalev Lember <klember@redhat.com> - 2.49.3-1
4073ae
- Update to 2.49.3
4073ae
4073ae
* Wed Jun 22 2016 Richard Hughes <rhughes@redhat.com> - 2.49.2-1
4073ae
- Update to 2.49.2
4073ae
4073ae
* Wed Jun 01 2016 Yaakov Selkowitz <yselkowi@redhat.com> - 2.49.1-2
4073ae
- Soften shared-mime-info dependency (#1266118)
4073ae
4073ae
* Fri May 27 2016 Florian Müllner <fmuellner@redhat.com> - 2.49.1-1
4073ae
- Update to 2.49.1
4073ae
4073ae
* Tue May 10 2016 Kalev Lember <klember@redhat.com> - 2.48.1-1
4073ae
- Update to 2.48.1
4073ae
4073ae
* Wed Apr 06 2016 Colin Walters <walters@redhat.com> - 2.48.0-2
4073ae
- Explicitly require system pcre, though we happened to default to this now
4073ae
  anyways due to something else pulling PCRE into the buildroot
4073ae
  Closes rhbz#1287266
4073ae
4073ae
* Tue Mar 22 2016 Kalev Lember <klember@redhat.com> - 2.48.0-1
4073ae
- Update to 2.48.0
4073ae
4073ae
* Thu Mar 17 2016 Richard Hughes <rhughes@redhat.com> - 2.47.92-1
4073ae
- Update to 2.47.92
4073ae
4073ae
* Wed Feb 24 2016 Colin Walters <walters@redhat.com> - 2.47.6.19.gad2092b-2
4073ae
- git snapshot to work around https://bugzilla.gnome.org/show_bug.cgi?id=762637
4073ae
- Add --with-python=/usr/bin/python explicitly to hopefully fix a weird
4073ae
  issue I am seeing where librepo fails to build in epel7 with this due to
4073ae
  us requiring /bin/python.
4073ae
4073ae
* Wed Feb 17 2016 Richard Hughes <rhughes@redhat.com> - 2.47.6-1
4073ae
- Update to 2.47.6
4073ae
4073ae
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.47.5-2
4073ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
4073ae
4073ae
* Tue Jan 19 2016 David King <amigadave@amigadave.com> - 2.47.5-1
4073ae
- Update to 2.47.5
4073ae
4073ae
* Wed Dec 16 2015 Kalev Lember <klember@redhat.com> - 2.47.4-1
4073ae
- Update to 2.47.4
4073ae
4073ae
* Wed Nov 25 2015 Kalev Lember <klember@redhat.com> - 2.47.3-1
4073ae
- Update to 2.47.3
4073ae
4073ae
* Wed Nov 25 2015 Kalev Lember <klember@redhat.com> - 2.47.2-1
4073ae
- Update to 2.47.2
4073ae
4073ae
* Mon Nov 09 2015 Kevin Fenzi <kevin@scrye.com> - 2.47.1-2
4073ae
- Add full path redirect output to null and || : to triggers.
4073ae
4073ae
* Wed Oct 28 2015 Kalev Lember <klember@redhat.com> - 2.47.1-1
4073ae
- Update to 2.47.1
4073ae
4073ae
* Mon Oct 19 2015 Kalev Lember <klember@redhat.com> - 2.46.1-2
4073ae
- Backport an upstream fix for app launching under wayland (#1273146)
4073ae
4073ae
* Wed Oct 14 2015 Kalev Lember <klember@redhat.com> - 2.46.1-1
4073ae
- Update to 2.46.1
4073ae
4073ae
* Mon Sep 21 2015 Kalev Lember <klember@redhat.com> - 2.46.0-1
4073ae
- Update to 2.46.0
4073ae
4073ae
* Mon Sep 14 2015 Kalev Lember <klember@redhat.com> - 2.45.8-1
4073ae
- Update to 2.45.8
4073ae
4073ae
* Tue Sep 01 2015 Kalev Lember <klember@redhat.com> - 2.45.7-1
4073ae
- Update to 2.45.7
4073ae
4073ae
* Wed Aug 19 2015 Kalev Lember <klember@redhat.com> - 2.45.6-1
4073ae
- Update to 2.45.6
4073ae
4073ae
* Wed Aug 19 2015 Kalev Lember <klember@redhat.com> - 2.45.5-1
4073ae
- Update to 2.45.5
4073ae
4073ae
* Fri Aug 14 2015 Matthias Clasen <mclasen@redhat.com> - 2.45.4-2
4073ae
- Add file triggers for gio modules and gsettings schemas
4073ae
4073ae
* Tue Jul 21 2015 David King <amigadave@amigadave.com> - 2.45.4-1
4073ae
- Update to 2.45.4
4073ae
4073ae
* Wed Jun 24 2015 Kalev Lember <klember@redhat.com> - 2.45.3-2
4073ae
- Backport a patch to fix notification withdrawing in gnome-software
4073ae
4073ae
* Wed Jun 24 2015 David King <amigadave@amigadave.com> - 2.45.3-1
4073ae
- Update to 2.45.3
4073ae
4073ae
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.45.2-2
4073ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
4073ae
4073ae
* Tue May 26 2015 David King <amigadave@amigadave.com> - 2.45.2-1
4073ae
- Update to 2.45.2
4073ae
4073ae
* Thu Apr 30 2015 Kalev Lember <kalevlember@gmail.com> - 2.45.1-1
4073ae
- Update to 2.45.1
4073ae
4073ae
* Mon Mar 23 2015 Kalev Lember <kalevlember@gmail.com> - 2.44.0-1
4073ae
- Update to 2.44.0
4073ae
4073ae
* Tue Mar 17 2015 Kalev Lember <kalevlember@gmail.com> - 2.43.92-1
4073ae
- Update to 2.43.92
4073ae
4073ae
* Mon Mar 02 2015 Kalev Lember <kalevlember@gmail.com> - 2.43.91-1
4073ae
- Update to 2.43.91
4073ae
4073ae
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.43.90-2
4073ae
- Rebuilt for Fedora 23 Change
4073ae
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
4073ae
4073ae
* Wed Feb 18 2015 David King <amigadave@amigadave.com> - 2.43.90-1
4073ae
- Update to 2.43.90
4073ae
- Update man pages glob in files section
4073ae
4073ae
* Tue Feb 10 2015 Matthias Clasen <mclasen@redhat.com> - 2.43.4-1
4073ae
- Update to 2.43.4
4073ae
4073ae
* Tue Jan 20 2015 David King <amigadave@amigadave.com> - 2.43.3-1
4073ae
- Update to 2.43.3
4073ae
4073ae
* Wed Dec 17 2014 Kalev Lember <kalevlember@gmail.com> - 2.43.2-1
4073ae
- Update to 2.43.2
4073ae
4073ae
* Tue Nov 25 2014 Kalev Lember <kalevlember@gmail.com> - 2.43.1-1
4073ae
- Update to 2.43.1
4073ae
4073ae
* Thu Oct 30 2014 Florian Müllner <fmuellner@redhat.com> - 2.43.0-1
4073ae
- Update to 2.43.0
4073ae
4073ae
* Mon Sep 22 2014 Kalev Lember <kalevlember@gmail.com> - 2.42.0-1
4073ae
- Update to 2.42.0
4073ae
4073ae
* Tue Sep 16 2014 Kalev Lember <kalevlember@gmail.com> - 2.41.5-1
4073ae
- Update to 2.41.5
4073ae
4073ae
* Thu Sep  4 2014 Matthias Clasen <mclasen@redhat.com> 2.41.4-3
4073ae
- Don't remove rpath from gdbus-peer test - it doesn't work without it
4073ae
4073ae
* Thu Sep 04 2014 Bastien Nocera <bnocera@redhat.com> 2.41.4-2
4073ae
- Fix banshee getting selected as the default movie player
4073ae
4073ae
* Tue Sep 02 2014 Kalev Lember <kalevlember@gmail.com> - 2.41.4-1
4073ae
- Update to 2.41.4
4073ae
4073ae
* Sat Aug 16 2014 Kalev Lember <kalevlember@gmail.com> - 2.41.3-1
4073ae
- Update to 2.41.3
4073ae
4073ae
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.41.2-3
4073ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
4073ae
4073ae
* Wed Jul 23 2014 Stef Walter <stefw@redhat.com> - 2.41.2-2
4073ae
- Fix regression with GDBus array encoding rhbz#1122128
4073ae
4073ae
* Mon Jul 14 2014 Kalev Lember <kalevlember@gmail.com> - 2.41.2-1
4073ae
- Update to 2.41.2
4073ae
4073ae
* Sat Jul 12 2014 Tom Callaway <spot@fedoraproject.org> - 2.41.1-2
4073ae
- fix license handling
4073ae
4073ae
* Tue Jun 24 2014 Richard Hughes <rhughes@redhat.com> - 2.41.1-1
4073ae
- Update to 2.41.1
4073ae
4073ae
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.41.0-2
4073ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
4073ae
4073ae
* Tue May 27 2014 Kalev Lember <kalevlember@gmail.com> - 2.41.0-1
4073ae
- Update to 2.41.0
4073ae
4073ae
* Mon Mar 24 2014 Richard Hughes <rhughes@redhat.com> - 2.40.0-1
4073ae
- Update to 2.40.0
4073ae
4073ae
* Tue Mar 18 2014 Richard Hughes <rhughes@redhat.com> - 2.39.92-1
4073ae
- Update to 2.39.92
4073ae
4073ae
* Tue Mar 04 2014 Richard Hughes <rhughes@redhat.com> - 2.39.91-1
4073ae
- Update to 2.39.91
4073ae
4073ae
* Tue Feb 18 2014 Richard Hughes <rhughes@redhat.com> - 2.39.90-1
4073ae
- Update to 2.39.90
4073ae
4073ae
* Tue Feb 04 2014 Richard Hughes <rhughes@redhat.com> - 2.39.4-1
4073ae
- Update to 2.39.4
4073ae
4073ae
* Tue Jan 14 2014 Richard Hughes <rhughes@redhat.com> - 2.39.3-1
4073ae
- Update to 2.39.3
4073ae
4073ae
* Sun Dec 22 2013 Richard W.M. Jones <rjones@redhat.com> - 2.39.2-2
4073ae
- Re-add static subpackage so that we can build static qemu as
4073ae
  an AArch64 binfmt.
4073ae
4073ae
* Tue Dec 17 2013 Richard Hughes <rhughes@redhat.com> - 2.39.2-1
4073ae
- Update to 2.39.2
4073ae
4073ae
* Mon Dec 09 2013 Richard Hughes <rhughes@redhat.com> - 2.39.1-2
4073ae
- Backport a patch from master to stop gnome-settings-daemon crashing.
4073ae
4073ae
* Thu Nov 14 2013 Richard Hughes <rhughes@redhat.com> - 2.39.1-1
4073ae
- Update to 2.39.1
4073ae
4073ae
* Mon Oct 28 2013 Richard Hughes <rhughes@redhat.com> - 2.39.0-1
4073ae
- Update to 2.39.0
4073ae
4073ae
* Tue Sep 24 2013 Kalev Lember <kalevlember@gmail.com> - 2.38.0-1
4073ae
- Update to 2.38.0
4073ae
4073ae
* Tue Sep 17 2013 Kalev Lember <kalevlember@gmail.com> - 2.37.93-1
4073ae
- Update to 2.37.93
4073ae
4073ae
* Mon Sep 02 2013 Kalev Lember <kalevlember@gmail.com> - 2.37.7-1
4073ae
- Update to 2.37.7
4073ae
4073ae
* Wed Aug 21 2013 Debarshi Ray <rishi@fedoraproject.org> - 2.37.6-1
4073ae
- Update to 2.37.6
4073ae
4073ae
* Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 2.37.5-2
4073ae
- Perl 5.18 rebuild
4073ae
4073ae
* Thu Aug  1 2013 Debarshi Ray <rishi@fedoraproject.org> - 2.37.5-1
4073ae
- Update to 2.37.5
4073ae
4073ae
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 2.37.4-2
4073ae
- Perl 5.18 rebuild
4073ae
4073ae
* Tue Jul  9 2013 Matthias Clasen <mclasen@redhat.com> - 2.37.4-1
4073ae
- Update to 2.37.4
4073ae
4073ae
* Thu Jun 20 2013 Debarshi Ray <rishi@fedoraproject.org> - 2.37.2-1
4073ae
- Update to 2.37.2
4073ae
4073ae
* Tue May 28 2013 Matthias Clasen <mclasen@redhat.com> - 2.37.1-1
4073ae
- Update to 2.37.1
4073ae
- Add a tests subpackage
4073ae
4073ae
* Sat May 04 2013 Kalev Lember <kalevlember@gmail.com> - 2.37.0-1
4073ae
- Update to 2.37.0
4073ae
4073ae
* Sat Apr 27 2013 Thorsten Leemhuis <fedora@leemhuis.info> - 2.36.1-2
4073ae
- Fix pidgin freezes by applying patch from master (#956872)
4073ae
4073ae
* Mon Apr 15 2013 Kalev Lember <kalevlember@gmail.com> - 2.36.1-1
4073ae
- Update to 2.36.1
4073ae
4073ae
* Mon Mar 25 2013 Kalev Lember <kalevlember@gmail.com> - 2.36.0-1
4073ae
- Update to 2.36.0
4073ae
4073ae
* Tue Mar 19 2013 Matthias Clasen <mclasen@redhat.com> - 2.35.9-1
4073ae
- Update to 2.35.9
4073ae
4073ae
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 2.35.8-1
4073ae
- Update to 2.35.8
4073ae
4073ae
* Tue Feb 05 2013 Kalev Lember <kalevlember@gmail.com> - 2.35.7-1
4073ae
- Update to 2.35.7
4073ae
4073ae
* Tue Jan 15 2013 Matthias Clasen <mclasen@redhat.com> - 2.35.4-1
4073ae
- Update to 2.35.4
4073ae
4073ae
* Thu Dec 20 2012 Kalev Lember <kalevlember@gmail.com> - 2.35.3-1
4073ae
- Update to 2.35.3
4073ae
4073ae
* Sat Nov 24 2012 Kalev Lember <kalevlember@gmail.com> - 2.35.2-1
4073ae
- Update to 2.35.2
4073ae
4073ae
* Thu Nov 08 2012 Kalev Lember <kalevlember@gmail.com> - 2.35.1-1
4073ae
- Update to 2.35.1
4073ae
- Drop upstreamed codegen-in-datadir.patch