Blame SPECS/cairo.spec

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