Gentoo Archives: gentoo-commits

From: Alexandre Restovtsev <tetromino@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:gnome-next commit in: mail-client/evolution/, mail-client/evolution/files/
Date: Tue, 27 Sep 2011 05:58:46
Message-Id: 0f8cf1b58c14fd14b46a9eaaf3f7f97aaa21f47b.tetromino@gentoo
1 commit: 0f8cf1b58c14fd14b46a9eaaf3f7f97aaa21f47b
2 Author: Alexandre Rostovtsev <tetromino <AT> gmail <DOT> com>
3 AuthorDate: Tue Sep 27 05:30:28 2011 +0000
4 Commit: Alexandre Restovtsev <tetromino <AT> gmail <DOT> com>
5 CommitDate: Tue Sep 27 05:30:28 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=0f8cf1b5
7
8 mail-client/evolution: 3.1.90 → 3.2.0
9
10 Bump. Patches were applied upstream.
11
12 ---
13 ...lution-3.1.90.ebuild => evolution-3.2.0.ebuild} | 4 ---
14 .../files/evolution-3.1.90-g_unix_signal.patch | 28 --------------------
15 .../evolution/files/evolution-3.1.90-libm.patch | 25 -----------------
16 3 files changed, 0 insertions(+), 57 deletions(-)
17
18 diff --git a/mail-client/evolution/evolution-3.1.90.ebuild b/mail-client/evolution/evolution-3.2.0.ebuild
19 similarity index 97%
20 rename from mail-client/evolution/evolution-3.1.90.ebuild
21 rename to mail-client/evolution/evolution-3.2.0.ebuild
22 index 3a88b51..49c720f 100644
23 --- a/mail-client/evolution/evolution-3.1.90.ebuild
24 +++ b/mail-client/evolution/evolution-3.2.0.ebuild
25 @@ -157,10 +157,6 @@ pkg_setup() {
26 }
27
28 src_prepare() {
29 - # Important build fixes from upstream, will be in next release
30 - epatch "${FILESDIR}/${P}-libm.patch"
31 - epatch "${FILESDIR}/${P}-g_unix_signal.patch"
32 -
33 # Use NSS/NSPR only if 'ssl' is enabled.
34 if use ssl ; then
35 sed -e 's|mozilla-nss|nss|' \
36
37 diff --git a/mail-client/evolution/files/evolution-3.1.90-g_unix_signal.patch b/mail-client/evolution/files/evolution-3.1.90-g_unix_signal.patch
38 deleted file mode 100644
39 index eb69f5a..0000000
40 --- a/mail-client/evolution/files/evolution-3.1.90-g_unix_signal.patch
41 +++ /dev/null
42 @@ -1,28 +0,0 @@
43 -From 3e3860e0ecc9f330c7c0df143641a01073ad976c Mon Sep 17 00:00:00 2001
44 -From: Matthew Barnes <mbarnes@××××××.com>
45 -Date: Wed, 31 Aug 2011 16:30:56 +0000
46 -Subject: Bug 657836 - Work around g_unix_signal API changes.
47 -
48 -Work around GLib API churn with regard to registering UNIX signal
49 -callbacks on the main loop. GLib >= 2.29.5 calls the function one
50 -thing, GLib >= 2.29.19 calls it another.
51 ----
52 -diff --git a/shell/main.c b/shell/main.c
53 -index 95dc1b9..8e1d533 100644
54 ---- a/shell/main.c
55 -+++ b/shell/main.c
56 -@@ -613,7 +613,11 @@ main (gint argc, gchar **argv)
57 - }
58 -
59 - #ifdef G_OS_UNIX
60 --#if GLIB_CHECK_VERSION(2,29,5)
61 -+#if GLIB_CHECK_VERSION(2,29,19)
62 -+ g_unix_signal_add_full (
63 -+ G_PRIORITY_DEFAULT, SIGTERM,
64 -+ handle_term_signal, NULL, NULL);
65 -+#elif GLIB_CHECK_VERSION(2,29,5)
66 - g_unix_signal_add_watch_full (
67 - SIGTERM, G_PRIORITY_DEFAULT,
68 - handle_term_signal, NULL, NULL);
69 ---
70 -cgit v0.9.0.2
71
72 diff --git a/mail-client/evolution/files/evolution-3.1.90-libm.patch b/mail-client/evolution/files/evolution-3.1.90-libm.patch
73 deleted file mode 100644
74 index 97b78c0..0000000
75 --- a/mail-client/evolution/files/evolution-3.1.90-libm.patch
76 +++ /dev/null
77 @@ -1,25 +0,0 @@
78 -From bd719c5fd879e96450d81339ff85f525a1ad8a13 Mon Sep 17 00:00:00 2001
79 -From: Frederic Peters <fpeters@××.be>
80 -Date: Wed, 31 Aug 2011 01:24:21 +0000
81 -Subject: Bug 657765 - Explicitly link libgnomecanvas against libm
82 -
83 -We used to implicitly link to libm through gtk+, but that got dropped.
84 -
85 -http://mail.gnome.org/archives/desktop-devel-list/2011-August/msg00236.html
86 ----
87 -diff --git a/libgnomecanvas/Makefile.am b/libgnomecanvas/Makefile.am
88 -index 4032c85..bb6366b 100644
89 ---- a/libgnomecanvas/Makefile.am
90 -+++ b/libgnomecanvas/Makefile.am
91 -@@ -59,7 +59,8 @@ MARSHAL_GENERATED = \
92 - gnome-canvas-marshal.h
93 -
94 - libgnomecanvas_la_LIBADD = \
95 -- $(GNOME_PLATFORM_LIBS)
96 -+ $(GNOME_PLATFORM_LIBS) \
97 -+ $(MATH_LIB)
98 -
99 - libgnomecanvas_la_LDFLAGS = $(NO_UNDEFINED)
100 -
101 ---
102 -cgit v0.9.0.2