Blame SPECS/cairo.spec

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