Blame SPECS/gdk-pixbuf2.spec

Packit afb8fc
%global glib2_version 2.48.0
Packit afb8fc
Packit afb8fc
Name:           gdk-pixbuf2
Packit afb8fc
Version:        2.36.12
Packit afb8fc
Release:        5%{?dist}
Packit afb8fc
Summary:        An image loading library
Packit afb8fc
Packit afb8fc
License:        LGPLv2+
Packit afb8fc
URL:            http://www.gtk.org
Packit afb8fc
#VCS:           git:git://git.gnome.org/gdk-pixbuf
Packit afb8fc
Source0:        http://download.gnome.org/sources/gdk-pixbuf/2.36/gdk-pixbuf-%{version}.tar.xz
Packit afb8fc
Source1:        bug753605-atsize.jpg
Packit afb8fc
Packit afb8fc
# https://bugzilla.redhat.com/show_bug.cgi?id=1630565
Packit afb8fc
Patch0:         Turn-off-mmx-support.diff
Packit afb8fc
Packit afb8fc
BuildRequires:  pkgconfig(gio-2.0) >= %{glib2_version}
Packit afb8fc
BuildRequires:  libpng-devel
Packit afb8fc
BuildRequires:  libjpeg-devel
Packit afb8fc
BuildRequires:  libtiff-devel
Packit afb8fc
BuildRequires:  jasper-devel
Packit afb8fc
BuildRequires:  pkgconfig(x11)
Packit afb8fc
BuildRequires:  pkgconfig(gobject-introspection-1.0) >= 0.9.3
Packit afb8fc
# gdk-pixbuf does a configure time check which uses the GIO mime
Packit afb8fc
# layer; we need to actually have the mime type database.
Packit afb8fc
BuildRequires:  shared-mime-info
Packit afb8fc
Packit afb8fc
Requires: glib2%{?_isa} >= %{glib2_version}
Packit afb8fc
Packit afb8fc
# We also need MIME information at runtime
Packit afb8fc
Requires: shared-mime-info
Packit afb8fc
# Bootstrap requirements
Packit afb8fc
BuildRequires: autoconf automake libtool gtk-doc
Packit afb8fc
BuildRequires: gettext-autopoint
Packit afb8fc
Packit afb8fc
# gdk-pixbuf was included in gtk2 until 2.21.2
Packit afb8fc
Conflicts: gtk2 <= 2.21.2
Packit afb8fc
Packit afb8fc
# We need rpm with file triggers support
Packit afb8fc
Conflicts: rpm < 4.12.90
Packit afb8fc
Packit afb8fc
%description
Packit afb8fc
gdk-pixbuf is an image loading library that can be extended by loadable
Packit afb8fc
modules for new image formats. It is used by toolkits such as GTK+ or
Packit afb8fc
clutter.
Packit afb8fc
Packit afb8fc
%package modules
Packit afb8fc
Summary: Additional image modules for gdk-pixbuf
Packit afb8fc
Requires: %{name}%{?_isa} = %{version}-%{release}
Packit afb8fc
Packit afb8fc
%description modules
Packit afb8fc
This package contains the additional modules that are needed to load various
Packit afb8fc
image formats such as ICO and JPEG.
Packit afb8fc
Packit afb8fc
%package xlib
Packit afb8fc
Summary: Additional library for using gdk-pixbuf with bare xlib
Packit afb8fc
Requires: %{name}%{?_isa} = %{version}-%{release}
Packit afb8fc
Packit afb8fc
%description xlib
Packit afb8fc
This package contains the old libgdk-pixbuf-xlib library that is needed by some
Packit afb8fc
programs to load GdkPixbuf using bare XLib calls.
Packit afb8fc
Packit afb8fc
%package xlib-devel
Packit afb8fc
Summary: Development files for gdk-pixbuf-xlib
Packit afb8fc
Requires: %{name}-xlib%{?_isa} = %{version}-%{release}
Packit afb8fc
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
Packit afb8fc
Packit afb8fc
%description xlib-devel
Packit afb8fc
This package contains the libraries and header files that are needed
Packit afb8fc
for writing applications that are using gdk-pixbuf-xlib.
Packit afb8fc
Packit afb8fc
%package devel
Packit afb8fc
Summary: Development files for gdk-pixbuf
Packit afb8fc
Requires: %{name}%{?_isa} = %{version}-%{release}
Packit afb8fc
Requires: glib2-devel%{?_isa} >= %{glib2_version}
Packit afb8fc
Packit afb8fc
# gdk-pixbuf was included in gtk2 until 2.21.2
Packit afb8fc
Conflicts: gtk2-devel <= 2.21.2
Packit afb8fc
Packit afb8fc
%description devel
Packit afb8fc
This package contains the libraries and header files that are needed
Packit afb8fc
for writing applications that are using gdk-pixbuf.
Packit afb8fc
Packit afb8fc
%package tests
Packit afb8fc
Summary: Tests for the %{name} package
Packit afb8fc
Requires: %{name}%{?_isa} = %{version}-%{release}
Packit afb8fc
Packit afb8fc
%description tests
Packit afb8fc
The %{name}-tests package contains tests that can be used to verify
Packit afb8fc
the functionality of the installed %{name} package.
Packit afb8fc
Packit afb8fc
Packit afb8fc
%prep
Packit afb8fc
%autosetup -n gdk-pixbuf-%{version} -p1
Packit afb8fc
Packit afb8fc
%build
Packit afb8fc
autoreconf -fi
Packit afb8fc
%configure                           \
Packit afb8fc
        --with-x11                   \
Packit afb8fc
        --with-libjasper             \
Packit afb8fc
        --with-included-loaders=png  \
Packit afb8fc
        --enable-installed-tests     \
Packit afb8fc
        --disable-silent-rules
Packit afb8fc
make %{?_smp_mflags}
Packit afb8fc
Packit afb8fc
Packit afb8fc
%install
Packit afb8fc
%make_install RUN_QUERY_LOADER_TEST=false
Packit afb8fc
Packit afb8fc
cp -a ${RPM_SOURCE_DIR}/bug753605-atsize.jpg $RPM_BUILD_ROOT%{_libexecdir}/installed-tests/gdk-pixbuf
Packit afb8fc
Packit afb8fc
# Remove unpackaged files
Packit afb8fc
rm $RPM_BUILD_ROOT%{_libdir}/*.la
Packit afb8fc
rm $RPM_BUILD_ROOT%{_libdir}/gdk-pixbuf-2.0/2.10.0/loaders/*.la
Packit afb8fc
Packit afb8fc
touch $RPM_BUILD_ROOT%{_libdir}/gdk-pixbuf-2.0/2.10.0/loaders.cache
Packit afb8fc
Packit afb8fc
(cd $RPM_BUILD_ROOT%{_bindir}
Packit afb8fc
 mv gdk-pixbuf-query-loaders gdk-pixbuf-query-loaders-%{__isa_bits}
Packit afb8fc
)
Packit afb8fc
Packit afb8fc
%find_lang gdk-pixbuf
Packit afb8fc
Packit afb8fc
%post
Packit afb8fc
/sbin/ldconfig
Packit afb8fc
Packit afb8fc
%postun
Packit afb8fc
/sbin/ldconfig
Packit afb8fc
Packit afb8fc
%post xlib -p /sbin/ldconfig
Packit afb8fc
Packit afb8fc
%postun xlib -p /sbin/ldconfig
Packit afb8fc
Packit afb8fc
%transfiletriggerin -- %{_libdir}/gdk-pixbuf-2.0/2.10.0/loaders
Packit afb8fc
gdk-pixbuf-query-loaders-%{__isa_bits} --update-cache
Packit afb8fc
Packit afb8fc
%transfiletriggerpostun -- %{_libdir}/gdk-pixbuf-2.0/2.10.0/loaders
Packit afb8fc
gdk-pixbuf-query-loaders-%{__isa_bits} --update-cache
Packit afb8fc
Packit afb8fc
%files -f gdk-pixbuf.lang
Packit afb8fc
%license COPYING
Packit afb8fc
%doc AUTHORS NEWS
Packit afb8fc
%{_libdir}/libgdk_pixbuf-2.0.so.*
Packit afb8fc
%{_libdir}/girepository-1.0
Packit afb8fc
%dir %{_libdir}/gdk-pixbuf-2.0
Packit afb8fc
%dir %{_libdir}/gdk-pixbuf-2.0/2.10.0
Packit afb8fc
%dir %{_libdir}/gdk-pixbuf-2.0/2.10.0/loaders
Packit afb8fc
%ghost %{_libdir}/gdk-pixbuf-2.0/2.10.0/loaders.cache
Packit afb8fc
%{_bindir}/gdk-pixbuf-query-loaders-%{__isa_bits}
Packit afb8fc
%{_bindir}/gdk-pixbuf-thumbnailer
Packit afb8fc
%{_mandir}/man1/gdk-pixbuf-query-loaders.1*
Packit afb8fc
%{_datadir}/thumbnailers/
Packit afb8fc
Packit afb8fc
%files modules
Packit afb8fc
%{_libdir}/gdk-pixbuf-2.0/2.10.0/loaders/*.so
Packit afb8fc
Packit afb8fc
%files xlib
Packit afb8fc
%{_libdir}/libgdk_pixbuf_xlib-2.0.so.*
Packit afb8fc
Packit afb8fc
%files xlib-devel
Packit afb8fc
%{_includedir}/gdk-pixbuf-2.0/gdk-pixbuf-xlib
Packit afb8fc
%{_libdir}/libgdk_pixbuf_xlib-2.0.so
Packit afb8fc
%{_libdir}/pkgconfig/gdk-pixbuf-xlib-2.0.pc
Packit afb8fc
Packit afb8fc
%files devel
Packit afb8fc
%dir %{_includedir}/gdk-pixbuf-2.0
Packit afb8fc
%{_includedir}/gdk-pixbuf-2.0/gdk-pixbuf
Packit afb8fc
%{_libdir}/libgdk_pixbuf-2.0.so
Packit afb8fc
%{_libdir}/pkgconfig/gdk-pixbuf-2.0.pc
Packit afb8fc
%{_bindir}/gdk-pixbuf-csource
Packit afb8fc
%{_bindir}/gdk-pixbuf-pixdata
Packit afb8fc
%{_datadir}/gir-1.0
Packit afb8fc
%{_datadir}/gtk-doc/html/*
Packit afb8fc
%{_mandir}/man1/gdk-pixbuf-csource.1*
Packit afb8fc
Packit afb8fc
%files tests
Packit afb8fc
%{_libexecdir}/installed-tests
Packit afb8fc
%{_datadir}/installed-tests
Packit afb8fc
Packit afb8fc
Packit afb8fc
%changelog
Packit afb8fc
* Thu Aug 29 2019 Benjamin Otte <otte@gnome.org> - 2.36.12-5
Packit afb8fc
- Disable mmx support
Packit afb8fc
  Resolves: #1630565
Packit afb8fc
Packit afb8fc
* Fri Dec 14 2018 Ray Strode <rstrode@redhat.com> - 2.36.12-4
Packit afb8fc
- Install missing test image
Packit afb8fc
  Related: #1625683
Packit afb8fc
- Fix up tests.yml
Packit afb8fc
Packit afb8fc
* Fri Dec 14 2018 Ray Strode <rstrode@redhat.com> - 2.36.12-3
Packit afb8fc
- rebuild
Packit afb8fc
Packit afb8fc
* Mon Dec 10 2018 Josh Boyer <jwboyer@redhat.com> - 2.36.12-2
Packit afb8fc
- Rebuild for CET note fixes
Packit afb8fc
  Resolves: #1657310
Packit afb8fc
Packit afb8fc
* Sun Apr 08 2018 Kalev Lember <klember@redhat.com> - 2.36.12-1
Packit afb8fc
- Update to 2.36.12
Packit afb8fc
Packit afb8fc
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.36.11-2
Packit afb8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
Packit afb8fc
Packit afb8fc
* Fri Oct 06 2017 Kalev Lember <klember@redhat.com> - 2.36.11-1
Packit afb8fc
- Update to 2.36.11
Packit afb8fc
Packit afb8fc
* Mon Sep 11 2017 Kalev Lember <klember@redhat.com> - 2.36.10-1
Packit afb8fc
- Update to 2.36.10
Packit afb8fc
Packit afb8fc
* Mon Aug 21 2017 Kalev Lember <klember@redhat.com> - 2.36.9-1
Packit afb8fc
- Update to 2.36.9
Packit afb8fc
Packit afb8fc
* Wed Aug 16 2017 Kalev Lember <klember@redhat.com> - 2.36.8-2
Packit afb8fc
- Fix tiff loader to build again
Packit afb8fc
Packit afb8fc
* Tue Aug 08 2017 Kalev Lember <klember@redhat.com> - 2.36.8-1
Packit afb8fc
- Update to 2.36.8
Packit afb8fc
Packit afb8fc
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.36.7-6
Packit afb8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
Packit afb8fc
Packit afb8fc
* Mon Jul 31 2017 Florian Weimer <fweimer@redhat.com> - 2.36.7-5
Packit afb8fc
- Rebuild with binutils fix for ppc64le (#1475636)
Packit afb8fc
Packit afb8fc
* Wed Jul 26 2017 Kalev Lember <klember@redhat.com> - 2.36.7-4
Packit afb8fc
- Backport a patch to fix ico quality sorting
Packit afb8fc
Packit afb8fc
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.36.7-3
Packit afb8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
Packit afb8fc
Packit afb8fc
* Wed Jul 19 2017 Kalev Lember <klember@redhat.com> - 2.36.7-2
Packit afb8fc
- Rebuilt for a s390x binutils issue
Packit afb8fc
Packit afb8fc
* Tue Jul 18 2017 Kalev Lember <klember@redhat.com> - 2.36.7-1
Packit afb8fc
- Update to 2.36.7
Packit afb8fc
Packit afb8fc
* Thu Jul 13 2017 Bastien Nocera <bnocera@redhat.com> - 2.36.6-2
Packit afb8fc
+ gdk-pixbuf2-2.36.6-2
Packit afb8fc
- Fix crasher in jpeg loader
Packit afb8fc
Packit afb8fc
* Mon Apr 03 2017 Kalev Lember <klember@redhat.com> - 2.36.6-1
Packit afb8fc
- Update to 2.36.6
Packit afb8fc
Packit afb8fc
* Mon Feb 13 2017 Kalev Lember <klember@redhat.com> - 2.36.5-1
Packit afb8fc
- Update to 2.36.5
Packit afb8fc
Packit afb8fc
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.36.4-2
Packit afb8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
Packit afb8fc
Packit afb8fc
* Mon Jan 16 2017 Kalev Lember <klember@redhat.com> - 2.36.4-1
Packit afb8fc
- Update to 2.36.4
Packit afb8fc
Packit afb8fc
* Wed Jan 04 2017 Kalev Lember <klember@redhat.com> - 2.36.3-1
Packit afb8fc
- Update to 2.36.3
Packit afb8fc
Packit afb8fc
* Tue Dec 20 2016 Kalev Lember <klember@redhat.com> - 2.36.2-1
Packit afb8fc
- Update to 2.36.2
Packit afb8fc
Packit afb8fc
* Tue Dec 13 2016 Kalev Lember <klember@redhat.com> - 2.36.1-1
Packit afb8fc
- Update to 2.36.1
Packit afb8fc
Packit afb8fc
* Fri Dec 02 2016 Kalev Lember <klember@redhat.com> - 2.36.0-3
Packit afb8fc
- Re-enable the libjasper JPEG-2000 loader now that it's getting maintainance
Packit afb8fc
  upstream again
Packit afb8fc
Packit afb8fc
* Thu Oct 27 2016 Richard W.M. Jones <rjones@redhat.com> - 2.36.0-2
Packit afb8fc
- Disable "silent rules".
Packit afb8fc
Packit afb8fc
* Mon Sep 19 2016 Kalev Lember <klember@redhat.com> - 2.36.0-1
Packit afb8fc
- Update to 2.36.0
Packit afb8fc
Packit afb8fc
* Thu Sep 15 2016 Richard Hughes <rhughes@redhat.com> - 2.35.5-2
Packit afb8fc
- Disable the libjasper JPEG-2000 loader because it's horribly insecure.
Packit afb8fc
Packit afb8fc
* Tue Sep 13 2016 Kalev Lember <klember@redhat.com> - 2.35.5-1
Packit afb8fc
- Update to 2.35.5
Packit afb8fc
- Don't set group tags
Packit afb8fc
Packit afb8fc
* Mon Aug 29 2016 Kalev Lember <klember@redhat.com> - 2.35.4-1
Packit afb8fc
- Update to 2.35.4
Packit afb8fc
Packit afb8fc
* Thu Aug 04 2016 Kalev Lember <klember@redhat.com> - 2.35.3-1
Packit afb8fc
- Update to 2.35.3
Packit afb8fc
Packit afb8fc
* Wed Jun 22 2016 Richard Hughes <rhughes@redhat.com> - 2.35.2-1
Packit afb8fc
- Update to 2.35.2
Packit afb8fc
Packit afb8fc
* Tue May 03 2016 Kalev Lember <klember@redhat.com> - 2.35.1-1
Packit afb8fc
- Update to 2.35.1
Packit afb8fc
Packit afb8fc
* Thu Mar 24 2016 Kalev Lember <klember@redhat.com> - 2.34.0-1
Packit afb8fc
- Update to 2.34.0
Packit afb8fc
Packit afb8fc
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.33.2-2
Packit afb8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
Packit afb8fc
Packit afb8fc
* Mon Dec 14 2015 Kalev Lember <klember@redhat.com> - 2.33.2-1
Packit afb8fc
- Update to 2.33.2
Packit afb8fc
Packit afb8fc
* Wed Oct 28 2015 Kalev Lember <klember@redhat.com> - 2.33.1-1
Packit afb8fc
- Update to 2.33.1
Packit afb8fc
Packit afb8fc
* Fri Sep 25 2015 Kalev Lember <klember@redhat.com> - 2.32.1-1
Packit afb8fc
- Update to 2.32.1
Packit afb8fc
Packit afb8fc
* Mon Sep 21 2015 Kalev Lember <klember@redhat.com> - 2.32.0-1
Packit afb8fc
- Update to 2.32.0
Packit afb8fc
Packit afb8fc
* Tue Sep 01 2015 Kalev Lember <klember@redhat.com> - 2.31.7-1
Packit afb8fc
- Update to 2.31.7
Packit afb8fc
Packit afb8fc
* Wed Aug 19 2015 Kalev Lember <klember@redhat.com> - 2.31.6-1
Packit afb8fc
- Update to 2.31.6
Packit afb8fc
- Use make_install macro
Packit afb8fc
Packit afb8fc
* Wed Aug 05 2015 Kalev Lember <klember@redhat.com> - 2.31.5-3
Packit afb8fc
- Use the right macro name in file triggers
Packit afb8fc
Packit afb8fc
* Wed Aug  5 2015 Matthias Clasen <mclasen@redhat.com> - 2.31.5-2
Packit afb8fc
- Add file triggers
Packit afb8fc
Packit afb8fc
* Mon Jul 20 2015 David King <amigadave@amigadave.com> - 2.31.5-1
Packit afb8fc
- Update to 2.31.5
Packit afb8fc
- Use pkgconfig for some BuildRequires
Packit afb8fc
Packit afb8fc
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.31.4-2
Packit afb8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
Packit afb8fc
Packit afb8fc
* Mon May 11 2015 Kalev Lember <kalevlember@gmail.com> - 2.31.4-1
Packit afb8fc
- Update to 2.31.4
Packit afb8fc
Packit afb8fc
* Fri Mar 20 2015 Richard Hughes <rhughes@redhat.com> - 2.31.3-5
Packit afb8fc
- Fix a typo causing building applications to fail.
Packit afb8fc
Packit afb8fc
* Fri Mar 20 2015 Richard Hughes <rhughes@redhat.com> - 2.31.3-4
Packit afb8fc
- Put the xlib headers in the right package.
Packit afb8fc
Packit afb8fc
* Fri Mar 20 2015 Richard Hughes <rhughes@redhat.com> - 2.31.3-3
Packit afb8fc
- Split out the xlib code as a subpackage to allows us to depend on the core
Packit afb8fc
  library on the cloud image and not depends on half of Xorg.
Packit afb8fc
Packit afb8fc
* Fri Mar 20 2015 Richard Hughes <rhughes@redhat.com> - 2.31.3-2
Packit afb8fc
- Split out the modules as a subpackage to allows us to depend on the core
Packit afb8fc
  library on the cloud image and not drag every image loader known to man.
Packit afb8fc
Packit afb8fc
* Sat Mar 07 2015 Kalev Lember <kalevlember@gmail.com> - 2.31.3-1
Packit afb8fc
- Update to 2.31.3
Packit afb8fc
- Use the %%license macro for the COPYING file
Packit afb8fc
Packit afb8fc
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.31.2-2
Packit afb8fc
- Rebuilt for Fedora 23 Change
Packit afb8fc
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
Packit afb8fc
Packit afb8fc
* Sun Nov 23 2014 Kalev Lember <kalevlember@gmail.com> - 2.31.2-1
Packit afb8fc
- Update to 2.31.2
Packit afb8fc
Packit afb8fc
* Mon Sep 01 2014 Kalev Lember <kalevlember@gmail.com> - 2.31.1-1
Packit afb8fc
- Update to 2.31.1
Packit afb8fc
Packit afb8fc
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.31.0-3
Packit afb8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
Packit afb8fc
Packit afb8fc
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 2.31.0-2
Packit afb8fc
- Rebuilt for gobject-introspection 1.41.4
Packit afb8fc
Packit afb8fc
* Sat Jul 19 2014 Kalev Lember <kalevlember@gmail.com> - 2.31.0-1
Packit afb8fc
- Update to 2.31.0
Packit afb8fc
Packit afb8fc
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.30.8-2
Packit afb8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
Packit afb8fc
Packit afb8fc
* Tue May 27 2014 Kalev Lember <kalevlember@gmail.com> - 2.30.8-1
Packit afb8fc
- Update to 2.30.8
Packit afb8fc
Packit afb8fc
* Tue Mar 25 2014 Richard Hughes <rhughes@redhat.com> - 2.30.7-1
Packit afb8fc
- Update to 2.30.7
Packit afb8fc
Packit afb8fc
* Tue Mar 04 2014 Richard Hughes <rhughes@redhat.com> - 2.30.6-1
Packit afb8fc
- Update to 2.30.6
Packit afb8fc
Packit afb8fc
* Tue Feb 18 2014 Richard Hughes <rhughes@redhat.com> - 2.30.5-1
Packit afb8fc
- Update to 2.30.5
Packit afb8fc
Packit afb8fc
* Tue Feb 04 2014 Richard Hughes <rhughes@redhat.com> - 2.30.4-1
Packit afb8fc
- Update to 2.30.4
Packit afb8fc
Packit afb8fc
* Tue Jan 14 2014 Richard Hughes <rhughes@redhat.com> - 2.30.3-1
Packit afb8fc
- Update to 2.30.3
Packit afb8fc
Packit afb8fc
* Tue Dec 17 2013 Richard Hughes <rhughes@redhat.com> - 2.30.2-1
Packit afb8fc
- Update to 2.30.2
Packit afb8fc
Packit afb8fc
* Thu Nov 14 2013 Richard Hughes <rhughes@redhat.com> - 2.30.1-1
Packit afb8fc
- Update to 2.30.1
Packit afb8fc
Packit afb8fc
* Tue Sep 24 2013 Kalev Lember <kalevlember@gmail.com> - 2.30.0-1
Packit afb8fc
- Update to 2.30.0
Packit afb8fc
Packit afb8fc
* Fri Aug 09 2013 Kalev Lember <kalevlember@gmail.com> - 2.29.3-1
Packit afb8fc
- Update to 2.29.3
Packit afb8fc
- Tighten deps with %%_isa
Packit afb8fc
Packit afb8fc
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.29.2-2
Packit afb8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
Packit afb8fc
Packit afb8fc
* Fri Jun 21 2013 Matthias Clasen <mclasen@redhat.com> - 2.29.2-1
Packit afb8fc
- Update to 2.29.2
Packit afb8fc
- Add a tests subpackage
Packit afb8fc
Packit afb8fc
* Mon Jun 17 2013 Peter Robinson <pbrobinson@fedoraproject.org> 2.29.0-2
Packit afb8fc
- Rebuild (libpng)
Packit afb8fc
Packit afb8fc
* Sat May 04 2013 Kalev Lember <kalevlember@gmail.com> - 2.29.0-1
Packit afb8fc
- Update to 2.29.0
Packit afb8fc
Packit afb8fc
* Mon Apr 15 2013 Richard Hughes <rhughes@redhat.com> - 2.28.1-1
Packit afb8fc
- Update to 2.28.1
Packit afb8fc
Packit afb8fc
* Tue Mar 26 2013 Kalev Lember <kalevlember@gmail.com> - 2.28.0-1
Packit afb8fc
- Update to 2.28.0
Packit afb8fc
Packit afb8fc
* Wed Mar 20 2013 Kalev Lember <kalevlember@gmail.com> - 2.27.3-1
Packit afb8fc
- Update to 2.27.3
Packit afb8fc
Packit afb8fc
* Mon Mar 04 2013 Richard Hughes <rhughes@redhat.com> - 2.27.2-1
Packit afb8fc
- Update to 2.27.2
Packit afb8fc
Packit afb8fc
* Tue Feb 05 2013 Kalev Lember <kalevlember@gmail.com> - 2.27.1-1
Packit afb8fc
- Update to 2.27.1
Packit afb8fc
Packit afb8fc
* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 2.27.0-2
Packit afb8fc
- rebuild due to "jpeg8-ABI" feature drop
Packit afb8fc
Packit afb8fc
* Tue Jan 15 2013 Matthias Clasen <mclasen@redhat.com> - 2.27.0-1
Packit afb8fc
- Update to 2.27.0
Packit afb8fc
Packit afb8fc
* Tue Jan 15 2013 Ville Skyttä <ville.skytta@iki.fi> - 2.26.5-3
Packit afb8fc
- Require glib2 >= 2.34.0 for g_type_ensure().
Packit afb8fc
Packit afb8fc
* Fri Dec 21 2012 Adam Tkac <atkac redhat com> - 2.26.5-2
Packit afb8fc
- rebuild against new libjpeg
Packit afb8fc
Packit afb8fc
* Mon Nov 12 2012 Kalev Lember <kalevlember@gmail.com> - 2.26.5-1
Packit afb8fc
- Update to 2.26.5
Packit afb8fc
Packit afb8fc
* Tue Sep 18 2012 Kalev Lember <kalevlember@gmail.com> - 2.26.4-1
Packit afb8fc
- Update to 2.26.4
Packit afb8fc
Packit afb8fc
* Tue Aug 07 2012 Richard Hughes <hughsient@gmail.com> - 2.26.2-1
Packit afb8fc
- Update to 2.26.2
Packit afb8fc
Packit afb8fc
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.26.1-2
Packit afb8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
Packit afb8fc
Packit afb8fc
* Fri May 18 2012 Richard Hughes <hughsient@gmail.com> - 2.26.1-1
Packit afb8fc
- Update to 2.26.1
Packit afb8fc
Packit afb8fc
* Tue Mar 20 2012 Kalev Lember <kalevlember@gmail.com> - 2.26.0-1
Packit afb8fc
- Update to 2.26.0
Packit afb8fc
Packit afb8fc
* Mon Feb  6 2012 Matthias Clasen <mclasen@redhat.com> - 2.25.2-1
Packit afb8fc
- Update to 2.25.2
Packit afb8fc
Packit afb8fc
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.25.0-2
Packit afb8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
Packit afb8fc
Packit afb8fc
* Fri Dec 16 2011 Matthias Clasen <mclasen@redhat.com> - 2.25.0-1
Packit afb8fc
- Update to 2.25.0
Packit afb8fc
Packit afb8fc
* Mon Nov  7 2011 Matthias Clasen <mclasen@redhat.com> - 2.24.0-2
Packit afb8fc
- Rebuild against new libpng
Packit afb8fc
Packit afb8fc
* Tue Aug 30 2011 Matthias Clasen <mclasen@redhat.com> - 2.24.0-1
Packit afb8fc
- Update to 2.24.0
Packit afb8fc
Packit afb8fc
* Mon Jun 27 2011 Matthias Clasen <mclasen@redhat.com> - 2.23.5-1
Packit afb8fc
- Update to 2.23.5 (fixes CVE-2011-2485)
Packit afb8fc
Packit afb8fc
* Wed Jun 15 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.23.4-1
Packit afb8fc
- Update to 2.23.4
Packit afb8fc
Packit afb8fc
* Wed Mar 30 2011 Matthias Clasen <mclasen@redhat.com> 2.23.3-1
Packit afb8fc
- Update to 2.23.3
Packit afb8fc
Packit afb8fc
* Sat Mar  5 2011 Matthias Clasen <mclasen@redhat.com> 2.23.1-1
Packit afb8fc
- Update to 2.23.1
Packit afb8fc
Packit afb8fc
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.23.0-2
Packit afb8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
Packit afb8fc
Packit afb8fc
* Sun Jan  9 2011 Matthias Clasen <mclasen@redhat.com> 2.23.0-1
Packit afb8fc
- Update to 2.23.0
Packit afb8fc
Packit afb8fc
* Fri Nov  5 2010 Matthias Clasen <mclasen@redhat.com> 2.22.1-1
Packit afb8fc
- Update to 2.22.1
Packit afb8fc
Packit afb8fc
* Wed Sep 29 2010 jkeating - 2.22.0-2
Packit afb8fc
- Rebuilt for gcc bug 634757
Packit afb8fc
Packit afb8fc
* Tue Sep 21 2010 Matthias Clasen <mclasen@redhat.com> 2.22.0-1
Packit afb8fc
- Update to 2.22.0
Packit afb8fc
Packit afb8fc
* Mon Jul 19 2010 Bastien Nocera <bnocera@redhat.com> 2.21.6-3
Packit afb8fc
- Require libpng for linking
Packit afb8fc
Packit afb8fc
* Thu Jul 15 2010 Colin Walters <walters@verbum.org> - 2.21.6-2
Packit afb8fc
- Rebuild with new gobject-introspection
Packit afb8fc
Packit afb8fc
* Mon Jul 12 2010 Matthias Clasen <mclasen@redhat.com> - 2.21.6-1
Packit afb8fc
- Update to 2.21.6
Packit afb8fc
Packit afb8fc
* Fri Jul  2 2010 Colin Walters <walters@verbum.org> - 2.21.5-4
Packit afb8fc
- Also Require shared-mime-info for same reason
Packit afb8fc
Packit afb8fc
* Fri Jul  2 2010 Colin Walters <walters@verbum.org> - 2.21.5-3
Packit afb8fc
- BR shared-mime-info; see comment above it
Packit afb8fc
Packit afb8fc
* Tue Jun 29 2010 Colin Walters <walters@pocket> - 2.21.5-2
Packit afb8fc
- Changes to support snapshot builds
Packit afb8fc
Packit afb8fc
* Mon Jun 28 2010 Matthias Clasen <mclasen@redhat.com> 2.21.5-1
Packit afb8fc
- Update to 2.21.5
Packit afb8fc
Packit afb8fc
* Sat Jun 26 2010 Matthias Clasen <mclasen@redhat.com> 2.21.4-2
Packit afb8fc
- Rename to gdk-pixbuf2 to avoid conflict with the
Packit afb8fc
  existing gdk-pixbuf package
Packit afb8fc
Packit afb8fc
* Sat Jun 26 2010 Matthias Clasen <mclasen@redhat.com> 2.21.4-1
Packit afb8fc
- Update to 2.21.4
Packit afb8fc
- Incorporate package review feedback
Packit afb8fc
Packit afb8fc
* Sat Jun 26 2010 Matthias Clasen <mclasen@redhat.com> 2.21.3-1
Packit afb8fc
- Initial packaging