Hello community, here is the log from the commit of package gimp for openSUSE:Factory checked in at 2013-12-23 19:33:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gimp (Old) and /work/SRC/openSUSE:Factory/.gimp.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gimp" Changes: -------- --- /work/SRC/openSUSE:Factory/gimp/gimp.changes 2013-11-27 15:28:33.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.gimp.new/gimp.changes 2013-12-23 19:33:14.000000000 +0100 @@ -1,0 +2,32 @@ +Wed Dec 11 17:18:44 UTC 2013 - [email protected] + +- Add gimp-use-recommended-freetype-include.patch: + Freetype upstream recommends using their macros together with + ft2build include. Positive sideeffect is that this patch makes + it build with both freetype2 2.5.1, and older versions. + +------------------------------------------------------------------- +Sun Dec 1 21:49:27 UTC 2013 - [email protected] + +- Update to version 2.8.10: + + Core: + - Set manifest as Windows 8 compatible. + + GUI: + - Indicate if a file was exported in the Quit dialog. + - Add shortcuts and hint labels to the close and quit dialogs + that make closing and quitting easier and more consistent. + - Rename the File->Export menu labels to match Save/Save as. + - Fix keyboard shortcuts on OSX Mavericks. + - Don't open lots of progress popups when opening many files. + - Correctly restore the hidden state of docks in single window + mode. + + Libgimp: + - Fix exporting an image consisting of a single layer group. + - Don't attempt to pick transparent colors. + + Plug-ins: Fix crash in LCMS plugin if RGB profile was missing. + + General: + - Fix compile on NetBSD (missing -lexecinfo). + - Bug fixes. + + Updated translations. + +------------------------------------------------------------------- Old: ---- gimp-2.8.8.tar.bz2 New: ---- gimp-2.8.10.tar.bz2 gimp-use-recommended-freetype-include.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gimp.spec ++++++ --- /var/tmp/diff_new_pack.QGxxui/_old 2013-12-23 19:33:15.000000000 +0100 +++ /var/tmp/diff_new_pack.QGxxui/_new 2013-12-23 19:33:15.000000000 +0100 @@ -20,7 +20,7 @@ %global apiver 2.0 Name: gimp -Version: 2.8.8 +Version: 2.8.10 Release: 0 Summary: The GNU Image Manipulation Program License: GPL-3.0+ @@ -31,6 +31,8 @@ # openSUSE palette file Source2: openSUSE.gpl Source99: baselibs.conf +# PATCH-FIX-UPSTREAM gimp-use-recommended-freetype-include.patch bgo#719560 [email protected] -- Use freetype upstream recommended #include style, taken from git +Patch0: gimp-use-recommended-freetype-include.patch BuildRequires: aalib-devel BuildRequires: alsa-devel >= 1.0.0 BuildRequires: babl-devel >= 0.1.10 @@ -222,6 +224,7 @@ %lang_package %prep %setup -q +%patch0 -p1 translation-update-upstream translation-update-upstream po-libgimp gimp20-libgimp translation-update-upstream po-python gimp20-python @@ -316,6 +319,8 @@ %{_bindir}/gimp-2.? %{_bindir}/gimp-console %{_bindir}/gimp-console-2.? +%dir %{_datadir}/appdata +%{_datadir}/appdata/gimp.appdata.xml %{_datadir}/applications/gimp.desktop %{_datadir}/icons/hicolor/*/apps/*.png %{_datadir}/gimp/ ++++++ gimp-2.8.8.tar.bz2 -> gimp-2.8.10.tar.bz2 ++++++ /work/SRC/openSUSE:Factory/gimp/gimp-2.8.8.tar.bz2 /work/SRC/openSUSE:Factory/.gimp.new/gimp-2.8.10.tar.bz2 differ: char 11, line 1 ++++++ gimp-use-recommended-freetype-include.patch ++++++ >From 6c73f28b6d87a2afd11974552a075bffec52347f Mon Sep 17 00:00:00 2001 From: Michael Natterer <[email protected]> Date: Fri, 29 Nov 2013 20:57:46 +0000 Subject: Bug 719560 - Build failure with freetype 2.5.1 Apply patch from su-v that fixes the freetype include to the madness devised and recommended by freetype. --- (limited to 'app/text/gimpfont.c') diff --git a/app/text/gimpfont.c b/app/text/gimpfont.c index 4045ca9..66c6e52 100644 --- a/app/text/gimpfont.c +++ b/app/text/gimpfont.c @@ -28,7 +28,9 @@ #define PANGO_ENABLE_ENGINE 1 /* Argh */ #include <pango/pango-ot.h> -#include <freetype/tttables.h> + +#include <ft2build.h> +#include FT_TRUETYPE_TABLES_H #include "text-types.h" -- cgit v0.9.2 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
