407148
%global _changelog_trimtime %(date +%s -d "1 year ago")
407148
407148
# See https://fedoraproject.org/wiki/Packaging:Python_Appendix#Manual_byte_compilation
407148
%global __python %{__python3}
407148
407148
Name: glib2
407148
Version: 2.56.4
d896e1
Release: 8%{?dist}
407148
Summary: A library of handy utility functions
407148
407148
License: LGPLv2+
407148
URL: http://www.gtk.org
407148
Source0: http://download.gnome.org/sources/glib/2.56/glib-%{version}.tar.xz
407148
51ad59
# https://gitlab.gnome.org/GNOME/glib/merge_requests/903
51ad59
# https://bugzilla.redhat.com/show_bug.cgi?id=1630260
51ad59
Patch37: ghmac-gnutls.patch
51ad59
# And the BR for this
51ad59
BuildRequires: pkgconfig(gnutls)
51ad59
407148
BuildRequires: chrpath
407148
BuildRequires: gettext
407148
BuildRequires: perl-interpreter
407148
# for sys/inotify.h
407148
BuildRequires: glibc-devel
407148
BuildRequires: libattr-devel
407148
BuildRequires: libselinux-devel
407148
# for sys/sdt.h
407148
BuildRequires: systemtap-sdt-devel
407148
BuildRequires: pkgconfig(libelf)
407148
BuildRequires: pkgconfig(libffi)
407148
BuildRequires: pkgconfig(libpcre)
407148
BuildRequires: pkgconfig(mount)
407148
BuildRequires: pkgconfig(zlib)
407148
# Bootstrap build requirements
407148
BuildRequires: automake autoconf libtool
407148
BuildRequires: gtk-doc
407148
BuildRequires: python3-devel
407148
407148
# for GIO content-type support
407148
Recommends: shared-mime-info
407148
407148
# Downstream patches
407148
Patch01: 0001-gdbus-unix-addresses-test-don-t-g_debug-when-also-te.patch
407148
407148
# Backported from git master
407148
Patch10: 0001-codegen-Change-pointer-casting-to-remove-type-punnin.patch
407148
Patch11: 0001-spawn-add-shebang-line-to-script.patch
51ad59
Patch12: 0001-build-sys-Pass-CFLAGS-to-DTRACE.patch
51ad59
Patch13: 0001-gfile-Limit-access-to-files-when-copying.patch
407148
407148
# Backported from git glib-2-56 branch
407148
Patch20: 0001-tests-Allocate-gvariant-data-from-the-heap-to-guaran.patch
407148
Patch21: 0002-gvariant-test-Also-force-alignment-for-tuple-test-da.patch
407148
51ad59
# Backported from 2.58 (for 3.32 GNOME rebase)
51ad59
Patch30: backport-per-desktop-overrides.patch
51ad59
51ad59
# Backported from git
51ad59
Patch40: 0001-gdbus-codegen-honor-Property.EmitsChangedSignal-anno.patch
51ad59
d896e1
# https://bugzilla.redhat.com/show_bug.cgi?id=1777213
d896e1
Patch50: 0001-gcredentialsprivate-Document-the-various-private-mac.patch
d896e1
Patch51: 0001-GDBus-prefer-getsockopt-style-credentials-passing-AP.patch
d896e1
Patch52: 0001-credentials-Invalid-Linux-struct-ucred-means-no-info.patch
d896e1
407148
%description
407148
GLib is the low-level core library that forms the basis for projects
407148
such as GTK+ and GNOME. It provides data structure handling for C,
407148
portability wrappers, and interfaces for such runtime functionality
407148
as an event loop, threads, dynamic loading, and an object system.
407148
407148
407148
%package devel
407148
Summary: A library of handy utility functions
407148
Requires: %{name}%{?_isa} = %{version}-%{release}
407148
407148
%description devel
407148
The glib2-devel package includes the header files for the GLib library.
407148
407148
%package doc
407148
Summary: A library of handy utility functions
407148
Requires: %{name} = %{version}-%{release}
407148
BuildArch: noarch
407148
407148
%description doc
407148
The glib2-doc package includes documentation for the GLib library.
407148
407148
%package fam
407148
Summary: FAM monitoring module for GIO
407148
Requires: %{name}%{?_isa} = %{version}-%{release}
407148
BuildRequires: gamin-devel
407148
407148
%description fam
407148
The glib2-fam package contains the FAM (File Alteration Monitor) module for GIO.
407148
407148
%package static
407148
Summary: glib static
407148
Requires: %{name}-devel = %{version}-%{release}
407148
407148
%description static
407148
The %{name}-static subpackage contains static libraries for %{name}.
407148
407148
%package tests
407148
Summary: Tests for the glib2 package
407148
Requires: %{name}%{?_isa} = %{version}-%{release}
407148
407148
%description tests
407148
The glib2-tests package contains tests that can be used to verify
407148
the functionality of the installed glib2 package.
407148
407148
%prep
407148
%autosetup -n glib-%{version} -p1
407148
51ad59
# restore timestamps after patching to appease multilib for .pyc files
51ad59
tar vtf %{SOURCE0} | while read mode user size date time name; do touch -d "$date $time" ../$name; done
51ad59
407148
%build
407148
autoreconf -f -i
407148
407148
# Bug 1324770: Also explicitly remove PCRE sources since we use --with-pcre=system
407148
rm glib/pcre/*.[ch]
407148
# Support builds of both git snapshots and tarballs packed with autogoo
407148
(if ! test -x configure; then NOCONFIGURE=1 ./autogen.sh; CONFIGFLAGS=--enable-gtk-doc; fi;
407148
 %configure $CONFIGFLAGS \
407148
           --with-python=%{__python3} \
407148
           --with-pcre=system \
407148
           --enable-systemtap \
407148
           --enable-static \
407148
           --enable-installed-tests
407148
)
407148
407148
%make_build
407148
407148
%install
407148
# Use -p to preserve timestamps on .py files to ensure
407148
# they're not recompiled with different timestamps
407148
# to help multilib: https://bugzilla.redhat.com/show_bug.cgi?id=718404
407148
%make_install INSTALL="install -p"
407148
# Also since this is a generated .py file, set it to a known timestamp,
407148
# otherwise it will vary by build time, and thus break multilib -devel
407148
# installs.
407148
touch -r gio/gdbus-2.0/codegen/config.py.in $RPM_BUILD_ROOT/%{_datadir}/glib-2.0/codegen/config.py
407148
# patch0 changes the timestamp of codegen.py; reset it to a known value to not
407148
# break multilib
407148
touch -r gio/gdbus-2.0/codegen/config.py.in $RPM_BUILD_ROOT/%{_datadir}/glib-2.0/codegen/codegen.py
407148
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/*.so
407148
407148
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
407148
rm -f $RPM_BUILD_ROOT%{_libdir}/gio/modules/*.{a,la}
407148
rm -f $RPM_BUILD_ROOT%{_libexecdir}/installed-tests/glib/*.{a,la}
407148
rm -f $RPM_BUILD_ROOT%{_libexecdir}/installed-tests/glib/modules/*.{a,la}
407148
# Remove python files bytecompiled by the build system. rpmbuild regenerates
407148
# them again later in a brp script using the timestamps set above.
407148
rm -f $RPM_BUILD_ROOT%{_datadir}/glib-2.0/gdb/*.{pyc,pyo}
407148
rm -rf $RPM_BUILD_ROOT%{_datadir}/glib-2.0/gdb/__pycache__/
407148
rm -f $RPM_BUILD_ROOT%{_datadir}/glib-2.0/codegen/*.{pyc,pyo}
407148
rm -rf $RPM_BUILD_ROOT%{_datadir}/glib-2.0/codegen/__pycache__/
407148
407148
mv  $RPM_BUILD_ROOT%{_bindir}/gio-querymodules $RPM_BUILD_ROOT%{_bindir}/gio-querymodules-%{__isa_bits}
407148
407148
touch $RPM_BUILD_ROOT%{_libdir}/gio/modules/giomodule.cache
407148
407148
# bash-completion scripts need not be executable
407148
chmod 644 $RPM_BUILD_ROOT%{_datadir}/bash-completion/completions/*
407148
407148
%find_lang glib20
407148
407148
%transfiletriggerin -- %{_libdir}/gio/modules
407148
gio-querymodules-%{__isa_bits} %{_libdir}/gio/modules &> /dev/null || :
407148
407148
%transfiletriggerpostun -- %{_libdir}/gio/modules
407148
gio-querymodules-%{__isa_bits} %{_libdir}/gio/modules &> /dev/null || :
407148
407148
%transfiletriggerin -- %{_datadir}/glib-2.0/schemas
407148
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
407148
407148
%transfiletriggerpostun -- %{_datadir}/glib-2.0/schemas
407148
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
407148
407148
%files -f glib20.lang
407148
%license COPYING
407148
%doc AUTHORS NEWS README
407148
%{_libdir}/libglib-2.0.so.*
407148
%{_libdir}/libgthread-2.0.so.*
407148
%{_libdir}/libgmodule-2.0.so.*
407148
%{_libdir}/libgobject-2.0.so.*
407148
%{_libdir}/libgio-2.0.so.*
407148
%dir %{_datadir}/bash-completion
407148
%dir %{_datadir}/bash-completion/completions
407148
%{_datadir}/bash-completion/completions/gdbus
407148
%{_datadir}/bash-completion/completions/gsettings
407148
%{_datadir}/bash-completion/completions/gapplication
407148
%dir %{_datadir}/glib-2.0
407148
%dir %{_datadir}/glib-2.0/schemas
407148
%dir %{_libdir}/gio
407148
%dir %{_libdir}/gio/modules
407148
%ghost %{_libdir}/gio/modules/giomodule.cache
407148
%{_bindir}/gio
407148
%{_bindir}/gio-querymodules*
407148
%{_bindir}/glib-compile-schemas
407148
%{_bindir}/gsettings
407148
%{_bindir}/gdbus
407148
%{_bindir}/gapplication
407148
%{_mandir}/man1/gio.1*
407148
%{_mandir}/man1/gio-querymodules.1*
407148
%{_mandir}/man1/glib-compile-schemas.1*
407148
%{_mandir}/man1/gsettings.1*
407148
%{_mandir}/man1/gdbus.1*
407148
%{_mandir}/man1/gapplication.1*
407148
407148
%files devel
407148
%{_libdir}/lib*.so
407148
%{_libdir}/glib-2.0
407148
%{_includedir}/*
407148
%{_datadir}/aclocal/*
407148
%{_libdir}/pkgconfig/*
407148
%{_datadir}/glib-2.0/gdb
407148
%{_datadir}/glib-2.0/gettext
407148
%{_datadir}/glib-2.0/schemas/gschema.dtd
407148
%{_datadir}/glib-2.0/valgrind/glib.supp
407148
%{_datadir}/bash-completion/completions/gresource
407148
%{_bindir}/glib-genmarshal
407148
%{_bindir}/glib-gettextize
407148
%{_bindir}/glib-mkenums
407148
%{_bindir}/gobject-query
407148
%{_bindir}/gtester
407148
%{_bindir}/gdbus-codegen
407148
%{_bindir}/glib-compile-resources
407148
%{_bindir}/gresource
407148
%{_datadir}/glib-2.0/codegen
407148
%attr (0755, root, root) %{_bindir}/gtester-report
407148
%{_mandir}/man1/glib-genmarshal.1*
407148
%{_mandir}/man1/glib-gettextize.1*
407148
%{_mandir}/man1/glib-mkenums.1*
407148
%{_mandir}/man1/gobject-query.1*
407148
%{_mandir}/man1/gtester-report.1*
407148
%{_mandir}/man1/gtester.1*
407148
%{_mandir}/man1/gdbus-codegen.1*
407148
%{_mandir}/man1/glib-compile-resources.1*
407148
%{_mandir}/man1/gresource.1*
407148
%{_datadir}/gdb/
407148
%{_datadir}/gettext/
407148
%{_datadir}/systemtap/
407148
407148
%files doc
407148
%doc %{_datadir}/gtk-doc/html/*
407148
407148
%files fam
407148
%{_libdir}/gio/modules/libgiofam.so
407148
407148
%files static
407148
%{_libdir}/libgio-2.0.a
407148
%{_libdir}/libglib-2.0.a
407148
%{_libdir}/libgmodule-2.0.a
407148
%{_libdir}/libgobject-2.0.a
407148
%{_libdir}/libgthread-2.0.a
407148
407148
%files tests
407148
%{_libexecdir}/installed-tests
407148
%{_datadir}/installed-tests
407148
407148
%changelog
d896e1
* Mon Dec 02 2019 Colin Walters <walters@verbum.org> - 2.56.4-8
d896e1
- Backport patches for GDBus auth
d896e1
  Resolves: #1777213
d896e1
51ad59
* Sat Jul 13 2019 Colin Walters <walters@redhat.com> - 2.56.4-7
51ad59
- Backport patch for CVE-2019-12450
51ad59
  Resolves: #1722101
51ad59
51ad59
* Mon Jun 17 2019 Ray Strode <rstrode@redhat.com> - 2.56.4-5
51ad59
- Backport glib2 change needed for accountsservice dbus
51ad59
  codegen fix
51ad59
  Resolves: #1713081
51ad59
51ad59
* Mon Jun 10 2019 Colin Walters <walters@redhat.com> - 2.56.4-4
51ad59
- Back GHmac with GnuTLS for FIPS
51ad59
- Resolves: #1630260
51ad59
51ad59
* Fri May 31 2019 Florian Müllner <fmuellner@redhat.com> - 2.56.4-3
51ad59
- Backport per-desktop overrides
51ad59
- Resolves: #1715951
51ad59
51ad59
* Tue Apr 02 2019 Colin Walters <walters@redhat.com> - 2.56.4-2
51ad59
- Add system LDFLAGS
51ad59
- Resolves: #1630566
51ad59
407148
* Mon Jan 14 2019 Kalev Lember <klember@redhat.com> - 2.56.4-1
407148
- Update to 2.56.4
407148
- Resolves: #1660859
407148
407148
* Mon Jan 14 2019 Kalev Lember <klember@redhat.com> - 2.56.1-7
407148
- Remove .la files from -tests subpackage
407148
407148
* Mon Jan 14 2019 Kalev Lember <klember@redhat.com> - 2.56.1-6
407148
- Fix multilib -devel installs
407148
- Related: #1639428
407148
407148
* Mon Jan 14 2019 Kalev Lember <klember@redhat.com> - 2.56.1-5
407148
- Fix gdbus codegen generated proxies breaking strict aliasing rules
407148
- Resolves: #1639428
407148
407148
* Mon Dec 17 2018 Ray Strode <rstrode@redhat.com> - 2.56.1-4
407148
- Ensure shared-mime-info is installed during testing
407148
- Ensure test suite runs as unprivileged user
407148
- Ensure test suite works when debugging is enabled
407148
- Ensure echo-script from spawn test is marked executable
407148
  Related: #1625683
407148
407148
* Fri Dec 14 2018 Ray Strode <rstrode@redhat.com> - 2.56.1-3
407148
- rebuild
407148
  Related: #1625683
407148
407148
* Mon Dec 10 2018 Josh Boyer <jwboyer@redhat.com> - 2.56.1-2
407148
- Rebuild for CET note fixes
407148
  Resolves: #1657311
407148
407148
* Sun Apr 08 2018 Kalev Lember <klember@redhat.com> - 2.56.1-1
407148
- Update to 2.56.1
407148
407148
* Mon Mar 12 2018 Kalev Lember <klember@redhat.com> - 2.56.0-1
407148
- Update to 2.56.0
407148
407148
* Wed Feb 07 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.55.2-3
407148
- Undo disabling mangling
407148
407148
* Wed Feb 07 2018 Kalev Lember <klember@redhat.com> - 2.55.2-2
407148
- Disable brp-mangle-shebangs shebangs
407148
407148
* Wed Feb 07 2018 Kalev Lember <klember@redhat.com> - 2.55.2-1
407148
- Update to 2.55.2
407148
- Drop ldconfig scriptlets
407148
407148
* Wed Jan 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.55.1-3
407148
- Switch to %%ldconfig_scriptlets
407148
407148
* Thu Jan 18 2018 Kalev Lember <klember@redhat.com> - 2.55.1-2
407148
- gmain: Partial revert of recent wakeup changes
407148
407148
* Mon Jan 08 2018 Kalev Lember <klember@redhat.com> - 2.55.1-1
407148
- Update to 2.55.1
407148
- Drop upstreamed systemtap multilib fix
407148
407148
* Tue Dec 19 2017 Kalev Lember <klember@redhat.com> - 2.55.0-1
407148
- Update to 2.55.0
407148
407148
* Wed Nov 01 2017 Kalev Lember <klember@redhat.com> - 2.54.2-1
407148
- Update to 2.54.2
407148
407148
* Fri Oct 06 2017 Kalev Lember <klember@redhat.com> - 2.54.1-1
407148
- Update to 2.54.1
407148
407148
* Mon Sep 11 2017 Kalev Lember <klember@redhat.com> - 2.54.0-1
407148
- Update to 2.54.0
407148
407148
* Tue Sep 05 2017 Kalev Lember <klember@redhat.com> - 2.53.7-1
407148
- Update to 2.53.7
407148
407148
* Sat Aug 19 2017 Kalev Lember <klember@redhat.com> - 2.53.6-1
407148
- Update to 2.53.6
407148
407148
* Mon Aug 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.53.5-1
407148
- Update to 2.53.5
407148
407148
* Tue Aug 01 2017 Kalev Lember <klember@redhat.com> - 2.53.4-4
407148
- Backport glib-mkenums flags annotation parsing fixes
407148
407148
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.53.4-3
407148
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
407148
407148
* Fri Jul 21 2017 Kalev Lember <klember@redhat.com> - 2.53.4-2
407148
- Revert a GKeyFile introspection ABI change
407148
407148
* Tue Jul 18 2017 Kalev Lember <klember@redhat.com> - 2.53.4-1
407148
- Update to 2.53.4
407148
407148
* Thu Jun 22 2017 Kalev Lember <klember@redhat.com> - 2.53.3-1
407148
- Update to 2.53.3
407148
407148
* Thu Jun 8 2017 Owen Taylor <otaylor@redhat.com> - 2.53.2-2
407148
- Make triggers also compile schemas in /app/share/glib-2.0/schemas
407148
407148
* Wed May 24 2017 Florian Müllner <fmuellner@redhat.com> - 2.53.2-1
407148
- Update to 2.53.2
407148
407148
* Mon May 15 2017 Kalev Lember <klember@redhat.com> - 2.52.2-2
407148
- Backport a gmain GWakeup patch to fix timedatex high CPU usage (#1450628)
407148
407148
* Tue May 09 2017 Kalev Lember <klember@redhat.com> - 2.52.2-1
407148
- Update to 2.52.2
407148
407148
* Tue Apr 11 2017 Colin Walters <walters@verbum.org> - 2.52.1-3
407148
- Backport patches for gmain wakeup for qemu
407148
  See: https://bugzilla.gnome.org/show_bug.cgi?id=761102
407148
407148
* Tue Apr 11 2017 Colin Walters <walters@verbum.org> - 2.52.1-2
407148
- Explictly remove PCRE sources
407148
- Related: https://bugzilla.redhat.com/show_bug.cgi?id=1324770
407148
407148
* Tue Apr 11 2017 Kalev Lember <klember@redhat.com> - 2.52.1-1
407148
- Update to 2.52.1
407148
407148
* Mon Mar 20 2017 Kalev Lember <klember@redhat.com> - 2.52.0-1
407148
- Update to 2.52.0
407148
407148
* Thu Mar 16 2017 Kalev Lember <klember@redhat.com> - 2.51.5-1
407148
- Update to 2.51.5
407148
407148
* Thu Mar 02 2017 Kalev Lember <klember@redhat.com> - 2.51.4-2
407148
- Remove the dependency on dbus-launch again (#927212)
407148
407148
* Wed Mar 01 2017 David King <amigadave@amigadave.com> - 2.51.4-1
407148
- Update to 2.51.4
407148
- Add a Requires on dbus-launch (#927212)
407148
- Use pkgconfig for BuildRequires
407148
407148
* Tue Feb 14 2017 Richard Hughes <rhughes@redhat.com> - 2.51.2-1
407148
- Update to 2.51.2
407148
407148
* Mon Feb 13 2017 Richard Hughes <rhughes@redhat.com> - 2.51.1-1
407148
- Update to 2.51.1
407148
407148
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.51.0-3
407148
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
407148
407148
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 2.51.0-2
407148
- Rebuild for Python 3.6
407148
407148
* Sun Oct 30 2016 Kalev Lember <klember@redhat.com> - 2.51.0-1
407148
- Update to 2.51.0
407148
407148
* Wed Oct 12 2016 Kalev Lember <klember@redhat.com> - 2.50.1-1
407148
- Update to 2.50.1
407148
407148
* Mon Sep 19 2016 Kalev Lember <klember@redhat.com> - 2.50.0-1
407148
- Update to 2.50.0
407148
407148
* Tue Sep 13 2016 Kalev Lember <klember@redhat.com> - 2.49.7-1
407148
- Update to 2.49.7
407148
- Don't set group tags
407148
407148
* Sun Aug 28 2016 Kalev Lember <klember@redhat.com> - 2.49.6-1
407148
- Update to 2.49.6
407148
407148
* Thu Aug 18 2016 Kalev Lember <klember@redhat.com> - 2.49.5-1
407148
- Update to 2.49.5
407148
- Own /usr/share/gdb and /usr/share/systemtap directories
407148
407148
* Tue Aug 16 2016 Miro Hrončok <mhroncok@redhat.com> - 2.49.4-3
407148
- Use Python 3 for the RPM Python byte compilation
407148
407148
* Wed Jul 27 2016 Ville Skyttä <ville.skytta@iki.fi> - 2.49.4-2
407148
- Switch to Python 3 (#1286284)
407148
407148
* Thu Jul 21 2016 Kalev Lember <klember@redhat.com> - 2.49.4-1
407148
- Update to 2.49.4
407148
407148
* Sun Jul 17 2016 Kalev Lember <klember@redhat.com> - 2.49.3-1
407148
- Update to 2.49.3
407148
407148
* Wed Jun 22 2016 Richard Hughes <rhughes@redhat.com> - 2.49.2-1
407148
- Update to 2.49.2
407148
407148
* Wed Jun 01 2016 Yaakov Selkowitz <yselkowi@redhat.com> - 2.49.1-2
407148
- Soften shared-mime-info dependency (#1266118)
407148
407148
* Fri May 27 2016 Florian Müllner <fmuellner@redhat.com> - 2.49.1-1
407148
- Update to 2.49.1
407148
407148
* Tue May 10 2016 Kalev Lember <klember@redhat.com> - 2.48.1-1
407148
- Update to 2.48.1
407148
407148
* Wed Apr 06 2016 Colin Walters <walters@redhat.com> - 2.48.0-2
407148
- Explicitly require system pcre, though we happened to default to this now
407148
  anyways due to something else pulling PCRE into the buildroot
407148
  Closes rhbz#1287266
407148
407148
* Tue Mar 22 2016 Kalev Lember <klember@redhat.com> - 2.48.0-1
407148
- Update to 2.48.0
407148
407148
* Thu Mar 17 2016 Richard Hughes <rhughes@redhat.com> - 2.47.92-1
407148
- Update to 2.47.92
407148
407148
* Wed Feb 24 2016 Colin Walters <walters@redhat.com> - 2.47.6.19.gad2092b-2
407148
- git snapshot to work around https://bugzilla.gnome.org/show_bug.cgi?id=762637
407148
- Add --with-python=/usr/bin/python explicitly to hopefully fix a weird
407148
  issue I am seeing where librepo fails to build in epel7 with this due to
407148
  us requiring /bin/python.
407148
407148
* Wed Feb 17 2016 Richard Hughes <rhughes@redhat.com> - 2.47.6-1
407148
- Update to 2.47.6
407148
407148
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.47.5-2
407148
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
407148
407148
* Tue Jan 19 2016 David King <amigadave@amigadave.com> - 2.47.5-1
407148
- Update to 2.47.5
407148
407148
* Wed Dec 16 2015 Kalev Lember <klember@redhat.com> - 2.47.4-1
407148
- Update to 2.47.4
407148
407148
* Wed Nov 25 2015 Kalev Lember <klember@redhat.com> - 2.47.3-1
407148
- Update to 2.47.3
407148
407148
* Wed Nov 25 2015 Kalev Lember <klember@redhat.com> - 2.47.2-1
407148
- Update to 2.47.2
407148
407148
* Mon Nov 09 2015 Kevin Fenzi <kevin@scrye.com> - 2.47.1-2
407148
- Add full path redirect output to null and || : to triggers.
407148
407148
* Wed Oct 28 2015 Kalev Lember <klember@redhat.com> - 2.47.1-1
407148
- Update to 2.47.1
407148
407148
* Mon Oct 19 2015 Kalev Lember <klember@redhat.com> - 2.46.1-2
407148
- Backport an upstream fix for app launching under wayland (#1273146)
407148
407148
* Wed Oct 14 2015 Kalev Lember <klember@redhat.com> - 2.46.1-1
407148
- Update to 2.46.1
407148
407148
* Mon Sep 21 2015 Kalev Lember <klember@redhat.com> - 2.46.0-1
407148
- Update to 2.46.0
407148
407148
* Mon Sep 14 2015 Kalev Lember <klember@redhat.com> - 2.45.8-1
407148
- Update to 2.45.8
407148
407148
* Tue Sep 01 2015 Kalev Lember <klember@redhat.com> - 2.45.7-1
407148
- Update to 2.45.7
407148
407148
* Wed Aug 19 2015 Kalev Lember <klember@redhat.com> - 2.45.6-1
407148
- Update to 2.45.6
407148
407148
* Wed Aug 19 2015 Kalev Lember <klember@redhat.com> - 2.45.5-1
407148
- Update to 2.45.5
407148
407148
* Fri Aug 14 2015 Matthias Clasen <mclasen@redhat.com> - 2.45.4-2
407148
- Add file triggers for gio modules and gsettings schemas
407148
407148
* Tue Jul 21 2015 David King <amigadave@amigadave.com> - 2.45.4-1
407148
- Update to 2.45.4
407148
407148
* Wed Jun 24 2015 Kalev Lember <klember@redhat.com> - 2.45.3-2
407148
- Backport a patch to fix notification withdrawing in gnome-software
407148
407148
* Wed Jun 24 2015 David King <amigadave@amigadave.com> - 2.45.3-1
407148
- Update to 2.45.3
407148
407148
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.45.2-2
407148
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
407148
407148
* Tue May 26 2015 David King <amigadave@amigadave.com> - 2.45.2-1
407148
- Update to 2.45.2
407148
407148
* Thu Apr 30 2015 Kalev Lember <kalevlember@gmail.com> - 2.45.1-1
407148
- Update to 2.45.1
407148
407148
* Mon Mar 23 2015 Kalev Lember <kalevlember@gmail.com> - 2.44.0-1
407148
- Update to 2.44.0
407148
407148
* Tue Mar 17 2015 Kalev Lember <kalevlember@gmail.com> - 2.43.92-1
407148
- Update to 2.43.92
407148
407148
* Mon Mar 02 2015 Kalev Lember <kalevlember@gmail.com> - 2.43.91-1
407148
- Update to 2.43.91
407148
407148
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.43.90-2
407148
- Rebuilt for Fedora 23 Change
407148
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
407148
407148
* Wed Feb 18 2015 David King <amigadave@amigadave.com> - 2.43.90-1
407148
- Update to 2.43.90
407148
- Update man pages glob in files section
407148
407148
* Tue Feb 10 2015 Matthias Clasen <mclasen@redhat.com> - 2.43.4-1
407148
- Update to 2.43.4
407148
407148
* Tue Jan 20 2015 David King <amigadave@amigadave.com> - 2.43.3-1
407148
- Update to 2.43.3
407148
407148
* Wed Dec 17 2014 Kalev Lember <kalevlember@gmail.com> - 2.43.2-1
407148
- Update to 2.43.2
407148
407148
* Tue Nov 25 2014 Kalev Lember <kalevlember@gmail.com> - 2.43.1-1
407148
- Update to 2.43.1
407148
407148
* Thu Oct 30 2014 Florian Müllner <fmuellner@redhat.com> - 2.43.0-1
407148
- Update to 2.43.0
407148
407148
* Mon Sep 22 2014 Kalev Lember <kalevlember@gmail.com> - 2.42.0-1
407148
- Update to 2.42.0
407148
407148
* Tue Sep 16 2014 Kalev Lember <kalevlember@gmail.com> - 2.41.5-1
407148
- Update to 2.41.5
407148
407148
* Thu Sep  4 2014 Matthias Clasen <mclasen@redhat.com> 2.41.4-3
407148
- Don't remove rpath from gdbus-peer test - it doesn't work without it
407148
407148
* Thu Sep 04 2014 Bastien Nocera <bnocera@redhat.com> 2.41.4-2
407148
- Fix banshee getting selected as the default movie player
407148
407148
* Tue Sep 02 2014 Kalev Lember <kalevlember@gmail.com> - 2.41.4-1
407148
- Update to 2.41.4
407148
407148
* Sat Aug 16 2014 Kalev Lember <kalevlember@gmail.com> - 2.41.3-1
407148
- Update to 2.41.3
407148
407148
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.41.2-3
407148
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
407148
407148
* Wed Jul 23 2014 Stef Walter <stefw@redhat.com> - 2.41.2-2
407148
- Fix regression with GDBus array encoding rhbz#1122128
407148
407148
* Mon Jul 14 2014 Kalev Lember <kalevlember@gmail.com> - 2.41.2-1
407148
- Update to 2.41.2
407148
407148
* Sat Jul 12 2014 Tom Callaway <spot@fedoraproject.org> - 2.41.1-2
407148
- fix license handling
407148
407148
* Tue Jun 24 2014 Richard Hughes <rhughes@redhat.com> - 2.41.1-1
407148
- Update to 2.41.1
407148
407148
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.41.0-2
407148
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
407148
407148
* Tue May 27 2014 Kalev Lember <kalevlember@gmail.com> - 2.41.0-1
407148
- Update to 2.41.0
407148
407148
* Mon Mar 24 2014 Richard Hughes <rhughes@redhat.com> - 2.40.0-1
407148
- Update to 2.40.0
407148
407148
* Tue Mar 18 2014 Richard Hughes <rhughes@redhat.com> - 2.39.92-1
407148
- Update to 2.39.92
407148
407148
* Tue Mar 04 2014 Richard Hughes <rhughes@redhat.com> - 2.39.91-1
407148
- Update to 2.39.91
407148
407148
* Tue Feb 18 2014 Richard Hughes <rhughes@redhat.com> - 2.39.90-1
407148
- Update to 2.39.90
407148
407148
* Tue Feb 04 2014 Richard Hughes <rhughes@redhat.com> - 2.39.4-1
407148
- Update to 2.39.4
407148
407148
* Tue Jan 14 2014 Richard Hughes <rhughes@redhat.com> - 2.39.3-1
407148
- Update to 2.39.3
407148
407148
* Sun Dec 22 2013 Richard W.M. Jones <rjones@redhat.com> - 2.39.2-2
407148
- Re-add static subpackage so that we can build static qemu as
407148
  an AArch64 binfmt.
407148
407148
* Tue Dec 17 2013 Richard Hughes <rhughes@redhat.com> - 2.39.2-1
407148
- Update to 2.39.2
407148
407148
* Mon Dec 09 2013 Richard Hughes <rhughes@redhat.com> - 2.39.1-2
407148
- Backport a patch from master to stop gnome-settings-daemon crashing.
407148
407148
* Thu Nov 14 2013 Richard Hughes <rhughes@redhat.com> - 2.39.1-1
407148
- Update to 2.39.1
407148
407148
* Mon Oct 28 2013 Richard Hughes <rhughes@redhat.com> - 2.39.0-1
407148
- Update to 2.39.0
407148
407148
* Tue Sep 24 2013 Kalev Lember <kalevlember@gmail.com> - 2.38.0-1
407148
- Update to 2.38.0
407148
407148
* Tue Sep 17 2013 Kalev Lember <kalevlember@gmail.com> - 2.37.93-1
407148
- Update to 2.37.93
407148
407148
* Mon Sep 02 2013 Kalev Lember <kalevlember@gmail.com> - 2.37.7-1
407148
- Update to 2.37.7
407148
407148
* Wed Aug 21 2013 Debarshi Ray <rishi@fedoraproject.org> - 2.37.6-1
407148
- Update to 2.37.6
407148
407148
* Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 2.37.5-2
407148
- Perl 5.18 rebuild
407148
407148
* Thu Aug  1 2013 Debarshi Ray <rishi@fedoraproject.org> - 2.37.5-1
407148
- Update to 2.37.5
407148
407148
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 2.37.4-2
407148
- Perl 5.18 rebuild
407148
407148
* Tue Jul  9 2013 Matthias Clasen <mclasen@redhat.com> - 2.37.4-1
407148
- Update to 2.37.4
407148
407148
* Thu Jun 20 2013 Debarshi Ray <rishi@fedoraproject.org> - 2.37.2-1
407148
- Update to 2.37.2
407148
407148
* Tue May 28 2013 Matthias Clasen <mclasen@redhat.com> - 2.37.1-1
407148
- Update to 2.37.1
407148
- Add a tests subpackage
407148
407148
* Sat May 04 2013 Kalev Lember <kalevlember@gmail.com> - 2.37.0-1
407148
- Update to 2.37.0
407148
407148
* Sat Apr 27 2013 Thorsten Leemhuis <fedora@leemhuis.info> - 2.36.1-2
407148
- Fix pidgin freezes by applying patch from master (#956872)
407148
407148
* Mon Apr 15 2013 Kalev Lember <kalevlember@gmail.com> - 2.36.1-1
407148
- Update to 2.36.1
407148
407148
* Mon Mar 25 2013 Kalev Lember <kalevlember@gmail.com> - 2.36.0-1
407148
- Update to 2.36.0
407148
407148
* Tue Mar 19 2013 Matthias Clasen <mclasen@redhat.com> - 2.35.9-1
407148
- Update to 2.35.9
407148
407148
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 2.35.8-1
407148
- Update to 2.35.8
407148
407148
* Tue Feb 05 2013 Kalev Lember <kalevlember@gmail.com> - 2.35.7-1
407148
- Update to 2.35.7
407148
407148
* Tue Jan 15 2013 Matthias Clasen <mclasen@redhat.com> - 2.35.4-1
407148
- Update to 2.35.4
407148
407148
* Thu Dec 20 2012 Kalev Lember <kalevlember@gmail.com> - 2.35.3-1
407148
- Update to 2.35.3
407148
407148
* Sat Nov 24 2012 Kalev Lember <kalevlember@gmail.com> - 2.35.2-1
407148
- Update to 2.35.2
407148
407148
* Thu Nov 08 2012 Kalev Lember <kalevlember@gmail.com> - 2.35.1-1
407148
- Update to 2.35.1
407148
- Drop upstreamed codegen-in-datadir.patch