diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2009-02-05 16:18:58 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2009-02-05 16:18:58 +0000 |
commit | af7d789433cbfe4464ddbe9d78c39092ce56638d (patch) | |
tree | 385e16ac38b6f16e1324f9e6dd10dcc2b2beeb6b /app-i18n/ibus-anthy | |
parent | Fixed dependency. (diff) | |
download | historical-af7d789433cbfe4464ddbe9d78c39092ce56638d.tar.gz historical-af7d789433cbfe4464ddbe9d78c39092ce56638d.tar.bz2 historical-af7d789433cbfe4464ddbe9d78c39092ce56638d.zip |
Version bumped. Fixed dependency.
Package-Manager: portage-2.1.6.7/cvs/Linux x86_64
Diffstat (limited to 'app-i18n/ibus-anthy')
-rw-r--r-- | app-i18n/ibus-anthy/ChangeLog | 11 | ||||
-rw-r--r-- | app-i18n/ibus-anthy/files/ibus-anthy-0.1.1.20080912-gentoo.patch | 86 | ||||
-rw-r--r-- | app-i18n/ibus-anthy/ibus-anthy-0.1.1.20080901.ebuild | 40 | ||||
-rw-r--r-- | app-i18n/ibus-anthy/ibus-anthy-0.1.1.20080912.ebuild | 40 | ||||
-rw-r--r-- | app-i18n/ibus-anthy/ibus-anthy-0.1.1.20090203.ebuild | 4 | ||||
-rw-r--r-- | app-i18n/ibus-anthy/ibus-anthy-1.1.0.20090205.ebuild (renamed from app-i18n/ibus-anthy/ibus-anthy-0.1.1.20080912-r1.ebuild) | 5 |
6 files changed, 14 insertions, 172 deletions
diff --git a/app-i18n/ibus-anthy/ChangeLog b/app-i18n/ibus-anthy/ChangeLog index 94152c033aeb..56cdcfd61fe4 100644 --- a/app-i18n/ibus-anthy/ChangeLog +++ b/app-i18n/ibus-anthy/ChangeLog @@ -1,6 +1,15 @@ # ChangeLog for app-i18n/ibus-anthy # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v 1.4 2009/02/03 14:41:51 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v 1.5 2009/02/05 16:15:00 matsuu Exp $ + +*ibus-anthy-1.1.0.20090205 (05 Feb 2009) + + 05 Feb 2009; MATSUU Takuto <matsuu@gentoo.org> + -files/ibus-anthy-0.1.1.20080912-gentoo.patch, + -ibus-anthy-0.1.1.20080901.ebuild, -ibus-anthy-0.1.1.20080912.ebuild, + -ibus-anthy-0.1.1.20080912-r1.ebuild, ibus-anthy-0.1.1.20090203.ebuild, + +ibus-anthy-1.1.0.20090205.ebuild: + Version bumped. Fixed dependency. Removed old versions. *ibus-anthy-0.1.1.20090203 (03 Feb 2009) diff --git a/app-i18n/ibus-anthy/files/ibus-anthy-0.1.1.20080912-gentoo.patch b/app-i18n/ibus-anthy/files/ibus-anthy-0.1.1.20080912-gentoo.patch deleted file mode 100644 index d11500135741..000000000000 --- a/app-i18n/ibus-anthy/files/ibus-anthy-0.1.1.20080912-gentoo.patch +++ /dev/null @@ -1,86 +0,0 @@ -diff -Naur ibus-anthy-0.1.1.20080912.orig/engine/engine.py ibus-anthy-0.1.1.20080912/engine/engine.py ---- ibus-anthy-0.1.1.20080912.orig/engine/engine.py 2008-09-04 00:12:21.000000000 +0900 -+++ ibus-anthy-0.1.1.20080912/engine/engine.py 2009-01-13 19:06:22.000000000 +0900 -@@ -568,6 +568,15 @@ - return True - - def __on_key_space(self): -+ if self.__input_mode == INPUT_MODE_WIDE_LATIN: -+ # Input Wide Latin chars -+ char = unichr(keysyms.space) -+ wide_char = symbol_rule.get(char, None) -+ if wide_char == None: -+ wide_char = ibus.unichar_half_to_full(char) -+ self.__commit_string(wide_char) -+ return True -+ - if self.__preedit_ja_string.is_empty(): - return False - -diff -Naur ibus-anthy-0.1.1.20080912.orig/engine/romaji.py ibus-anthy-0.1.1.20080912/engine/romaji.py ---- ibus-anthy-0.1.1.20080912.orig/engine/romaji.py 2008-09-03 15:12:49.000000000 +0900 -+++ ibus-anthy-0.1.1.20080912/engine/romaji.py 2009-01-13 17:57:03.000000000 +0900 -@@ -56,6 +56,12 @@ - self._jachars = jachars - return [RomajiSegment(c)] - -+ jachars, c = romaji_correction_rule.get(text, (None, None)) -+ if jachars: -+ self._enchars = text[0] -+ self._jachars = jachars -+ return [RomajiSegment(c)] -+ - for i in range(-min(4, len(text)), 0): - enchars = text[i:] - -@@ -107,6 +113,11 @@ - self._enchars = c - return [RomajiSegment(text[0], jachars)] - -+ jachars, c = romaji_correction_rule.get(text, (None, None)) -+ if jachars: -+ self._enchars = c -+ return [RomajiSegment(text[0], jachars)] -+ - for i in range(min(4, len(text)), 0, -1): - enchars = text[:i] - -diff -Naur ibus-anthy-0.1.1.20080912.orig/engine/tables.py ibus-anthy-0.1.1.20080912/engine/tables.py ---- ibus-anthy-0.1.1.20080912.orig/engine/tables.py 2008-09-04 00:13:03.000000000 +0900 -+++ ibus-anthy-0.1.1.20080912/engine/tables.py 2009-01-13 18:31:31.000000000 +0900 -@@ -228,6 +228,7 @@ - - symbol_rule = { - # symbols -+ u" " : u" ", - u"," : u"、", - u"." : u"。", - u"!" : u"!", -@@ -570,22 +571,22 @@ - u"%" : (u"%", u"%"), - u"&" : (u"&", u"&"), - u"’" : (u"’", u"'"), -- u"(" : (u"(", u""), -+ u"(" : (u"(", u"("), - u")" : (u")", u")"), - u"〜" : (u"〜", u"~"), - u"=" : (u"=", u"="), -- u"^" : (u"^", u"u"), -+ u"^" : (u"^", u"^"), - u"\" : (u"\", u"\\"), - u"|" : (u"|", u"|"), - u"‘" : (u"‘", u"`"), - u"@" : (u"@", u"@"), -- u"{" : (u"{", u""), -+ u"{" : (u"{", u"{"), - u"「" : (u"「", u"「"), - u"+" : (u"+", u"+"), - u";" : (u";", u";"), - u"*" : (u"*", u"*"), -- u":" : (u":", u" : u"), -- u"}" : (u"}", u")"), -+ u":" : (u":", u":"), -+ u"}" : (u"}", u"}"), - u"」" : (u"」", u"」"), - u"<" : (u"<", u"<"), - u">" : (u">", u">"), diff --git a/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20080901.ebuild b/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20080901.ebuild deleted file mode 100644 index 589b37c9a689..000000000000 --- a/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20080901.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20080901.ebuild,v 1.1 2008/09/06 03:27:21 matsuu Exp $ - -DESCRIPTION="Japanese input method Anthy IMEngine for IBus Framework" -HOMEPAGE="http://code.google.com/p/ibus/" -SRC_URI="http://ibus.googlecode.com/files/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="nls" - -RDEPEND="app-i18n/ibus - app-i18n/anthy - >=dev-lang/python-2.5 - nls? ( virtual/libintl )" -DEPEND="${RDEPEND} - dev-lang/swig - dev-util/pkgconfig - nls? ( >=sys-devel/gettext-0.16.1 )" - -src_compile() { - econf $(use_enable nls) || die - emake || die -} - -src_install() { - emake DESTDIR="${D}" install || die - - dodoc AUTHORS ChangeLog NEWS README -} - -pkg_postinst() { - ewarn "This package is very experimental, please report your bugs to" - ewarn "http://ibus.googlecode.com/issues/list" - elog - elog "You should run ibus-setup and enable IM Engines you want to use!" - elog -} diff --git a/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20080912.ebuild b/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20080912.ebuild deleted file mode 100644 index 516c80f43934..000000000000 --- a/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20080912.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20080912.ebuild,v 1.1 2008/09/12 16:03:14 matsuu Exp $ - -DESCRIPTION="Japanese input method Anthy IMEngine for IBus Framework" -HOMEPAGE="http://code.google.com/p/ibus/" -SRC_URI="http://ibus.googlecode.com/files/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="nls" - -RDEPEND="app-i18n/ibus - app-i18n/anthy - >=dev-lang/python-2.5 - nls? ( virtual/libintl )" -DEPEND="${RDEPEND} - dev-lang/swig - dev-util/pkgconfig - nls? ( >=sys-devel/gettext-0.16.1 )" - -src_compile() { - econf $(use_enable nls) || die - emake || die -} - -src_install() { - emake DESTDIR="${D}" install || die - - dodoc AUTHORS ChangeLog NEWS README -} - -pkg_postinst() { - ewarn "This package is very experimental, please report your bugs to" - ewarn "http://ibus.googlecode.com/issues/list" - elog - elog "You should run ibus-setup and enable IM Engines you want to use!" - elog -} diff --git a/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20090203.ebuild b/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20090203.ebuild index 60e36d6ff832..5b51e81fa7e4 100644 --- a/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20090203.ebuild +++ b/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20090203.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20090203.ebuild,v 1.1 2009/02/03 14:41:51 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20090203.ebuild,v 1.2 2009/02/05 16:15:00 matsuu Exp $ inherit eutils python @@ -13,7 +13,7 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="nls" -RDEPEND="app-i18n/ibus +RDEPEND="=app-i18n/ibus-0.1* app-i18n/anthy >=dev-lang/python-2.5 nls? ( virtual/libintl )" diff --git a/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20080912-r1.ebuild b/app-i18n/ibus-anthy/ibus-anthy-1.1.0.20090205.ebuild index 302fd273b12b..258e12c44788 100644 --- a/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20080912-r1.ebuild +++ b/app-i18n/ibus-anthy/ibus-anthy-1.1.0.20090205.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20080912-r1.ebuild,v 1.1 2009/01/21 14:42:26 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.1.0.20090205.ebuild,v 1.1 2009/02/05 16:15:00 matsuu Exp $ inherit eutils python @@ -13,7 +13,7 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="nls" -RDEPEND="app-i18n/ibus +RDEPEND=">=app-i18n/ibus-1.1.0 app-i18n/anthy >=dev-lang/python-2.5 nls? ( virtual/libintl )" @@ -25,7 +25,6 @@ DEPEND="${RDEPEND} src_unpack() { unpack ${A} cd "${S}" - epatch "${FILESDIR}/${P}-gentoo.patch" mv py-compile py-compile.orig || die ln -s "$(type -P true)" py-compile || die } |