rpms/ibus-table/devel ibus-table-1.2.0.20090904-2.equalsign.patch, NONE, 1.1 ibus-table.spec, 1.29, 1.30

cchance cchance at fedoraproject.org
Wed Jan 6 02:22:27 UTC 2010


Author: cchance

Update of /cvs/pkgs/rpms/ibus-table/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18741

Modified Files:
	ibus-table.spec 
Added Files:
	ibus-table-1.2.0.20090904-2.equalsign.patch 
Log Message:
* Wed Jan 06 2010 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090912-3.fc13
- Apply parsing equal sign patch.



ibus-table-1.2.0.20090904-2.equalsign.patch:
 tabcreatedb.py |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- NEW FILE ibus-table-1.2.0.20090904-2.equalsign.patch ---
diff -up ibus-table-1.2.0.20090912/engine/tabcreatedb.py.orig ibus-table-1.2.0.20090912/engine/tabcreatedb.py
--- ibus-table-1.2.0.20090912/engine/tabcreatedb.py.orig	2010-01-06 12:14:40.098086168 +1000
+++ ibus-table-1.2.0.20090912/engine/tabcreatedb.py	2010-01-06 12:14:57.293835609 +1000
@@ -173,9 +173,9 @@ def main ():
     def attribute_parser (f):
         for l in f:
             try:
-                attr,val = unicode (l,"utf-8").strip().split ('=')
+                attr,val = unicode (l,"utf-8").strip().split ('=', 1)
             except:
-                attr,val = unicode (l,"utf-8").strip().split ('==')
+                attr,val = unicode (l,"utf-8").strip().split ('==', 1)
             attr = attr.strip()
             origin_attr = attr
             attr = attr.lower()


Index: ibus-table.spec
===================================================================
RCS file: /cvs/pkgs/rpms/ibus-table/devel/ibus-table.spec,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -p -r1.29 -r1.30
--- ibus-table.spec	11 Nov 2009 02:31:55 -0000	1.29
+++ ibus-table.spec	6 Jan 2010 02:22:27 -0000	1.30
@@ -1,12 +1,13 @@
 Name:       ibus-table
 Version:    1.2.0.20090912
-Release:    1%{?dist}
+Release:    3%{?dist}
 Summary:    The Table engine for IBus platform
 License:    LGPLv2+
 Group:      System Environment/Libraries
 URL:        http://code.google.com/p/ibus/
 Source0:    http://ibus.googlecode.com/files/%{name}-%{version}.tar.gz
 Patch0:     ibus-table-1.2.0.20090912-1.disable_speedmeter.patch
+Patch1:     ibus-table-1.2.0.20090904-2.equalsign.patch
 
 Requires:       ibus > 1.2.0
 BuildRequires:  ibus-devel > 1.2.0
@@ -28,6 +29,7 @@ This package contains additional tables.
 %prep
 %setup -q
 %patch0 -p1 -b .1-disable_speedmeter
+%patch1 -p1 -b .2-equalsign
 
 %build
 %configure --disable-static
@@ -108,6 +110,9 @@ ibus-table-createdb -i -n %{_datadir}/ib
 %{_datadir}/ibus-table/icons/latex.svg
 
 %changelog
+* Wed Jan 06 2010 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090912-3.fc13
+- Apply parsing equal sign patch.
+
 * Wed Nov 11 2009 Caius 'kaio' Chance <k at kaio.me> - 1.2.0.20090912-2.fc13
 - Fix crashing caused by speedmeter.
 




More information about the fedora-extras-commits mailing list