093cbb
%define pixman_version 0.30.0
093cbb
%define freetype_version 2.1.9
093cbb
%define fontconfig_version 2.2.95
093cbb
093cbb
%if 0%{?fedora} > 26 || 0%{?rhel} > 7
093cbb
%global cairogl --disable-gl
093cbb
%else
093cbb
%global cairogl --enable-gl
093cbb
%global with_gl 1
093cbb
%endif
093cbb
093cbb
Name:		cairo
093cbb
Version:	1.15.12
495e36
Release:	6%{?dist}
093cbb
Summary:	A 2D graphics library
093cbb
093cbb
License:	LGPLv2 or MPLv1.1
093cbb
URL:		http://cairographics.org
093cbb
Source0:	http://cairographics.org/snapshots/%{name}-%{version}.tar.xz
093cbb
093cbb
# Backported from upstream
093cbb
Patch0:         0001-Fix-assertion-failure-in-the-freetype-backend.patch
093cbb
093cbb
Patch3:         cairo-multilib.patch
093cbb
093cbb
# https://gitlab.freedesktop.org/cairo/cairo/merge_requests/1
093cbb
Patch4:         0001-Set-default-LCD-filter-to-FreeType-s-default.patch
093cbb
495e36
# https://bugzilla.redhat.com/show_bug.cgi?id=1908113
495e36
Patch5:         cairo-1.15.12-CVE-2020-35492.patch
495e36
093cbb
BuildRequires: pkgconfig
093cbb
BuildRequires: libXrender-devel
093cbb
BuildRequires: libX11-devel
093cbb
BuildRequires: libpng-devel
093cbb
BuildRequires: libxml2-devel
093cbb
BuildRequires: pixman-devel >= %{pixman_version}
093cbb
BuildRequires: freetype-devel >= %{freetype_version}
093cbb
BuildRequires: fontconfig-devel >= %{fontconfig_version}
093cbb
BuildRequires: glib2-devel
093cbb
BuildRequires: librsvg2-devel
093cbb
%if 0%{?with_gl}
093cbb
BuildRequires: mesa-libGL-devel
093cbb
BuildRequires: mesa-libEGL-devel
093cbb
%endif
495e36
# Required for Patch5.
495e36
BuildRequires: autoconf automake libtool
495e36
BuildRequires: git-core
093cbb
093cbb
%description
093cbb
Cairo is a 2D graphics library designed to provide high-quality display
093cbb
and print output. Currently supported output targets include the X Window
093cbb
System, in-memory image buffers, and image files (PDF, PostScript, and SVG).
093cbb
093cbb
Cairo is designed to produce consistent output on all output media while
093cbb
taking advantage of display hardware acceleration when available.
093cbb
093cbb
%package devel
093cbb
Summary: Development files for cairo
093cbb
Requires: %{name}%{?_isa} = %{version}-%{release}
093cbb
093cbb
%description devel
093cbb
Cairo is a 2D graphics library designed to provide high-quality display
093cbb
and print output.
093cbb
093cbb
This package contains libraries, header files and developer documentation
093cbb
needed for developing software which uses the cairo graphics library.
093cbb
093cbb
%package gobject
093cbb
Summary: GObject bindings for cairo
093cbb
Requires: %{name}%{?_isa} = %{version}-%{release}
093cbb
093cbb
%description gobject
093cbb
Cairo is a 2D graphics library designed to provide high-quality display
093cbb
and print output.
093cbb
093cbb
This package contains functionality to make cairo graphics library
093cbb
integrate well with the GObject object system used by GNOME.
093cbb
093cbb
%package gobject-devel
093cbb
Summary: Development files for cairo-gobject
093cbb
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
093cbb
Requires: %{name}-gobject%{?_isa} = %{version}-%{release}
093cbb
093cbb
%description gobject-devel
093cbb
Cairo is a 2D graphics library designed to provide high-quality display
093cbb
and print output.
093cbb
093cbb
This package contains libraries, header files and developer documentation
093cbb
needed for developing software which uses the cairo Gobject library.
093cbb
093cbb
%package tools
093cbb
Summary: Development tools for cairo
093cbb
093cbb
%description tools
093cbb
Cairo is a 2D graphics library designed to provide high-quality display
093cbb
and print output.
093cbb
093cbb
This package contains tools for working with the cairo graphics library.
093cbb
 * cairo-trace: Record cairo library calls for later playback
093cbb
093cbb
%prep
495e36
%autosetup -S git
093cbb
093cbb
%build
495e36
autoreconf --force --install
093cbb
%configure --disable-static	\
093cbb
	--enable-xlib		\
093cbb
	--enable-ft		\
093cbb
	--enable-ps		\
093cbb
	--enable-pdf		\
093cbb
	--enable-svg		\
093cbb
	--enable-tee		\
093cbb
	--enable-gobject	\
093cbb
	%{cairogl}		\
093cbb
	--disable-gtk-doc
093cbb
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
093cbb
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
093cbb
make V=1 %{?_smp_mflags}
093cbb
093cbb
%install
093cbb
%make_install
093cbb
find $RPM_BUILD_ROOT -name '*.la' -delete
093cbb
093cbb
%ldconfig_scriptlets
093cbb
%ldconfig_scriptlets gobject
093cbb
093cbb
%files
093cbb
%license COPYING COPYING-LGPL-2.1 COPYING-MPL-1.1
093cbb
%doc AUTHORS BIBLIOGRAPHY BUGS NEWS README
093cbb
%{_libdir}/libcairo.so.*
093cbb
%{_libdir}/libcairo-script-interpreter.so.*
093cbb
%{_bindir}/cairo-sphinx
093cbb
093cbb
%files devel
093cbb
%doc ChangeLog PORTING_GUIDE
093cbb
%dir %{_includedir}/cairo/
093cbb
%{_includedir}/cairo/cairo-deprecated.h
093cbb
%{_includedir}/cairo/cairo-features.h
093cbb
%{_includedir}/cairo/cairo-ft.h
093cbb
%{_includedir}/cairo/cairo.h
093cbb
%{_includedir}/cairo/cairo-pdf.h
093cbb
%{_includedir}/cairo/cairo-ps.h
093cbb
%{_includedir}/cairo/cairo-script-interpreter.h
093cbb
%{_includedir}/cairo/cairo-svg.h
093cbb
%{_includedir}/cairo/cairo-tee.h
093cbb
%{_includedir}/cairo/cairo-version.h
093cbb
%{_includedir}/cairo/cairo-xlib-xrender.h
093cbb
%{_includedir}/cairo/cairo-xlib.h
093cbb
%{_includedir}/cairo/cairo-script.h
093cbb
%{_includedir}/cairo/cairo-xcb.h
093cbb
%{_libdir}/libcairo.so
093cbb
%{_libdir}/libcairo-script-interpreter.so
093cbb
%{_libdir}/pkgconfig/cairo-fc.pc
093cbb
%{_libdir}/pkgconfig/cairo-ft.pc
093cbb
%{_libdir}/pkgconfig/cairo.pc
093cbb
%{_libdir}/pkgconfig/cairo-pdf.pc
093cbb
%{_libdir}/pkgconfig/cairo-png.pc
093cbb
%{_libdir}/pkgconfig/cairo-ps.pc
093cbb
%{_libdir}/pkgconfig/cairo-svg.pc
093cbb
%{_libdir}/pkgconfig/cairo-tee.pc
093cbb
%{_libdir}/pkgconfig/cairo-xlib.pc
093cbb
%{_libdir}/pkgconfig/cairo-xlib-xrender.pc
093cbb
%{_libdir}/pkgconfig/cairo-script.pc
093cbb
%{_libdir}/pkgconfig/cairo-xcb-shm.pc
093cbb
%{_libdir}/pkgconfig/cairo-xcb.pc
093cbb
%{_datadir}/gtk-doc/html/cairo
093cbb
%if 0%{?with_gl}
093cbb
%{_includedir}/cairo/cairo-gl.h
093cbb
%{_libdir}/pkgconfig/cairo-egl.pc
093cbb
%{_libdir}/pkgconfig/cairo-gl.pc
093cbb
%{_libdir}/pkgconfig/cairo-glx.pc
093cbb
%endif
093cbb
093cbb
%files gobject
093cbb
%{_libdir}/libcairo-gobject.so.*
093cbb
093cbb
%files gobject-devel
093cbb
%{_includedir}/cairo/cairo-gobject.h
093cbb
%{_libdir}/libcairo-gobject.so
093cbb
%{_libdir}/pkgconfig/cairo-gobject.pc
093cbb
093cbb
%files tools
093cbb
%{_bindir}/cairo-trace
093cbb
%{_libdir}/cairo/
093cbb
093cbb
%changelog
495e36
* Thu Jan 20 2022 David King <dking@redhat.com> - 1.15.12-6
495e36
- Fix CVE reference test (#1908113)
495e36
495e36
* Thu Jan 20 2022 David King <dking@redhat.com> - 1.15.12-5
495e36
- Add reference test to CVE fix (#1908113)
495e36
495e36
* Mon Jan 17 2022 David King <dking@redhat.com> - 1.15.12-4
495e36
- Fix CVE-2020-35492 (#1908113)
495e36
093cbb
* Thu Dec  6 2018 Marek Kasik <mkasik@redhat.com> - 1.15.12-3
093cbb
- Set default LCD filter to FreeType's default
093cbb
- Resolves: #1651240
093cbb
093cbb
* Sat Apr 21 2018 Kalev Lember <klember@redhat.com> - 1.15.12-2
093cbb
- Fix assertion failure in the freetype backend (#1567633)
093cbb
093cbb
* Thu Apr 12 2018 Kalev Lember <klember@redhat.com> - 1.15.12-1
093cbb
- Update to 1.15.12
093cbb
093cbb
* Mon Mar 19 2018 Adam Jackson <ajax@redhat.com> - 1.15.10-5
093cbb
- Update the description to reflect dropping the OpenGL backend.
093cbb
093cbb
* Thu Mar 15 2018 Adam Jackson <ajax@redhat.com> - 1.15.10-4
093cbb
- Drop cairo-gl in RHEL too.
093cbb
093cbb
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.15.10-3
093cbb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
093cbb
093cbb
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.15.10-2
093cbb
- Switch to %%ldconfig_scriptlets
093cbb
093cbb
* Tue Dec 12 2017 Kalev Lember <klember@redhat.com> - 1.15.10-1
093cbb
- Update to 1.15.10
093cbb
093cbb
* Thu Aug 31 2017 Kalev Lember <klember@redhat.com> - 1.15.8-1
093cbb
- Update to 1.15.8
093cbb
093cbb
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.10-4
093cbb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
093cbb
093cbb
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.10-3
093cbb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
093cbb
093cbb
* Thu Jul 13 2017 Adam Jackson <ajax@redhat.com> - 1.14.10-2
093cbb
- Disable cairo-gl in F27+
093cbb
093cbb
* Fri Jun 16 2017 Kalev Lember <klember@redhat.com> - 1.14.10-1
093cbb
- Update to 1.14.10
093cbb
093cbb
* Wed Apr 19 2017 Kalev Lember <klember@redhat.com> - 1.14.8-3
093cbb
- Remove all libtool .la files from cairo private directories as well
093cbb
093cbb
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.8-2
093cbb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
093cbb
093cbb
* Thu Dec 08 2016 Kalev Lember <klember@redhat.com> - 1.14.8-1
093cbb
- Update to 1.14.8
093cbb
093cbb
* Mon Jul 25 2016 Kalev Lember <klember@redhat.com> - 1.14.6-2
093cbb
- xlib: Fix double free in _get_image_surface() (#1331021)
093cbb
- Minor spec file cleanups
093cbb
093cbb
* Mon Apr 04 2016 Kalev Lember <klember@redhat.com> - 1.14.6-1
093cbb
- Update to 1.14.6
093cbb
093cbb
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.4-2
093cbb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
093cbb
093cbb
* Sat Oct 31 2015 Kalev Lember <klember@redhat.com> - 1.14.4-1
093cbb
- Update to 1.14.4
093cbb
- Use license macro for COPYING*
093cbb
093cbb
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.14.2-2
093cbb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
093cbb
093cbb
* Wed Mar 11 2015 Kalev Lember <kalevlember@gmail.com> - 1.14.2-1
093cbb
- Update to 1.14.2
093cbb
093cbb
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 1.14.0-3
093cbb
- Rebuilt for Fedora 23 Change
093cbb
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
093cbb
093cbb
* Thu Jan 29 2015 Kevin Fenzi <kevin@scrye.com> 1.14.0-2
093cbb
- Add patch to fix crashes in dot. Fixes bug #1183242
093cbb
093cbb
* Sun Nov 23 2014 Kalev Lember <kalevlember@gmail.com> - 1.14.0-1
093cbb
- Update to 1.14.0
093cbb
093cbb
* Tue Oct 14 2014 Kalev Lember <kalevlember@gmail.com> - 1.13.1-0.5.git337ab1f
093cbb
- Minor spec file cleanup:
093cbb
- Drop manual -devel subpackage deps
093cbb
- Tighten deps with the _isa macro
093cbb
093cbb
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.13.1-0.4.git337ab1f
093cbb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
093cbb
093cbb
* Fri Jul 11 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.13.1-0.3.git337ab1f
093cbb
- Enable make check but don't (currently) fail the build on failure
093cbb
093cbb
* Fri Jun  6 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.13.1-0.2.git337ab1f
093cbb
- Compile with -flto -ffat-lto-objects CFLAGS to fix FTBFSF with gcc 4.9
093cbb
093cbb
* Tue Sep 17 2013 Kalev Lember <kalevlember@gmail.com> - 1.13.1-0.1.git337ab1f
093cbb
- Update to 1.13.1 git snapshot for device scale support
093cbb
093cbb
* Wed Aug 28 2013 Kalev Lember <kalevlember@gmail.com> - 1.12.16-1
093cbb
- Update to 1.12.16
093cbb
093cbb
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.12.14-4
093cbb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
093cbb
093cbb
* Thu Jul 18 2013 Matthias Clasen <mclasen@redhat.com> 1.12.14-3
093cbb
- Fix a multilib issue in /usr/bin/cairo-trace
093cbb
093cbb
* Sat May 25 2013 Kalev Lember <kalevlember@gmail.com> 1.12.14-2
093cbb
- Backport an upstream patch for eog get_buddy() crashes (#912030)
093cbb
093cbb
* Tue Feb 12 2013 Adam Jackson <ajax@redhat.com> 1.12.14-1
093cbb
- cairo 1.12.14
093cbb
093cbb
* Mon Jan 28 2013 Adam Jackson <ajax@redhat.com> 1.12.10-2
093cbb
- cairo-1.12.10-xlib-regression-fix.patch: Fix a regression caused by
093cbb
  mit-shm surfaces.
093cbb
093cbb
* Wed Jan 16 2013 Adam Jackson <ajax@redhat.com> 1.12.10-1
093cbb
- cairo 1.12.10
093cbb
- 0001-xlib-shm-Fix-memory-leak.patch: Drop, merged.
093cbb
093cbb
* Wed Jan  2 2013 Matthias Clasen <mclasen@redhat.com> - 1.12.8-3
093cbb
- Make inter-subpackage deps explicit
093cbb
093cbb
* Tue Dec 18 2012 Adam Jackson <ajax@redhat.com> 1.12.8-2
093cbb
- 0001-xlib-shm-Fix-memory-leak.patch: Fix a memory leak with shm image
093cbb
  surfaces. (#882976)
093cbb
093cbb
* Mon Nov  5 2012 Matthias Clasen <mclasen@redhat.com> - 1.12.8-1
093cbb
- Update to 1.12.8, including a fix for screenshots in fallback mode
093cbb
093cbb
* Wed Oct 31 2012 Adam Jackson <ajax@redhat.com> 1.12.6-2
093cbb
- *-x{c,li}b-Don-t-crash-when-swapping-a-0-sized-glyph.patch: Fix some
093cbb
  crashes when client and server endian don't match.
093cbb
093cbb
* Thu Oct 25 2012 Kalev Lember <kalevlember@gmail.com> - 1.12.6-1
093cbb
- Update to 1.12.6
093cbb
093cbb
* Fri Oct 12 2012 Matthias Clasen <mclasen@redhat.com> - 1.12.4-1
093cbb
- 1.12.4
093cbb
- drop obsolete patch
093cbb
093cbb
* Wed Sep 19 2012 Thorsten Leemhuis <fedora@leemhuis.info> - 1.12.2-4.1
093cbb
- rebuild for f18
093cbb
093cbb
* Tue Sep 18 2012 Thorsten Leemhuis <fedora@leemhuis.info> - 1.12.2-4
093cbb
- add patch from master to fix issues with weston
093cbb
093cbb
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.12.2-3
093cbb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
093cbb
093cbb
* Sat Jul 14 2012 Ville Skyttä <ville.skytta@iki.fi> - 1.12.2-2
093cbb
- Add ldconfig scriptlet calls to -gobject.
093cbb
- Fix rpmlint's spaces vs tabs warnings.
093cbb
093cbb
* Fri May 18 2012 Matthias Clasen <mclasen@redhat.com> - 1.12.2-1
093cbb
- Update to 1.12.2
093cbb
093cbb
* Tue Apr 24 2012 Richard Hughes <rhughes@redhat.com> - 1.12.0-1
093cbb
- Update to latest stable release
093cbb
- Enable the GL backend
093cbb
093cbb
* Thu Mar 15 2012 Benjamin Otte <otte@redhat.com> - 1.10.2-7
093cbb
- Add patch to make eclipse not crash (#803878)
093cbb
093cbb
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.2-6
093cbb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
093cbb
093cbb
* Mon Dec 05 2011 Adam Jackson <ajax@redhat.com> 1.10.2-5
093cbb
- Rebuild for new libpng
093cbb
093cbb
* Fri Jul 01 2011 Rex Dieter <rdieter@fedoraproject.org> 1.10.2-4
093cbb
- cairo-devel doesn't own /usr/include/cairo (#716611)
093cbb
093cbb
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.2-3
093cbb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
093cbb
093cbb
* Mon Jan 24 2011 Christopher Aillon <caillon@redhat.com> - 1.10.2-2
093cbb
- Enable tee support
093cbb
093cbb
* Mon Jan 03 2011 Benjamin Otte <otte@redhat.com> - 1.10.2-1
093cbb
- Update to 1.10.2
093cbb
093cbb
* Thu Nov 11 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 1.10.0-4
093cbb
- add missing BuildRequires: librsvg2 for SVG support
093cbb
093cbb
* Wed Sep 29 2010 jkeating - 1.10.0-3
093cbb
- Rebuilt for gcc bug 634757
093cbb
093cbb
* Thu Sep 16 2010 Matthias Clasen <mclasen@redhat.com> - 1.10.0-2
093cbb
- Drop the explicit dep on the wrong package from -gobject-devel
093cbb
093cbb
* Tue Sep 07 2010 Benjamin Otte <otte@redhat.com> - 1.10.0-1
093cbb
- Update to 1.10.0
093cbb
- Add cairo-gobject package
093cbb
093cbb
* Mon Jul 26 2010 Benjamin Otte <otte@redhat.com> - 1.9.14-1
093cbb
- Update to 1.9.14 snapshot
093cbb
093cbb
* Sun Jul 04 2010 Benjamin Otte <otte@redhat.com> - 1.9.12-1
093cbb
- Update to 1.9.12 snapshot
093cbb
- Remove now unnecessary patch
093cbb
093cbb
* Sun Jul 04 2010 Benjamin Otte <otte@redhat.com> - 1.9.10-3
093cbb
- Add patch to force linking with gcc, not g++. (#606523)
093cbb
093cbb
* Sun Jul 04 2010 Benjamin Otte <otte@redhat.com> - 1.9.10-2
093cbb
- Don't use silent rules, we want verbose output in builders
093cbb
093cbb
* Sun Jun 27 2010 Benjamin Otte <otte@redhat.com> - 1.9.10-1
093cbb
- Update to 1.9.10 snapshot
093cbb
093cbb
* Thu Jun 17 2010 Benjamin Otte <otte@redhat.com> - 1.9.8-1
093cbb
- Update to 1.9.8 snapshot
093cbb
093cbb
* Sun Feb 21 2010 Matthias Clasen <mclasen@redhat.com> - 1.8.10-1
093cbb
- Update to 1.8.10
093cbb
093cbb
* Sun Aug  2 2009 Matthias Clasen <mclasen@redhat.com> - 1.8.8-3
093cbb
- Move ChangeLog to -devel to save space
093cbb
093cbb
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.8-2
093cbb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
093cbb
093cbb
* Wed Jun 17 2009 Matthias Clasen <mclasen@redhat.com> 1.8.8-1
093cbb
- Update to 1.8.8
093cbb
093cbb
* Wed Apr 08 2009 Adam Jackson <ajax@redhat.com> 1.8.6-3
093cbb
- cairo-1.8.6-repeat-modes.patch: Enable the repeat and pad blend modes in
093cbb
  the xlib backend to make firefox performance slightly less dire.
093cbb
093cbb
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.6-2
093cbb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
093cbb
093cbb
* Wed Jan  7 2009 Matthias Clasen <mclasen@redhat.com> 1.8.6-1
093cbb
- Update to 1.8.6
093cbb
093cbb
* Sun Dec 14 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> 1.8.0-3
093cbb
- Rebuild for pkgconfig provides
093cbb
093cbb
* Fri Nov 21 2008 Matthias Clasen <mclasen@redhat.com> 1.8.0-2
093cbb
- Tweak %%summary and %%documentation
093cbb
093cbb
* Thu Sep 25 2008 Behdad Esfahbod <besfahbo@redhat.com> 1.8.0-1
093cbb
- Update to 1.8.0
093cbb
- Update dep versions
093cbb
093cbb
* Mon Sep 22 2008 Behdad Esfahbod <besfahbo@redhat.com> 1.7.6-1
093cbb
- Update to 1.7.6
093cbb
093cbb
* Mon Aug 11 2008 Matthias Clasen <mclasen@redhat.com> 1.7.4-1
093cbb
- Update to 1.7.4
093cbb
093cbb
* Wed May 21 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.6.4-3
093cbb
- fix license tag
093cbb
093cbb
* Sun May  4 2008 Matthias Clasen <mclasen@redhat.com> 1.6.4-2
093cbb
- Fix source url
093cbb
093cbb
* Fri Apr 11 2008 Carl Worth <cworth@redhat.com> 1.6.2-1
093cbb
- Update to 1.6.2
093cbb
093cbb
* Thu Apr 10 2008 Carl Worth <cworth@redhat.com> 1.6.0-1
093cbb
- Update to 1.6.0
093cbb
093cbb
* Tue Apr  8 2008 Carl Worth <cworth@redhat.com> 1.5.20-1
093cbb
- Update to 1.5.20
093cbb
093cbb
* Sun Apr  6 2008 Carl Worth <cworth@redhat.com> 1.5.18-1
093cbb
- Update to 1.5.18
093cbb
093cbb
* Thu Apr  3 2008 Matthias Clasen <mclasen@redhat.com> 1.5.16-1
093cbb
- Update to 1.5.16
093cbb
093cbb
* Fri Mar 21 2008 Matthias Clasen <mclasen@redhat.com> 1.5.14-1
093cbb
- Update to 1.5.14
093cbb
093cbb
* Wed Feb 20 2008 Behdad Esfahbod <besfahbo@redhat.com>
093cbb
- Point Source to cairographics.org/snapshots.  Change back to /releases
093cbb
  when 1.6.0 is out.
093cbb
093cbb
* Wed Jan 30 2008 Behdad Esfahbod <besfahbo@redhat.com> 1.5.8-2
093cbb
- Remove TODO and ROADMAP as they were removed from tarball upstream.
093cbb
093cbb
* Wed Jan 30 2008 Behdad Esfahbod <besfahbo@redhat.com> 1.5.8-1
093cbb
- Update to 1.5.8
093cbb
093cbb
* Thu Jan 17 2008 Behdad Esfahbod <besfahbo@redhat.com> 1.5.6-1
093cbb
- Update to 1.5.6
093cbb
093cbb
* Thu Dec  6 2007 Matthias Clasen <mclasen@redhat.com> - 1.5.4-1
093cbb
- Update to 1.5.4
093cbb
093cbb
* Wed Oct 31 2007 Behdad Esfahbod <besfahbo@redhat.com> 1.5.2-1
093cbb
- Update to 1.5.2
093cbb
- Switch to external pixman.
093cbb
093cbb
* Wed Aug 22 2007 Adam Jackson <ajax@redhat.com> - 1.4.10-2
093cbb
- Rebuild for PPC toolchain bug
093cbb
093cbb
* Wed Jun 27 2007 Carl Worth <cworth@redhat.com> 1.4.10-1
093cbb
- Update to 1.4.10
093cbb
093cbb
* Sat Jun 9 2007 Behdad Esfahbod <besfahbo@redhat.com> 1.4.8-1
093cbb
- Update to 1.4.8
093cbb
093cbb
* Tue May  1 2007 Carl Worth <cworth@redhat.com> 1.4.6-1
093cbb
- Update to 1.4.6
093cbb
093cbb
* Mon Apr 16 2007 Carl Worth <cworth@redhat.com> 1.4.4-1
093cbb
- Update to 1.4.4
093cbb
093cbb
* Tue Mar 20 2007 Carl Worth <cworth@redhat.com> 1.4.2-1
093cbb
- Update to 1.4.2
093cbb
093cbb
* Tue Mar  6 2007 Carl Worth <cworth@redhat.com> 1.4.0-1
093cbb
- Update to 1.4.0
093cbb
093cbb
* Wed Feb 14 2007 Carl Worth <cworth@redhat.com> 1.3.14-1
093cbb
- Update to 1.3.14
093cbb
093cbb
* Sat Jan 20 2007 Carl Worth <cworth@redhat.com> 1.3.12-1
093cbb
- Update to 1.3.12
093cbb
093cbb
* Sat Dec 23 2006 Carl Worth <cworth@redhat.com> 1.3.10-1
093cbb
- Update to 1.3.10
093cbb
093cbb
* Thu Dec 14 2006 Carl Worth <cworth@redhat.com> 1.3.8-1
093cbb
- Update to 1.3.8
093cbb
093cbb
* Sat Dec  9 2006 Matthias Clasen <mclasen@redhat.com> 1.3.6-2
093cbb
- Small spec file cleanups
093cbb
093cbb
* Wed Dec  6 2006 Matthias Clasen <mclasen@redhat.com> 1.3.6-1
093cbb
- Update to 1.3.6
093cbb
093cbb
* Thu Nov 23 2006 Matthias Clasen <mclasen@redhat.com> 1.3.4-1
093cbb
- Update to 1.3.4
093cbb
093cbb
* Wed Nov 15 2006 Carl Worth <cworth@redhat.com> 1.3.2-1
093cbb
- Update to 1.3.2
093cbb
093cbb
* Sun Nov  5 2006 Matthias Clasen <mclasen@redhat.com> 1.2.6-1
093cbb
- Update to 1.2.6
093cbb
093cbb
* Sun Aug 20 2006 Behdad Esfahbod <besfahbo@redhat.com> 1.2.4-1
093cbb
- Update to 1.2.4
093cbb
- Drop libXt-devel BuildReq as it shouldn't need it anymore.
093cbb
093cbb
* Wed Aug  9 2006 Behdad Esfahbod <besfahbo@redhat.com> 1.2.2-3
093cbb
- Remove unnecessary --disable-* arguments to configure, add --enable-*
093cbb
  for those backends we really want to make sure are enabled.
093cbb
093cbb
* Wed Aug  9 2006 Ray Strode <rstrode@redhat.com> - 1.2.2-2
093cbb
- add lame libXt-devel BuildReq to get things building again.
093cbb
- small spec tweaks to follow conventions
093cbb
093cbb
* Wed Aug  9 2006 Behdad Esfahbod <besfahbo@redhat.com> 1.2.2-1
093cbb
- Update to 1.2.2
093cbb
093cbb
* Tue Jul 18 2006 Matthias Clasen <mclasen@redhat.com> - 1.2.0-2
093cbb
- rebuild
093cbb
093cbb
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.2.0-1.1
093cbb
- rebuild
093cbb
093cbb
* Mon Jul  3 2006 Matthias Clasen <mclasen@redhat.com> 1.2.0-1
093cbb
- Update to 1.2.0
093cbb
093cbb
* Fri Jun 16 2006 Carl Worth <cworth@redhat.com> 1.1.10-1
093cbb
- Update to 1.1.10 (fixes crash on 16-bit X servers like Xvnc)
093cbb
093cbb
* Wed Jun 14 2006 Matthias Clasen <mclasen@redhat.com> 1.1.8-1
093cbb
- Update to 1.1.8
093cbb
093cbb
* Tue May 16 2006 Karsten Hopp <karsten@redhat.de> 1.1.6-6
093cbb
- buildrequire libxml2-devel
093cbb
093cbb
* Fri May  5 2006 Carl Worth <cworth@redhat.com> - 1.1.6-2
093cbb
- Refuse to build pdf2svg to avoid depending on newer poppler
093cbb
093cbb
* Fri May  5 2006 Carl Worth <cworth@redhat.com> - 1.1.6-1
093cbb
- Update to new upstream 1.1.6
093cbb
093cbb
* Wed May  3 2006 Carl Worth <cworth@redhat.com> - 1.1.4-2
093cbb
- Revert upstream commit that introduced a dependency on a newer
093cbb
  poppler version for the PDF tests.
093cbb
093cbb
* Wed May  3 2006 Carl Worth <cworth@redhat.com> - 1.1.4-1
093cbb
- Update to new upstream 1.1.4
093cbb
- Drop both embedded-bitmaps and XRenderAddGlyphs patches as both now
093cbb
  have upstream versions
093cbb
093cbb
* Fri Apr 28 2006 Carl Worth <cworth@redhat.com> - 1.1.2-2
093cbb
- Add suggested patch for XRenderAddGlyphs crash of bug #4705
093cbb
  https://bugs.freedesktop.org/show_bug.cgi?id=4705
093cbb
093cbb
* Tue Apr 25 2006 Carl Worth <cworth@redhat.com> - 1.1.2-1
093cbb
- Update to new upstream 1.1.2
093cbb
- Port forward the embedded bitmaps patch (now committed upstream to
093cbb
  1.1.3)
093cbb
- Drop build-fix and chunk-glyphs patches which now come from upstream
093cbb
093cbb
* Wed Mar 15 2006 Matthias Clasen <mclasen@redhat.com> - 1.0.4-1
093cbb
- Update to 1.0.4
093cbb
- Drop upstreamed patches
093cbb
093cbb
* Fri Mar  3 2006 Carl Worth <cworth@redhat.com> - 1.0.2-5
093cbb
- add patch to chunk Xlib glyph compositing (bug 182416 and
093cbb
  CVE-20060528)
093cbb
093cbb
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.0.2-4.2
093cbb
- bump again for double-long bug on ppc(64)
093cbb
093cbb
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.0.2-4.1
093cbb
- rebuilt for new gcc4.1 snapshot and glibc changes
093cbb
093cbb
* Tue Jan 31 2006 Ray Strode <rstrode@redhat.com> 1.0.2-4
093cbb
- add patch from Tim Mayberry to support embbedded bitmap
093cbb
  fonts (bug 176910)
093cbb
093cbb
* Tue Jan  3 2006 Jesse Keating <jkeating@redhat.com> 1.0.2-3.2
093cbb
- rebuilt again
093cbb
093cbb
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
093cbb
- rebuilt
093cbb
093cbb
* Mon Oct 31 2005 Matthias Clasen <mclasen@redhat.com> 1.0.2-3
093cbb
- Require libXrender-devel instead of xorg-X11-devel
093cbb
093cbb
* Tue Oct 11 2005 Kristian Høgsberg <krh@redhat.com> 1.0.2-2
093cbb
- Rebuild against freetype-2.10 to pick up FT_GlyphSlot_Embolden.
093cbb
093cbb
* Thu Oct  6 2005 Kristian Høgsberg <krh@redhat.com> - 1.0.2-1
093cbb
- Update to cairo-1.0.2.
093cbb
093cbb
* Wed Aug 24 2005 Kristian Høgsberg <krh@redhat.com> - 1.0.0-1
093cbb
- Update to cairo-1.0.0.
093cbb
- Drop cairo-0.9.2-cache-eviction-fix.patch and
093cbb
  cairo-0.9.2-dont-hash-null-string.patch.
093cbb
093cbb
* Fri Aug 19 2005 Kristian Høgsberg <krh@redhat.com> 0.9.2-3
093cbb
- Add cairo-0.9.2-dont-hash-null-string.patch to avoid crash when
093cbb
  creating a cairo font from a FT_Face.
093cbb
093cbb
* Tue Aug 16 2005 Kristian Høgsberg <krh@redhat.com> - 0.9.2-2
093cbb
- Rebuild against new freetype to get rid of --rpath in cairo.pc.
093cbb
093cbb
* Mon Aug 15 2005 Kristian Høgsberg <krh@redhat.com> 0.9.2-1
093cbb
- Also obsolete libpixman-debuginfo.
093cbb
- Add cairo-0.9.2-cache-eviction-fix.patch to fix ft font cache eviction.
093cbb
093cbb
* Sun Aug 14 2005 Kristian Høgsberg <krh@redhat.com> 0.9.2-1
093cbb
- Update to cairo 0.9.2.  Add Obsoletes: for libpixman <= 0.1.6.
093cbb
- Drop cairo-0.6.0-font-options-to-scaled-font.patch.
093cbb
093cbb
* Tue Aug  2 2005 Kristian Høgsberg <krh@redhat.com> - 0.6.0-2
093cbb
- Add cairo-0.6.0-font-options-to-scaled-font.patch to make sure font
093cbb
  cache eviction works correctly (#164664).
093cbb
093cbb
* Thu Jul 28 2005 Owen Taylor <otaylor@devserv.devel.redhat.com> 0.6.0-1
093cbb
- Update to cairo-0.6.0
093cbb
093cbb
* Mon Jul 18 2005 Kristian Høgsberg <krh@redhat.com> 0.5.2-1
093cbb
- Update to cairo-0.5.2 and drop bitmap font patch.
093cbb
093cbb
* Wed Jul  6 2005 Kristian Høgsberg <krh@redhat.com> - 0.5.1-5
093cbb
- Fix typo in use of libpixman_version macro (Thanks to Michael
093cbb
  Schwendt, #162550).
093cbb
093cbb
* Sun Jun 26 2005 Kristian Høgsberg <krh@redhat.com> - 0.5.1-4
093cbb
- Add more missing devel package requires (libpng-devel and
093cbb
  xorg-x11-devel) (#161688)
093cbb
- Add Owens patch (cairo-0.5.1-bitmap-fonts.patch) to make bitmap
093cbb
  fonts work with cairo (#161653).
093cbb
093cbb
* Wed Jun 22 2005 Kristian Høgsberg <krh@redhat.com> - 0.5.1-3
093cbb
- Add requirement on libpixman-devel for devel package.
093cbb
093cbb
* Tue Jun 21 2005 Kristian Høgsberg <krh@redhat.com> - 0.5.1-2
093cbb
- Package gtk docs as part of devel package.
093cbb
- Nuke static library.
093cbb
- Update devel files so /usr/include/cairo is owned by devel package.
093cbb
093cbb
* Mon Jun 20 2005 Kristian Høgsberg <krh@redhat.com> - 0.5.1-1
093cbb
- Update to cairo 0.5.1.
093cbb
- Remove gtk-doc files, since --disable-gtk-doc doesn't work.
093cbb
- Disable gtk-doc and add freetype and fontconfig BuildRequires.
093cbb
093cbb
* Tue Jun 14 2005 Kristian Høgsberg <krh@redhat.com> - 0.5.0-2
093cbb
- Add libpixman-devel BuildRequires.
093cbb
- Explicitly disable win32 backend.
093cbb
093cbb
* Tue May 17 2005 Kristian Høgsberg <krh@redhat.com> - 0.5.0-1
093cbb
- Update to 0.5.0.
093cbb
093cbb
* Sun Jan 23 2005 Kristian Høgsberg <krh@redhat.com> - 0.3.0-1
093cbb
- Update to 0.3.0, explicitly disable more backends.
093cbb
093cbb
* Tue Nov 16 2004 Kristian Høgsberg <krh@redhat.com> - 0.2.0-1
093cbb
- Incorporate changes suggested by katzj: Require: ldconfig and run it
093cbb
  in %%post and %%postun, don't pass CFLAGS to make.
093cbb
093cbb
* Mon Aug  9 2004 Kristian Høgsberg <krh@redhat.com> - 0.2.0-1
093cbb
- Update license, explicitly disable glitz.
093cbb
- Create package.