From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7A41C139694 for ; Wed, 10 May 2017 15:41:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 747F4E0D39; Wed, 10 May 2017 15:41:48 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 42819E0D39 for ; Wed, 10 May 2017 15:41:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0AAF5341683 for ; Wed, 10 May 2017 15:41:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 431A97449 for ; Wed, 10 May 2017 15:41:45 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1494430895.d8459d23f6d6b328c222a4fa469ffdb8cda7972f.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/gegl/files/, media-libs/gegl/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/gegl/files/gegl-0.2.0-underlinking.patch media-libs/gegl/gegl-0.2.0-r2.ebuild X-VCS-Directories: media-libs/gegl/files/ media-libs/gegl/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: d8459d23f6d6b328c222a4fa469ffdb8cda7972f X-VCS-Branch: master Date: Wed, 10 May 2017 15:41:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9d3289d1-7191-4df9-aaba-4ad5d0c47ee2 X-Archives-Hash: f91035fe229258ecf035dec8bc26f657 commit: d8459d23f6d6b328c222a4fa469ffdb8cda7972f Author: Sebastian Pipping gentoo org> AuthorDate: Wed May 10 15:40:47 2017 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Wed May 10 15:41:35 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8459d23 media-libs/gegl: Fix 0.2.0-r2 underlinking (bug #617430) Package-Manager: Portage-2.3.5, Repoman-2.3.2 .../gegl/files/gegl-0.2.0-underlinking.patch | 22 ++++++++++++++++++---- media-libs/gegl/gegl-0.2.0-r2.ebuild | 1 + 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/media-libs/gegl/files/gegl-0.2.0-underlinking.patch b/media-libs/gegl/files/gegl-0.2.0-underlinking.patch index 4468f387855..53f29c49da7 100644 --- a/media-libs/gegl/files/gegl-0.2.0-underlinking.patch +++ b/media-libs/gegl/files/gegl-0.2.0-underlinking.patch @@ -1,6 +1,6 @@ -From db19965ad957edee3c2ef3e321c3904b436749da Mon Sep 17 00:00:00 2001 +From bedd95f5f14524360117209ed6a1a83627523f54 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping -Date: Mon, 9 Jan 2017 21:38:42 +0100 +Date: Wed, 10 May 2017 17:33:05 +0200 Subject: [PATCH] Backport $(MATH_LIB) patch to GEGL 0.2 Source: @@ -8,7 +8,8 @@ https://git.gnome.org/browse/gegl/patch/?id=c9bbc815378cb81ba8a48be35f615e7e2d74 --- bin/Makefile.am | 2 +- examples/Makefile.am | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) + tools/Makefile.am | 2 +- + 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/Makefile.am b/bin/Makefile.am index c85ecbd..08a156b 100644 @@ -33,6 +34,19 @@ index c29a1dd..5c4ac3a 100644 $(top_builddir)/gegl/libgegl-$(GEGL_API_VERSION).la \ - $(DEP_LIBS) $(GTK_LIBS) $(BABL_LIBS) $(PNG_LIBS) + $(DEP_LIBS) $(GTK_LIBS) $(BABL_LIBS) $(PNG_LIBS) $(MATH_LIB) +diff --git a/tools/Makefile.am b/tools/Makefile.am +index 8f1077d..4dd3845 100644 +--- a/tools/Makefile.am ++++ b/tools/Makefile.am +@@ -22,7 +22,7 @@ AM_CFLAGS = $(DEP_CFLAGS) $(BABL_CFLAGS) + + AM_LDFLAGS = \ + $(top_builddir)/gegl/libgegl-$(GEGL_API_VERSION).la \ +- $(DEP_LIBS) $(BABL_LIBS) ++ $(DEP_LIBS) $(BABL_LIBS) $(MATH_LIB) + + noinst_PROGRAMS = introspect operation_reference img_cmp + -- -2.11.0 +2.12.2 diff --git a/media-libs/gegl/gegl-0.2.0-r2.ebuild b/media-libs/gegl/gegl-0.2.0-r2.ebuild index 15d56a636c2..a1199a76cbf 100644 --- a/media-libs/gegl/gegl-0.2.0-r2.ebuild +++ b/media-libs/gegl/gegl-0.2.0-r2.ebuild @@ -73,6 +73,7 @@ src_prepare() { epatch "${FILESDIR}"/${P}-g_log_domain.patch # https://bugs.gentoo.org/show_bug.cgi?id=605216 + # https://bugs.gentoo.org/show_bug.cgi?id=617430 epatch "${FILESDIR}"/${P}-underlinking.patch eautoreconf