r41754 - in /desktop/unstable/seed/debian: changelog patches/series patches/typedef_int_Function_readline.patch

bigon at users.alioth.debian.org bigon at users.alioth.debian.org
Tue May 20 11:47:43 UTC 2014


Author: bigon
Date: Tue May 20 11:47:43 2014
New Revision: 41754

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=41754
Log:
d/p/typedef_int_Function_readline.patch: Fix FTBFS with readline 6.3
(Closes: #741785)

Added:
    desktop/unstable/seed/debian/patches/typedef_int_Function_readline.patch
Modified:
    desktop/unstable/seed/debian/changelog
    desktop/unstable/seed/debian/patches/series

Modified: desktop/unstable/seed/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/seed/debian/changelog?rev=41754&op=diff
==============================================================================
--- desktop/unstable/seed/debian/changelog	[utf-8] (original)
+++ desktop/unstable/seed/debian/changelog	[utf-8] Tue May 20 11:47:43 2014
@@ -1,3 +1,10 @@
+seed (3.8.1-2) UNRELEASED; urgency=medium
+
+  * d/p/typedef_int_Function_readline.patch: Fix FTBFS with readline 6.3
+    (Closes: #741785)
+
+ -- Laurent Bigonville <bigon at debian.org>  Tue, 20 May 2014 13:37:33 +0200
+
 seed (3.8.1-1) unstable; urgency=low
 
   [ Jeremy Bicha ]

Modified: desktop/unstable/seed/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/seed/debian/patches/series?rev=41754&op=diff
==============================================================================
--- desktop/unstable/seed/debian/patches/series	[utf-8] (original)
+++ desktop/unstable/seed/debian/patches/series	[utf-8] Tue May 20 11:47:43 2014
@@ -1,3 +1,4 @@
 fix_format.patch
 link_gmodule.patch
 fix_autogen_and_configure.patch
+typedef_int_Function_readline.patch

Added: desktop/unstable/seed/debian/patches/typedef_int_Function_readline.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/seed/debian/patches/typedef_int_Function_readline.patch?rev=41754&op=file
==============================================================================
--- desktop/unstable/seed/debian/patches/typedef_int_Function_readline.patch	(added)
+++ desktop/unstable/seed/debian/patches/typedef_int_Function_readline.patch	[utf-8] Tue May 20 11:47:43 2014
@@ -0,0 +1,23 @@
+From cf772e792fd64f70ee2c714e0b5eaf527ce35467 Mon Sep 17 00:00:00 2001
+From: Alan Knowles <alan at roojs.com>
+Date: Tue, 25 Mar 2014 18:14:03 +0800
+Subject: Fix Bug 725602 - typedef int Function () is removed in readline 6.3
+
+as per readline documents use rl_command_func_t
+
+diff --git a/modules/readline/seed-readline.c b/modules/readline/seed-readline.c
+index cd5ecfe..49d1faa 100644
+--- a/modules/readline/seed-readline.c
++++ b/modules/readline/seed-readline.c
+@@ -77,7 +77,7 @@ seed_readline_bind(SeedContext ctx,
+   key = seed_value_to_string(ctx, arguments[0], exception);
+   c = seed_make_rl_closure((SeedObject) arguments[1]);
+ 
+-  rl_bind_key(*key, (Function *) c);
++  rl_bind_key(*key, (rl_command_func_t *) c);
+ 
+   g_free(key);
+ 
+-- 
+cgit v0.10.1
+




More information about the pkg-gnome-commits mailing list