- Update to new upstream release 1.5.4

This commit is contained in:
pnemade 2009-03-03 05:49:51 +00:00
parent 679d6e3321
commit 927ee89f82
4 changed files with 8 additions and 205 deletions

View File

@ -1,27 +1 @@
m17n-db-1.3.3.tar.gz
m17n-db-indic-0.4.28.tar.gz
m17n-db-indic-0.4.29.tar.gz
m17n-db-indic-0.4.30.tar.gz
m17n-db-indic-0.4.31.tar.gz
m17n-db-indic-0.4.32.tar.gz
m17n-db-indic-0.4.33.tar.gz
m17n-db-indic-0.4.34.tar.gz
m17n-db-indic-0.4.35.tar.gz
m17n-db-indic-0.4.36.tar.gz
m17n-db-indic-0.4.37.tar.gz
m17n-db-indic-0.4.38.tar.gz
m17n-db-indic-0.4.39.tar.gz
m17n-db-indic-0.4.40.tar.gz
m17n-db-indic-0.4.41.tar.gz
m17n-db-1.3.4.tar.gz
m17n-db-indic-0.4.42.tar.gz
m17n-db-indic-0.4.43.tar.gz
m17n-db-indic-0.4.44.tar.gz
m17n-db-indic-0.4.45.tar.gz
m17n-db-indic-0.4.46.tar.gz
m17n-db-1.4.0.tar.gz
m17n-contrib-1.1.2.tar.gz
m17n-db-1.5.0.tar.gz
m17n-db-1.5.1.tar.gz
m17n-db-1.5.2.tar.gz
m17n-db-1.5.3.tar.gz
m17n-db-1.5.4.tar.gz

View File

@ -1,175 +0,0 @@
;; hi-typewriter.mim -- Devanagari input method with typewriter method
;; Copyright (C) 2005
;; National Institute of Advanced Industrial Science and Technology (AIST)
;; Registration Number H15PRO112
;; This file is part of the m17n contrib; a sub-part of the m17n
;; library.
;; The m17n library is free software; you can redistribute it and/or
;; modify it under the terms of the GNU Lesser General Public License
;; as published by the Free Software Foundation; either version 2.1 of
;; the License, or (at your option) any later version.
;; The m17n library is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; Lesser General Public License for more details.
;; You should have received a copy of the GNU Lesser General Public
;; License along with the m17n library; if not, write to the Free
;; Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
;; 02111-1307, USA.
(input-method hi typewriter)
(description "Hindi input method with `typewriter' method.
Still experimental.
")
(title "क")
(map
(consonant
((KP_1) "१")
((KP_2) "२")
((KP_3) "३")
((KP_4) "४")
((KP_5) "५")
((KP_6) "६")
((KP_7) "७")
((KP_8) "८")
((KP_9) "९")
((KP_0) "")
((KP_Decimal) ".")
((KP_Divide) "/")
((KP_Multiply) "*")
((KP_Add) "+")
((KP_Subtract) "-")
("!" ?ऍ)
("+" ?ऋ)
("Q" ?औ)
("W" ?ऐ)
("E" ?आ)
("R" ?ई)
("T" ?ऊ)
("Y" ?भ)
("y" ?ब)
("U" ?ङ)
("u" ?ह)
("I" ?घ)
("i" ?ग)
("O" ?ध)
("o" ?द)
("P" ?झ)
("p" ?ज)
("{" ?ढ)
("[" ?ड)
("}" ?ञ)
("A" ?ओ)
("S" ?ए)
("D" ?अ)
("F" ?इ)
("G" ?उ)
("H" ?फ)
("h" ?प)
("J" ?ऱ)
("j" ?र)
("K" ?ख)
("k" ?क)
("L" ?थ)
("l" ?त)
(":" ?छ)
(";" ?च)
("\"" ?ठ)
("'" ?ट)
("|" ?ऑ)
("~" ?ऒ)
("Z" ?ऎ)
("C" ?ण)
("c" ?म)
("V" ?ऩ)
("v" ?न)
("B" ?ऴ)
("b" ?व)
("N" ?ळ)
("n" ?ल)
("M" ?श)
("m" ?स)
("<" ?ष)
("/" ?य))
(halant
("d" ?्))
(vowel-I
("f" ?ि))
(else
("1" ?१)
("@" ?ॅ)
("2" ?२)
("#" ?#)
("3" ?३)
("$" ?$)
("4" ?४)
("5" ?५)
("6" ?६)
("7" ?७)
("8" ?८)
("(" ?\()
("9" ?९)
(")" ?\))
("0" ?)
("_" ?)
("-" ?-)
("=" ?ृ)
("q" ?ौ)
("w" ?ै)
("e" ?ा)
("r" ?ी)
("t" ?ू)
("]" ?़)
("a" ?ो)
("s" ?े)
("g" ?ु)
("\\" ?ॉ)
("`" ?ॊ)
("z" ?ॆ)
("X" ?ँ)
("x" ?ं)
("," ?,)
(">" ?।)
("." ?.)
("?" ?य़)))
(state
(init
(consonant)
(halant)
(else)
(vowel-I (shift after-vowel-I)))
(after-vowel-I
(consonant
;; The current preedit is "IC". Reorder it to "CI".
(move @<) (delete @+) (move @>) (insert "ि")
;; Keep on reading the following [HC]* sequence.
(shift after-consonant))
(vowel-I
;; Delete the lastly inserted I and rehandle it in `init' state.
(delete @-) (pushback 1) (shift init))
(nil (shift init)))
(after-consonant
(halant
;; The current preedit is "C[HC]*IH". Reorder it to "C[HC]*HI".
(move @-) (delete @-) (move @>) (insert "ि")
;; Keep on reading the following C[HC]* sequence.
(shift after-consonant-halant)))
(after-consonant-halant
(consonant
;; The current preedit is "C[HC]*HIC". Reorder it to "C[HC]+I".
(move @-) (delete @-) (move @>) (insert "ि")
;; Keep on reading the following [HC]* sequence.
(shift after-consonant))))

View File

@ -1,7 +1,7 @@
Name: m17n-db
Summary: Multilingualization datafiles for m17n-lib
Version: 1.5.3
Release: 2%{?dist}
Version: 1.5.4
Release: 1%{?dist}
Group: System Environment/Libraries
License: LGPLv2+
URL: http://www.m17n.org/m17n-lib/index.html
@ -168,6 +168,7 @@ This package contains m17n-db input maps for %(echo %1 | sed -e "s/\\(.*\\)/\\u\
%mk_pkg_uses_contrib oriya or 1
%mk_pkg_uses_contrib punjabi pa 1
%mk_pkg_uses_contrib russian ru 1
%mk_pkg sanskrit sa 0
%mk_pkg serbian sr 1
%mk_pkg_uses_contrib sinhala si 1
%mk_pkg slovak sk 1
@ -297,6 +298,9 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/ibus/engine/m17n-ug-*.engine
%changelog
* Tue Mar 03 2009 Parag Nemade <pnemade@redhat.com> -1.5.4-1
- Update to new upstream release 1.5.4
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild

View File

@ -1 +1 @@
0fdf4582389bb8de75de88caffdd0776 m17n-db-1.5.3.tar.gz
c29db871d1e9c3cdde5891f1380c9eb2 m17n-db-1.5.4.tar.gz