Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-visualization/gnuplot/files/
Date: Sun, 29 Jan 2017 20:11:32
Message-Id: 1485720581.185c1c00f86fc01fc89af1c0170f5dba1795981c.soap@gentoo
1 commit: 185c1c00f86fc01fc89af1c0170f5dba1795981c
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun Jan 29 09:21:42 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 29 20:09:41 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=185c1c00
7
8 sci-visualization/gnuplot: remove unused patch
9
10 Closes: https://github.com/gentoo/gentoo/pull/3709
11
12 .../gnuplot/files/gnuplot-4.6.2-gdversion.patch | 21 ---------------------
13 1 file changed, 21 deletions(-)
14
15 diff --git a/sci-visualization/gnuplot/files/gnuplot-4.6.2-gdversion.patch b/sci-visualization/gnuplot/files/gnuplot-4.6.2-gdversion.patch
16 deleted file mode 100644
17 index a10e1cc..00000000
18 --- a/sci-visualization/gnuplot/files/gnuplot-4.6.2-gdversion.patch
19 +++ /dev/null
20 @@ -1,21 +0,0 @@
21 -Gnuplot supports using fontconfig in gd terminals. There was a bug in
22 -gd-2.0.35 that prevented this from working; therefore the mechanism
23 -was disabled by testing the GD version. Gentoo has backported the fix
24 -to media-libs/gd-2.0.35-r3 so our test can be different.
25 -
26 -Patch by Bernardo Costa <bernardofpc@×××××.com>.
27 -Gentoo specific, not to be submitted upstream.
28 -https://bugs.gentoo.org/462996
29 -https://bugs.gentoo.org/363367
30 -
31 ---- gnuplot-4.6.2-orig/term/gd.trm
32 -+++ gnuplot-4.6.2/term/gd.trm
33 -@@ -149,7 +149,7 @@
34 - /* Before version 2.0.36, the libgd function gdFTUseFontConfig() didn't */
35 - /* do what we need. Test for earlier versions and ignore it. */
36 - #ifdef GD_MAJOR_VERSION
37 --# if (GD_MINOR_VERSION > 0 || GD_RELEASE_VERSION > 35)
38 -+# if (GD_MINOR_VERSION > 0 || GD_RELEASE_VERSION >= 35)
39 - # define gdUseFontConfig(x) gdFTUseFontConfig(x)
40 - # endif
41 - #endif