Description: Comment out single dependency on bzr-gtk (which no longer in the archive)
Author: Jelmer Vernooij <jelmer@debian.org>
Status: Not upstream, but trunk has similar code
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=722531

diff -ur groundcontrol-1.6.6/GroundControl/commiter.py groundcontrol-1.6.6-no-bzr-gtk/GroundControl/commiter.py
--- groundcontrol-1.6.6/GroundControl/commiter.py	2010-07-25 01:25:09.000000000 -0700
+++ groundcontrol-1.6.6-no-bzr-gtk/GroundControl/commiter.py	2013-10-16 23:10:56.030191231 -0700
@@ -28,7 +28,7 @@
     IconManager, GtkApp
 )
 from GroundControl.bugs import BugSelection
-from bzrlib.plugins.gtk.diff import DiffView
+#from bzrlib.plugins.gtk.diff import DiffView
 
 change_types = (
     'added',         # (path, id, kind)
@@ -70,10 +70,10 @@
         self.dirs    = {}
         self.fixes   = []
         super(CommitWindow, self).load(*args, **kwargs)
-        self.diffview = DiffView()
+        #self.diffview = DiffView()
         #self.diffview.set_trees(self.prevt, self.wtr)
-        self.diffview.set_trees(self.wtr, self.prevt)
-        self.widget('viewchanges').add(self.diffview)
+        #self.diffview.set_trees(self.wtr, self.prevt)
+        #self.widget('viewchanges').add(self.diffview)
         self.slist = ChangesView(self.widget('changes'),
             selected=self.selected)
         all_changes = self.branch.get_changes()
@@ -178,12 +178,12 @@
         """Show in the diff any items which we want"""
         if not item.isdir and item.type == 'modified':
             logging.debug("Showing diff for %s" % item.stem)
-            self.diffview.show_diff([item.stem])
+            #self.diffview.show_diff([item.stem])
             self.widget("viewchanges").set_position(300)
             self.window.resize(800, 600)
-            self.diffview.show()
-        else:
-            self.diffview.hide()
+            #self.diffview.show()
+        #else:
+            #self.diffview.hide()
 
     def remove_bug(self, widget):
         """It doesn't fix this bug at all!"""
Only in groundcontrol-1.6.6-no-bzr-gtk/GroundControl: commiter.py~
