Merge lp:~laney/libfriends/gtkspell3-3 into lp:libfriends

Proposed by Iain Lane
Status: Merged
Approved by: Francis Ginther
Approved revision: 73
Merged at revision: 71
Proposed branch: lp:~laney/libfriends/gtkspell3-3
Merge into: lp:libfriends
Diff against target: 97 lines (+14/-30)
5 files modified
configure.ac (+4/-4)
debian/changelog (+6/-0)
debian/control (+1/-1)
gtk/entry.vala (+3/-1)
vapi/gtkspell-3.0.vapi (+0/-24)
To merge this branch: bzr merge lp:~laney/libfriends/gtkspell3-3
Reviewer Review Type Date Requested Status
PS Jenkins bot (community) continuous-integration Approve
Ken VanDine Approve
Review via email: mp+166206@code.launchpad.net

Commit message

Port to the new libgtkspell3-3 API.

Description of the change

Port to the new libgtkspell3-3 API.

I haven't tested this directly as there appear to be no archive rdeps.

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Iain Lane (laney) wrote :

Why is that happening? Perhaps the bot isn't running with -proposed?

Revision history for this message
Iain Lane (laney) wrote :

Wait, raring. Yeah, that won't work.

Revision history for this message
Ken VanDine (ken-vandine) wrote :

I've updated the CI config in the friends stack to use saucy

Revision history for this message
Ken VanDine (ken-vandine) wrote :

Looks great and works fine. Thanks!

review: Approve
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :

FAILED: Autolanding.
More details in the following jenkins job:
http://jenkins.qa.ubuntu.com/job/libfriends-autolanding/2/
Executed test runs:
    FAILURE: http://jenkins.qa.ubuntu.com/job/libfriends-raring-amd64-autolanding/2/console

review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :

FAILED: Autolanding.
More details in the following jenkins job:
http://jenkins.qa.ubuntu.com/job/libfriends-autolanding/3/
Executed test runs:
    FAILURE: http://jenkins.qa.ubuntu.com/job/libfriends-saucy-amd64-autolanding/1/console

review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :

FAILED: Autolanding.
More details in the following jenkins job:
http://jenkins.qa.ubuntu.com/job/libfriends-autolanding/4/
Executed test runs:
    FAILURE: http://jenkins.qa.ubuntu.com/job/libfriends-saucy-amd64-autolanding/2/console

review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :

FAILED: Autolanding.
More details in the following jenkins job:
http://jenkins.qa.ubuntu.com/job/libfriends-autolanding/5/
Executed test runs:
    FAILURE: http://jenkins.qa.ubuntu.com/job/libfriends-saucy-amd64-autolanding/3/console

review: Needs Fixing (continuous-integration)
Revision history for this message
Francis Ginther (fginther) wrote :

There was a hung xvfb process on the pbuilder host. The tests should be updated to use xvfb-run -a to avoid this.

Re-approving.

Revision history for this message
PS Jenkins bot (ps-jenkins) :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'configure.ac'
2--- configure.ac 2013-01-15 00:04:45 +0000
3+++ configure.ac 2013-05-29 10:15:31 +0000
4@@ -187,10 +187,10 @@
5
6 if test "x$enable_spell" = "xyes"; then
7 PKG_CHECK_MODULES(GTKSPELL,
8- gtkspell-3.0)
9- AC_SUBST(GTKSPELL_CFLAGS)
10- AC_SUBST(GTKSPELL_CFLAGS)
11- GTKSPELL_PKG="--pkg gtkspell-3.0"
12+ gtkspell3-3.0)
13+ AC_SUBST(GTKSPELL_CFLAGS)
14+ AC_SUBST(GTKSPELL_CFLAGS)
15+ GTKSPELL_PKG="--pkg gtkspell3-3.0"
16 AC_SUBST(GTKSPELL_PKG)
17 fi
18
19
20=== modified file 'debian/changelog'
21--- debian/changelog 2013-05-08 05:00:44 +0000
22+++ debian/changelog 2013-05-29 10:15:31 +0000
23@@ -1,3 +1,9 @@
24+libfriends (0.1.2daily13.05.08-0ubuntu2) UNRELEASED; urgency=low
25+
26+ * Port to gtkspell3-3.
27+
28+ -- Iain Lane <iain.lane@canonical.com> Tue, 28 May 2013 18:22:24 +0100
29+
30 libfriends (0.1.2daily13.05.08-0ubuntu1) saucy; urgency=low
31
32 * Automatic snapshot from revision 69
33
34=== modified file 'debian/control'
35--- debian/control 2013-03-25 23:38:32 +0000
36+++ debian/control 2013-05-29 10:15:31 +0000
37@@ -19,7 +19,7 @@
38 libgee-dev,
39 libgirepository1.0-dev (>= 0.10),
40 libgtk-3-dev,
41- libgtkspell-3-dev,
42+ libgtkspell3-3-dev,
43 libjson-glib-dev,
44 libvala-0.18-dev,
45 python3-mock,
46
47=== modified file 'gtk/entry.vala'
48--- gtk/entry.vala 2013-02-07 21:22:17 +0000
49+++ gtk/entry.vala 2013-05-29 10:15:31 +0000
50@@ -187,15 +187,17 @@
51 //dispatcher.connection_changed.connect((source) => {
52 // on_connection_changed (source);});
53
54+
55 #if HAVE_GTKSPELL
56 try
57 {
58- var spell = new Gtk.Spell.attach(this, null);
59+ var spell = new GtkSpell.Checker().attach(this);
60 }
61 catch (Error e)
62 {
63 }
64 #endif
65+
66 }
67
68 public void reset () {
69
70=== removed file 'vapi/gtkspell-3.0.vapi'
71--- vapi/gtkspell-3.0.vapi 2012-12-07 21:38:36 +0000
72+++ vapi/gtkspell-3.0.vapi 1970-01-01 00:00:00 +0000
73@@ -1,24 +0,0 @@
74-namespace Gtk
75-{
76- [CCode (cprefix = "GTKSPELL_ERROR_", cheader_filename = "gtkspell/gtkspell.h")]
77- public errordomain SpeelError
78- {
79- ERROR_BACKEND
80- }
81-
82- [Compact]
83- [CCode (cheader_filename = "gtkspell/gtkspell.h", free_function = "")]
84- public class Spell
85- {
86- [CCode (cname = "gtkspell_new_attach")]
87- public Spell.attach (TextView view, string? lang) throws GLib.Error;
88- [CCode (cname = "gtkspell_get_from_text_view")]
89- public static Spell get_from_text_view (TextView view);
90- [CCode (cname = "gtkspell_detach")]
91- public void detach ();
92- [CCode (cname = "gtkspell_set_language")]
93- public bool set_language (string lang) throws GLib.Error;
94- [CCode (cname = "gtkspell_recheck_all")]
95- public void recheck_all ();
96- }
97-}

Subscribers

People subscribed via source and target branches

to all changes: