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