[system-config-language] Fixed bug #858059, 858168, 858056 Added patch from CAI Qian

anish anishpatil at fedoraproject.org
Thu Sep 20 10:57:34 UTC 2012


commit 4b3a2469848f634784ee7c0d18c3023bb318ab60
Author: Anish Patil <apatil at redhat.com>
Date:   Thu Sep 20 16:19:53 2012 +0530

    Fixed bug #858059,858168, 858056
    Added patch from CAI Qian

 bug-858168-858059.patch |   32 ++++++++++++++++++++++++++++++++
 1 files changed, 32 insertions(+), 0 deletions(-)
---
diff --git a/bug-858168-858059.patch b/bug-858168-858059.patch
new file mode 100644
index 0000000..b73a738
--- /dev/null
+++ b/bug-858168-858059.patch
@@ -0,0 +1,32 @@
+diff -rup system-config-language-1.3.5-old/src/gui_install.py system-config-language-1.3.5/src/gui_install.py
+--- system-config-language-1.3.5-old/src/gui_install.py	2012-09-20 16:11:30.566323906 +0530
++++ system-config-language-1.3.5/src/gui_install.py	2012-09-20 16:15:43.472315479 +0530
+@@ -244,8 +244,7 @@ class guiInstall(yum.YumBase):
+                 self.last = 0
+ 
+             def _do_start(self, now):
+-                txt = _("Downloading %s") %(urllib2.unquote(self.basename),)
+-                self.pbar.set_markup("<i>%s</i>" %(txt,))
++                self.pbar.set_markup("<i>Downloading packages...</i>")
+ 
+             def _do_end(self, amount_read, now=None):
+                 self.current += 1
+Only in system-config-language-1.3.5/src: gui_install.py~
+diff -rup system-config-language-1.3.5-old/src/language_gui.py system-config-language-1.3.5/src/language_gui.py
+--- system-config-language-1.3.5-old/src/language_gui.py	2012-09-20 16:11:30.566323906 +0530
++++ system-config-language-1.3.5/src/language_gui.py	2012-09-20 16:14:21.199318220 +0530
+@@ -268,8 +268,11 @@ class childWindow:
+             if not is_RepoError:   
+                 if not install.is_group_installed(grpid, self.mainWindow):
+                     pass
+-                
+-            install.selectGroup(grpid)
++            try:    
++                install.selectGroup(grpid)
++            except:
++                #Do nothing from Fedora 18 group support for languages have been removed
++                pass
+             # do depsolve.  determine if we've added anything or not.
+             install.checkDeps(self.mainWindow)
+             install.depDetails(self.mainWindow)    
+Only in system-config-language-1.3.5/src: language_gui.py~


More information about the scm-commits mailing list