Gentoo Archives: gentoo-commits

From: Amy Winston <amynka@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile-cairo/files/
Date: Thu, 29 Sep 2016 17:16:22
Message-Id: 1475169269.ee205a842b4b76a53b001658b15ea5fe3633a8a8.amynka@gentoo
1 commit: ee205a842b4b76a53b001658b15ea5fe3633a8a8
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Wed Sep 28 17:09:20 2016 +0000
4 Commit: Amy Winston <amynka <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 29 17:14:29 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee205a84
7
8 dev-scheme/guile-cairo: remove unused patch
9
10 .../files/1.3.90-various-fixes-20070601.patch | 72 ----------------------
11 1 file changed, 72 deletions(-)
12
13 diff --git a/dev-scheme/guile-cairo/files/1.3.90-various-fixes-20070601.patch b/dev-scheme/guile-cairo/files/1.3.90-various-fixes-20070601.patch
14 deleted file mode 100644
15 index eb867ff..00000000
16 --- a/dev-scheme/guile-cairo/files/1.3.90-various-fixes-20070601.patch
17 +++ /dev/null
18 @@ -1,72 +0,0 @@
19 -=== modified file 'ChangeLog'
20 ---- ChangeLog 2007-05-18 17:38:56 +0000
21 -+++ ChangeLog 2007-05-20 22:36:42 +0000
22 -@@ -1,3 +1,15 @@
23 -+2007-05-21 Andy Wingo <wingo@×××××.com>
24 -+
25 -+ * guile-cairo/guile-cairo-enum-types.h: Include <cairo-svg.h> if
26 -+ we are wrapping cairo_svg_version_t.
27 -+
28 -+2007-05-20 Andy Wingo <wingo@×××××.com>
29 -+
30 -+ * guile-cairo/guile-cairo.c (scm_init_cairo): Add guard against
31 -+ multiple instantiations.
32 -+
33 -+ * guile-cairo/guile-cairo.h: Include cairo.h header.
34 -+
35 - 2007-05-18 Andy Wingo <wingo@×××××.com>
36 -
37 - * configure.ac: Change version to 1.3.90.
38 -
39 -=== modified file 'guile-cairo/guile-cairo-enum-types.h'
40 ---- guile-cairo/guile-cairo-enum-types.h 2007-05-18 14:05:17 +0000
41 -+++ guile-cairo/guile-cairo-enum-types.h 2007-05-20 22:36:42 +0000
42 -@@ -24,6 +24,10 @@
43 - #ifndef __GUILE_CAIRO_ENUM_TYPES_H__
44 - #define __GUILE_CAIRO_ENUM_TYPES_H__
45 -
46 -+#if CAIRO_HAS_SVG_SURFACE
47 -+#include <cairo-svg.h>
48 -+#endif
49 -+
50 -
51 -
52 - SCM scm_from_cairo_status (cairo_status_t cval);
53 -
54 -=== modified file 'guile-cairo/guile-cairo.c'
55 ---- guile-cairo/guile-cairo.c 2007-05-18 16:27:47 +0000
56 -+++ guile-cairo/guile-cairo.c 2007-05-20 18:32:44 +0000
57 -@@ -2281,6 +2281,11 @@
58 - void
59 - scm_init_cairo (void)
60 - {
61 -+ static int initialized = 0;
62 -+
63 -+ if (initialized)
64 -+ return;
65 -+
66 - #ifndef SCM_MAGIC_SNARFER
67 - #include "guile-cairo.x"
68 - #endif
69 -@@ -2288,5 +2293,6 @@
70 - scm_init_cairo_smob_types ();
71 - scm_init_cairo_vector_types ();
72 - scm_init_cairo_enum_types ();
73 -- scm_c_export (NULL);
74 -+
75 -+ initialized = 1;
76 - }
77 -
78 -=== modified file 'guile-cairo/guile-cairo.h'
79 ---- guile-cairo/guile-cairo.h 2007-05-18 11:39:11 +0000
80 -+++ guile-cairo/guile-cairo.h 2007-05-20 17:30:53 +0000
81 -@@ -24,6 +24,8 @@
82 - #ifndef __GUILE_CAIRO_H__
83 - #define __GUILE_CAIRO_H__
84 -
85 -+#include <cairo.h>
86 -+
87 - #include <guile-cairo-smob-types.h>
88 - #include <guile-cairo-enum-types.h>
89 - #include <guile-cairo-vector-types.h>
90 -