rpms/ibus-anthy/F-12 .cvsignore, 1.21, 1.22 ibus-anthy-HEAD.patch, 1.5, 1.6 ibus-anthy.spec, 1.28, 1.29 sources, 1.22, 1.23

Takao Fujiwara fujiwara at fedoraproject.org
Wed Apr 7 06:38:35 UTC 2010


Author: fujiwara

Update of /cvs/pkgs/rpms/ibus-anthy/F-12
In directory cvs01.phx2.fedoraproject.org:/tmp/cvs-serv23841

Modified Files:
	.cvsignore ibus-anthy-HEAD.patch ibus-anthy.spec sources 
Log Message:

Update to 1.2.0.20100313
Update icon
Fix bug 564268 - Crash with enabled global input method
Fix bug 570680 - Support NICOLA-F and NICOLA-A
Fix bug 571728 - ibus-anthy support to switch dicts
Fix bug 572412 - ibus-anthy: Segment convertion mode
Fix romaji_typing_rule. #777
Fix Shift + char with CapsLock ON in romaji mode.
Fix chattering bug.



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/ibus-anthy/F-12/.cvsignore,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -p -r1.21 -r1.22
--- .cvsignore	15 Jan 2010 05:32:44 -0000	1.21
+++ .cvsignore	7 Apr 2010 06:38:34 -0000	1.22
@@ -1 +1,2 @@
-ibus-anthy-1.2.0.20100115.tar.gz
+ibus-anthy-1.2.0.20100313.tar.gz
+ibus-anthy.png

ibus-anthy-HEAD.patch:
 main.py |   10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

Index: ibus-anthy-HEAD.patch
===================================================================
RCS file: /cvs/pkgs/rpms/ibus-anthy/F-12/ibus-anthy-HEAD.patch,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- ibus-anthy-HEAD.patch	27 Nov 2009 07:36:15 -0000	1.5
+++ ibus-anthy-HEAD.patch	7 Apr 2010 06:38:34 -0000	1.6
@@ -1 +1,51 @@
+From 6ee44a752a2852ae6d661d541502af37bfbd0ba3 Mon Sep 17 00:00:00 2001
+From: fujiwarat <takao.fujiwara1 at gmail.com>
+Date: Mon, 5 Apr 2010 15:20:39 +0900
+Subject: [PATCH] Fix to i18n system dict label
+
+---
+ setup/main.py |    9 ++++++++-
+ 1 files changed, 8 insertions(+), 1 deletions(-)
+
+diff --git a/setup/main.py b/setup/main.py
+index 78a7755..af36484 100644
+--- a/setup/main.py
++++ b/setup/main.py
+@@ -266,6 +266,11 @@ class AnthySetup(object):
+     def __append_dict_id_in_model(self, id, is_gettext):
+         prefs = self.prefs
+         section = 'dict/file/' + id
++        # user value is dbus.String
++        prefs.set_value(section, 'short_label',
++                        str(prefs.get_value(section, 'short_label')))
++        prefs.set_value(section, 'long_label',
++                        str(prefs.get_value(section, 'long_label')))
+         short_label = prefs.get_value(section, 'short_label')
+         long_label = prefs.get_value(section, 'long_label')
+         embed = prefs.get_value(section, 'embed')
+@@ -382,12 +387,13 @@ class AnthySetup(object):
+         short_entry = self.xml.get_widget('dict:short_entry')
+         short_entry.set_text(short_label)
+         long_entry = self.xml.get_widget('dict:long_entry')
+-        long_entry.set_text(long_label)
+         if is_system_dict:
+             short_entry.set_editable(False)
++            long_entry.set_text(_(long_label))
+             long_entry.set_editable(False)
+         else:
+             short_entry.set_editable(True)
++            long_entry.set_text(long_label)
+             long_entry.set_editable(True)
+ 
+         return selected_id
+@@ -397,6 +403,7 @@ class AnthySetup(object):
+         prefs.set_new_section(section)
+         prefs.set_new_key(section, 'short_label')
+         prefs.fetch_item(section, 'short_label')
++        # user value is dbus.String
+         prefs.set_value(section, 'short_label',
+                         str(prefs.get_value(section, 'short_label')))
+         prefs.set_new_key(section, 'long_label')
+-- 
+1.6.2.5
 


Index: ibus-anthy.spec
===================================================================
RCS file: /cvs/pkgs/rpms/ibus-anthy/F-12/ibus-anthy.spec,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -p -r1.28 -r1.29
--- ibus-anthy.spec	15 Jan 2010 05:32:45 -0000	1.28
+++ ibus-anthy.spec	7 Apr 2010 06:38:34 -0000	1.29
@@ -1,14 +1,16 @@
 %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
 %define require_ibus_version 1.2.0.20100111
+%define require_pygtk2_version 2.15.2
 Name:       ibus-anthy
-Version:    1.2.0.20100115
+Version:    1.2.0.20100313
 Release:    1%{?dist}
 Summary:    The Anthy engine for IBus input platform
 License:    GPLv2+
 Group:      System Environment/Libraries
 URL:        http://code.google.com/p/ibus/
 Source0:    http://ibus.googlecode.com/files/%{name}-%{version}.tar.gz
-# Patch0:     ibus-anthy-HEAD.patch
+Source1:    ibus-anthy.png
+Patch0:     ibus-anthy-HEAD.patch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
@@ -22,6 +24,7 @@ BuildRequires:  intltool
 
 Requires:   ibus >= %{require_ibus_version}
 Requires:   anthy
+Requires:   pygtk2 >= %{require_pygtk2_version}
 Requires:   kasumi
 
 %description
@@ -30,7 +33,8 @@ libanthy.
 
 %prep
 %setup -q
-# %patch0 -p1
+cp %SOURCE1 icons
+%patch0 -p1
 
 %build
 %configure --disable-static
@@ -58,6 +62,17 @@ rm -rf $RPM_BUILD_ROOT
 %{_datadir}/ibus/component/*
 
 %changelog
+* Wed Apr 07 2010 Takao Fujiwara <takao.fujiwara1 at gmail.com> - 1.2.0.20100313-1
+- Update to 1.2.0.20100313
+- Update icon
+- Fix bug 564268 - Crash with enabled global input method
+- Fix bug 570680 - Support NICOLA-F and NICOLA-A
+- Fix bug 571728 - ibus-anthy support to switch dicts
+- Fix bug 572412 - ibus-anthy: Segment convertion mode
+- Fix romaji_typing_rule. #777
+- Fix Shift + char with CapsLock ON in romaji mode.
+- Fix chattering bug.
+
 * Fri Jan 15 2010 Takao Fujiwara <takao.fujiwara1 at gmail.com> - 1.2.0.20100115-1
 - Update to 1.2.0.20100115
 - Fix bug 550001 - kasumi should be accessible from ibus-anthy


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/ibus-anthy/F-12/sources,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -p -r1.22 -r1.23
--- sources	15 Jan 2010 05:32:45 -0000	1.22
+++ sources	7 Apr 2010 06:38:34 -0000	1.23
@@ -1 +1,2 @@
-0d067d7506a2a20763ef4a7056b8eb99  ibus-anthy-1.2.0.20100115.tar.gz
+060b160281142aedc8652fa3af5584c6  ibus-anthy-1.2.0.20100313.tar.gz
+8e0c658ad05b56fc76b8391f5a76900f  ibus-anthy.png



More information about the scm-commits mailing list