Blame SPECS/cairo.spec

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