All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexander Kanavin <alexander.kanavin@linux.intel.com>
To: openembedded-devel@lists.openembedded.org
Subject: [PATCH 27/38] gimp: accept newer versins of babl and gegl
Date: Wed,  9 Mar 2016 17:05:43 +0200	[thread overview]
Message-ID: <92e3de59f7869fa8e4e010bb844c8a12e488bc33.1457535831.git.alexander.kanavin@linux.intel.com> (raw)
In-Reply-To: <cover.1457535831.git.alexander.kanavin@linux.intel.com>
In-Reply-To: <cover.1457535831.git.alexander.kanavin@linux.intel.com>

Add a patch that makes gimp accept new versions of babl and gegl,
taken from Debian.

Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
---
 .../gimp/gimp/bump_Babl-GEGL_versions.patch        | 53 ++++++++++++++++++++++
 meta-oe/recipes-graphics/gimp/gimp_2.8.14.bb       |  1 +
 2 files changed, 54 insertions(+)
 create mode 100644 meta-oe/recipes-graphics/gimp/gimp/bump_Babl-GEGL_versions.patch

diff --git a/meta-oe/recipes-graphics/gimp/gimp/bump_Babl-GEGL_versions.patch b/meta-oe/recipes-graphics/gimp/gimp/bump_Babl-GEGL_versions.patch
new file mode 100644
index 0000000..b71bf32
--- /dev/null
+++ b/meta-oe/recipes-graphics/gimp/gimp/bump_Babl-GEGL_versions.patch
@@ -0,0 +1,53 @@
+Bump acceptable versions of babl and gegl.
+
+Patch is taken from debian:
+https://packages.debian.org/stretch/gimp
+
+Upstream-Status: Inappropriate [OE specific]
+Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
+diff --git a/app/sanity.c b/app/sanity.c
+index febddfb..85fea55 100644
+--- a/app/sanity.c
++++ b/app/sanity.c
+@@ -351,7 +351,7 @@ sanity_check_babl (void)
+ 
+ #define BABL_REQUIRED_MAJOR 0
+ #define BABL_REQUIRED_MINOR 1
+-#define BABL_REQUIRED_MICRO 10
++#define BABL_REQUIRED_MICRO 12
+ 
+   babl_get_version (&babl_major_version,
+                     &babl_minor_version,
+@@ -388,7 +388,7 @@ sanity_check_gegl (void)
+   gint gegl_micro_version;
+ 
+ #define GEGL_REQUIRED_MAJOR 0
+-#define GEGL_REQUIRED_MINOR 2
++#define GEGL_REQUIRED_MINOR 3
+ #define GEGL_REQUIRED_MICRO 0
+ 
+   gegl_get_version (&gegl_major_version,
+diff --git a/configure.ac b/configure.ac
+index 26812b6..4252fe9 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -40,8 +40,8 @@ m4_define([gimp_stable],
+ m4_define([gimp_full_name], [GNU Image Manipulation Program])
+ 
+ # required versions of other packages
+-m4_define([babl_required_version], [0.1.10])
+-m4_define([gegl_required_version], [0.2.0])
++m4_define([babl_required_version], [0.1.12])
++m4_define([gegl_required_version], [0.3.0])
+ m4_define([glib_required_version], [2.30.2])
+ m4_define([atk_required_version], [2.2.0])
+ m4_define([gtk_required_version], [2.24.10])
+@@ -519,7 +519,7 @@ AC_SUBST(ISO_CODES_LOCALEDIR)
+ ###############################
+ 
+ PKG_CHECK_MODULES(BABL, babl >= babl_required_version)
+-PKG_CHECK_MODULES(GEGL, gegl-0.2 >= gegl_required_version)
++PKG_CHECK_MODULES(GEGL, gegl-0.3 >= gegl_required_version)
+ PKG_CHECK_MODULES(ATK, atk >= atk_required_version)
+ 
+ AM_PATH_GLIB_2_0(glib_required_version, :,
diff --git a/meta-oe/recipes-graphics/gimp/gimp_2.8.14.bb b/meta-oe/recipes-graphics/gimp/gimp_2.8.14.bb
index 1522fd6..a647911 100644
--- a/meta-oe/recipes-graphics/gimp/gimp_2.8.14.bb
+++ b/meta-oe/recipes-graphics/gimp/gimp_2.8.14.bb
@@ -12,6 +12,7 @@ inherit gnome gtk-doc
 SRC_URI = " \
     http://ftp.gimp.org/pub/gimp/v2.8/gimp-${PV}.tar.bz2 \
     file://0001-configure-ac-do-not-check-for-freetype-config.patch \
+    file://bump_Babl-GEGL_versions.patch \
 "
 SRC_URI[md5sum] = "233c948203383fa078434cc3f8f925cb"
 SRC_URI[sha256sum] = "d82a958641c9c752d68e35f65840925c08e314cea90222ad845892a40e05b22d"
-- 
2.7.0



  parent reply	other threads:[~2016-03-09 15:10 UTC|newest]

Thread overview: 46+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-09 15:05 [PATCH 00/38] Initial gobject introspection support for meta-openembedded Alexander Kanavin
2016-03-09 15:05 ` [PATCH 01/38] evolution-data-server: fix gobject introspection Alexander Kanavin
2016-03-09 15:05 ` [PATCH 02/38] evince: update to 3.18.2 Alexander Kanavin
2016-03-09 15:05 ` [PATCH 03/38] gnome-bluetooth: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 04/38] gnome-desktop: remove pygtk dependency Alexander Kanavin
2016-03-09 15:05 ` [PATCH 05/38] gnumeric: fix gobject introspection support Alexander Kanavin
2016-03-09 15:05 ` [PATCH 06/38] libgsf: fix gobject introspection Alexander Kanavin
2016-03-09 15:05 ` [PATCH 07/38] libwnck: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 08/38] libxklavier: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 09/38] goffice: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 10/38] tracker: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 11/38] gupnp: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 12/38] rygel: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 13/38] media-service-demo: remove the recipe Alexander Kanavin
2016-03-09 15:05 ` [PATCH 14/38] python-gst: remove the 0.10 recipe Alexander Kanavin
2016-03-10 14:25   ` Martin Jansa
2016-03-10 16:02     ` Burton, Ross
2016-03-10 16:13       ` Martin Jansa
2016-03-10 16:51         ` Burton, Ross
2016-03-10 17:08           ` Martin Jansa
2016-03-11  9:27             ` Burton, Ross
2016-03-15 14:07     ` Alexander Kanavin
2016-03-09 15:05 ` [PATCH 15/38] gstreamer-0.10: disable gobject introspection Alexander Kanavin
2016-03-09 15:05 ` [PATCH 16/38] libmediaart: fix " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 17/38] bluez4: use real introspection instead of legacy pygobject Alexander Kanavin
2016-03-09 15:05 ` [PATCH 18/38] modemmanager: fix vala support Alexander Kanavin
2016-03-09 15:05 ` [PATCH 19/38] networkmanager: fix introspection and " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 20/38] telepathy-glib: fix gobject introspection support Alexander Kanavin
2016-03-09 15:05 ` [PATCH 21/38] libgee: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 22/38] polkit: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 23/38] gtkextra: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 24/38] libunique: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 25/38] babl: update to 0.1.16 Alexander Kanavin
2016-03-09 15:05 ` [PATCH 26/38] gegl: update to 0.3.4 Alexander Kanavin
2016-03-09 15:05 ` Alexander Kanavin [this message]
2016-03-09 15:05 ` [PATCH 28/38] omgps: remove the recipe Alexander Kanavin
2016-03-09 15:05 ` [PATCH 29/38] poppler: fix gobject introspection Alexander Kanavin
2016-03-09 15:05 ` [PATCH 30/38] udisks2: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 31/38] upower: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 32/38] python-dbusmock: use real introspection instead on legacy pygobject Alexander Kanavin
2016-03-09 15:05 ` [PATCH 33/38] gnome-menus: fix gobject introspection Alexander Kanavin
2016-03-09 15:05 ` [PATCH 34/38] libgdata: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 35/38] libgtop: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 36/38] nautilus: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 37/38] network-manager-applet: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 38/38] gnome-panel: " Alexander Kanavin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=92e3de59f7869fa8e4e010bb844c8a12e488bc33.1457535831.git.alexander.kanavin@linux.intel.com \
    --to=alexander.kanavin@linux.intel.com \
    --cc=openembedded-devel@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.