rpms/bzr-gtk/devel bzr-gtk-retrievegtk.patch, NONE, 1.1 bzr-gtk.spec, 1.4, 1.5

Toshio Ernie Kuratomi (toshio) fedora-extras-commits at redhat.com
Tue Apr 3 04:14:20 UTC 2007


Author: toshio

Update of /cvs/extras/rpms/bzr-gtk/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv5499

Modified Files:
	bzr-gtk.spec 
Added Files:
	bzr-gtk-retrievegtk.patch 
Log Message:
- Fix a traceback in two bzr-gtk subcommands.


bzr-gtk-retrievegtk.patch:

--- NEW FILE bzr-gtk-retrievegtk.patch ---
Index: bzr-gtk-0.15.1/__init__.py
===================================================================
--- bzr-gtk-0.15.1.orig/__init__.py
+++ bzr-gtk-0.15.1/__init__.py
@@ -252,7 +252,7 @@ class cmd_gannotate(GTKCommand):
     aliases = ["gblame", "gpraise"]
     
     def run(self, filename, all=False, plain=False, line='1', revision=None):
-        self.open_display()
+        gtk = self.open_display()
 
         try:
             line = int(line)
@@ -349,7 +349,7 @@ class cmd_gstatus(GTKCommand):
 
     def run(self, path='.'):
         import os
-        self.open_display()
+        gtk = self.open_display()
         from status import StatusDialog
         (wt, wt_path) = workingtree.WorkingTree.open_containing(path)
         status = StatusDialog(wt, wt_path)


Index: bzr-gtk.spec
===================================================================
RCS file: /cvs/extras/rpms/bzr-gtk/devel/bzr-gtk.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- bzr-gtk.spec	3 Apr 2007 02:08:50 -0000	1.4
+++ bzr-gtk.spec	3 Apr 2007 04:13:47 -0000	1.5
@@ -2,13 +2,14 @@
 
 Name:           bzr-gtk
 Version:        0.15.1
-Release:        1%{?dist}
+Release:        2%{?dist}
 Summary:        Bazaar plugin for GTK+ interfaces to most Bazaar operations
 
 Group:          Development/Tools
 License:        GPL
 URL:            http://bazaar-vcs.org/bzr-gtk
 Source0:        http://samba.org/~jelmer/bzr/bzr-gtk-%{version}.tar.gz
+Patch0:        	bzr-gtk-retrievegtk.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildArch:      noarch
@@ -33,6 +34,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %{__python} setup.py build
@@ -64,6 +66,9 @@
 #%{_prefix}/lib/nautilus/extensions-1.0/python/*
 
 %changelog
+* Thu Apr 2 2007 Toshio Kuratomi <toshio at tiki-lounge.com> 0.15.1-2
+- Fix a traceback in two bzr-gtk subcommands.
+
 * Thu Mar 23 2007 Toshio Kuratomi <toshio at tiki-lounge.com> 0.15.1-1
 - Update to 0.15.1
 - Split olive directory in site-packages into the olive package.




More information about the fedora-extras-commits mailing list