Blame SPECS/cairo.spec

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