Bumped to 1.5.0

This commit is contained in:
Takao Fujiwara 2013-01-16 18:54:06 +09:00
parent 8672699f39
commit cb21fb20db
5 changed files with 21 additions and 43 deletions

1
.gitignore vendored
View File

@ -9,3 +9,4 @@ ibus-anthy.png
/ibus-anthy-1.3.99.20120304.tar.gz /ibus-anthy-1.3.99.20120304.tar.gz
/ibus-anthy-1.4.99.20120327.tar.gz /ibus-anthy-1.4.99.20120327.tar.gz
/ibus-anthy-1.4.99.20121006.tar.gz /ibus-anthy-1.4.99.20121006.tar.gz
/ibus-anthy-1.5.0.tar.gz

View File

@ -1,25 +1 @@
From 80853b7b8b1f7c7bfe9bfc125ad55491925f6c8c Mon Sep 17 00:00:00 2001
From: fujiwarat <takao.fujiwara1@gmail.com>
Date: Wed, 12 Dec 2012 21:02:33 +0900
Subject: [PATCH] Fixed to delete arch depended lines. (#884031)
---
engine/ibus-engine-anthy.in | 2 --
1 file changed, 2 deletions(-)
diff --git a/engine/ibus-engine-anthy.in b/engine/ibus-engine-anthy.in
index 3b1c5fe..1b3fd68 100644
--- a/engine/ibus-engine-anthy.in
+++ b/engine/ibus-engine-anthy.in
@@ -26,8 +26,6 @@ prefix=@prefix@
datarootdir=@datarootdir@
exec_prefix=@exec_prefix@
libexecdir=@libexecdir@
-pyexecdir=@pyexecdir@
-export PYTHONPATH=@pyexecdir@:$PYTHONPATH
export IBUS_PREFIX=@prefix@
export IBUS_ANTHY_PKGDATADIR=@datarootdir@/@PACKAGE@
export LIBEXECDIR=$libexecdir
--
1.8.0

View File

@ -1,6 +1,6 @@
--- ibus-anthy/engine/engine.py.orig 2012-10-06 21:14:45.250978091 +0900 --- ibus-anthy/engine/engine.py.orig 2012-12-31 00:46:13.000000000 +0900
+++ ibus-anthy/engine/engine.py 2012-10-06 21:20:31.325649562 +0900 +++ ibus-anthy/engine/engine.py 2013-01-16 17:53:40.922164419 +0900
@@ -204,7 +204,7 @@ class Engine(IBus.EngineSimple): @@ -233,7 +233,7 @@ class Engine(IBus.EngineSimple):
{ 'description' : _("Input mode"), 'symbol' : symbol } { 'description' : _("Input mode"), 'symbol' : symbol }
input_mode_prop = IBus.Property(key=u'InputMode', input_mode_prop = IBus.Property(key=u'InputMode',
prop_type=IBus.PropType.MENU, prop_type=IBus.PropType.MENU,
@ -9,7 +9,7 @@
symbol=IBus.Text.new_from_string(symbol), symbol=IBus.Text.new_from_string(symbol),
icon='', icon='',
tooltip=IBus.Text.new_from_string(_("Switch input mode")), tooltip=IBus.Text.new_from_string(_("Switch input mode")),
@@ -278,7 +278,7 @@ class Engine(IBus.EngineSimple): @@ -321,7 +321,7 @@ class Engine(IBus.EngineSimple):
{ 'description' : _("Typing method"), 'symbol' : symbol } { 'description' : _("Typing method"), 'symbol' : symbol }
typing_mode_prop = IBus.Property(key=u'TypingMode', typing_mode_prop = IBus.Property(key=u'TypingMode',
prop_type=IBus.PropType.MENU, prop_type=IBus.PropType.MENU,
@ -18,7 +18,7 @@
symbol=IBus.Text.new_from_string(symbol), symbol=IBus.Text.new_from_string(symbol),
icon='', icon='',
tooltip=IBus.Text.new_from_string(_("Switch typing method")), tooltip=IBus.Text.new_from_string(_("Switch typing method")),
@@ -355,7 +355,7 @@ class Engine(IBus.EngineSimple): @@ -388,7 +388,7 @@ class Engine(IBus.EngineSimple):
{ 'description' : _("Segment mode"), 'symbol' : symbol } { 'description' : _("Segment mode"), 'symbol' : symbol }
segment_mode_prop = IBus.Property(key=u'SegmentMode', segment_mode_prop = IBus.Property(key=u'SegmentMode',
prop_type=IBus.PropType.MENU, prop_type=IBus.PropType.MENU,
@ -27,7 +27,7 @@
symbol=IBus.Text.new_from_string(symbol), symbol=IBus.Text.new_from_string(symbol),
icon=None, icon=None,
tooltip=IBus.Text.new_from_string(_("Switch conversion mode")), tooltip=IBus.Text.new_from_string(_("Switch conversion mode")),
@@ -420,7 +420,7 @@ class Engine(IBus.EngineSimple): @@ -464,7 +464,7 @@ class Engine(IBus.EngineSimple):
{ 'description' : _("Dictionary mode"), 'symbol' : short_label } { 'description' : _("Dictionary mode"), 'symbol' : short_label }
dict_mode_prop = IBus.Property(key=u'DictMode', dict_mode_prop = IBus.Property(key=u'DictMode',
prop_type=IBus.PropType.MENU, prop_type=IBus.PropType.MENU,
@ -36,8 +36,8 @@
symbol=IBus.Text.new_from_string(short_label), symbol=IBus.Text.new_from_string(short_label),
icon=None, icon=None,
tooltip=IBus.Text.new_from_string(_("Switch dictionary")), tooltip=IBus.Text.new_from_string(_("Switch dictionary")),
@@ -743,7 +743,7 @@ class Engine(IBus.EngineSimple): @@ -793,7 +793,7 @@ class Engine(IBus.EngineSimple):
self.__input_mode = mode Engine.__input_mode = mode
prop = self.__prop_dict[u'InputMode'] prop = self.__prop_dict[u'InputMode']
prop.set_symbol(IBus.Text.new_from_string(symbol)) prop.set_symbol(IBus.Text.new_from_string(symbol))
- prop.set_label(IBus.Text.new_from_string(label)) - prop.set_label(IBus.Text.new_from_string(label))
@ -45,7 +45,7 @@
self.update_property(prop) self.update_property(prop)
self.__reset() self.__reset()
@@ -771,7 +771,7 @@ class Engine(IBus.EngineSimple): @@ -821,7 +821,7 @@ class Engine(IBus.EngineSimple):
Engine.__typing_mode = mode Engine.__typing_mode = mode
prop = self.__prop_dict[u'TypingMode'] prop = self.__prop_dict[u'TypingMode']
prop.set_symbol(IBus.Text.new_from_string(symbol)) prop.set_symbol(IBus.Text.new_from_string(symbol))
@ -54,7 +54,7 @@
self.update_property(prop) self.update_property(prop)
self.__reset() self.__reset()
@@ -793,7 +793,7 @@ class Engine(IBus.EngineSimple): @@ -846,7 +846,7 @@ class Engine(IBus.EngineSimple):
_prop.set_state(IBus.PropState.CHECKED) _prop.set_state(IBus.PropState.CHECKED)
self.update_property(_prop) self.update_property(_prop)
prop.set_symbol(IBus.Text.new_from_string(symbol)) prop.set_symbol(IBus.Text.new_from_string(symbol))
@ -63,8 +63,8 @@
self.update_property(prop) self.update_property(prop)
def __segment_mode_activate(self, prop_name, state): def __segment_mode_activate(self, prop_name, state):
@@ -818,7 +818,7 @@ class Engine(IBus.EngineSimple): @@ -871,7 +871,7 @@ class Engine(IBus.EngineSimple):
self.__segment_mode = mode Engine.__segment_mode = mode
prop = self.__prop_dict[u'SegmentMode'] prop = self.__prop_dict[u'SegmentMode']
prop.set_symbol(IBus.Text.new_from_string(symbol)) prop.set_symbol(IBus.Text.new_from_string(symbol))
- prop.set_label(IBus.Text.new_from_string(label)) - prop.set_label(IBus.Text.new_from_string(label))
@ -72,7 +72,7 @@
self.update_property(prop) self.update_property(prop)
self.__reset() self.__reset()
@@ -883,7 +883,7 @@ class Engine(IBus.EngineSimple): @@ -936,7 +936,7 @@ class Engine(IBus.EngineSimple):
label = _("%(description)s (%(symbol)s)") % \ label = _("%(description)s (%(symbol)s)") % \
{ 'description' : _("Dictionary mode"), 'symbol' : symbol } { 'description' : _("Dictionary mode"), 'symbol' : symbol }
prop.set_symbol(IBus.Text.new_from_string(symbol)) prop.set_symbol(IBus.Text.new_from_string(symbol))

View File

@ -1,11 +1,11 @@
%global sub_version 1.0 %global sub_version 1.0
%global require_ibus_version 1.4.99.20120203 %global require_ibus_version 1.5.1
%global have_default_layout 1 %global have_default_layout 1
%global have_bridge_hotkey 1 %global have_bridge_hotkey 1
Name: ibus-anthy Name: ibus-anthy
Version: 1.4.99.20121006 Version: 1.5.0
Release: 3%{?dist} Release: 1%{?dist}
Summary: The Anthy engine for IBus input platform Summary: The Anthy engine for IBus input platform
License: GPLv2+ License: GPLv2+
Group: System Environment/Libraries Group: System Environment/Libraries
@ -14,7 +14,6 @@ Source0: http://ibus.googlecode.com/files/%{name}-%{version}.tar.gz
# Upstreamed patches. # Upstreamed patches.
# Patch0: %%{name}-HEAD.patch # Patch0: %%{name}-HEAD.patch
Patch0: %{name}-HEAD.patch
%if (0%{?fedora} <= 17 && 0%{?rhel} < 7) %if (0%{?fedora} <= 17 && 0%{?rhel} < 7)
# IBusProperty.symbol is not used by ibus-gjs # IBusProperty.symbol is not used by ibus-gjs
@ -55,7 +54,6 @@ for developers.
%prep %prep
%setup -q %setup -q
# %%patch0 -p1 # %%patch0 -p1
%patch0 -p1
%if (0%{?fedora} <= 17 && 0%{?rhel} < 7) %if (0%{?fedora} <= 17 && 0%{?rhel} < 7)
%patch91 -p1 %patch91 -p1
@ -126,6 +124,9 @@ touch --no-create %{_datadir}/icons/hicolor || :
%{_libdir}/libanthygobject-%{sub_version}.so %{_libdir}/libanthygobject-%{sub_version}.so
%changelog %changelog
* Wed Jan 16 2013 Takao Fujiwara <tfujiwar@redhat.com> - 1.5.0-1
- Bumped to 1.5.0
* Wed Dec 12 2012 Takao Fujiwara <tfujiwar@redhat.com> - 1.4.99.20121006-3 * Wed Dec 12 2012 Takao Fujiwara <tfujiwar@redhat.com> - 1.4.99.20121006-3
- Resolved #884031. Deleted arch depended files. - Resolved #884031. Deleted arch depended files.

View File

@ -1 +1 @@
518aa503ce40054e0027f2a79c9df640 ibus-anthy-1.4.99.20121006.tar.gz 4ff000bec3c342f5cd5a6d9e05a4abdf ibus-anthy-1.5.0.tar.gz