pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/inputmethod/uim Update to 1.2.0, bump BUILDLINK_ABI_DE...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/ad3041c114ab
branches:  trunk
changeset: 517157:ad3041c114ab
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Sat Aug 05 18:49:29 2006 +0000

description:
Update to 1.2.0, bump BUILDLINK_ABI_DEPENDS for shlib major bump.
(There are no dependencies in pkgsrc.)

Overview of changes from 1.2.0-beta to 1.2.0
==
* Fixes
  o Minor
    - Prime
      - Fix initialization of the context upon IM switch (Konosuke).

    - uim-pref-qt
      - Handle Meta modifier.
    - uim-toolbar-qt
      - Fix to shrink toolbar when any of the buttons are removed.

    - uim.el
      - Fix displaying candidates in input prediction (Konosuke).
      - Fix displaying candidates with appendix on uim-prime (Konosuke).

* Others
  - Bump libuim version.

Overview of changes from 1.2.0-alpha to 1.2.0-beta
==
* Fixes
  o Minor
    - Anthy
    - Canna
    - Mana
      - Commit appropriate space letter in halfwidth_alnum input mode.

    - Qt immodule
      - Fix getting default IM in some environments.

Overview of changes from 1.1.x to 1.2.0-alpha
==
* New features
  - Anthy
    - Input prediction support.
    - Half-width and full-width alphanumeric conversion with a specific
      segment.
    - Add half-width alphanumeric input mode.
    - Change definition of some input-mode transition keys.

  - Canna
  - Mana
    - Hiragana, katakana, half-width katakana, half- and full-width
      alphanumeric conversion with a specific segment.
    - Add half-width alphanumeric input mode.
    - Change definition of some input-mode transition keys.

  - uim-dict-gtk
    - Support Canna private dictionary.

  - Gtk+ immodule
  - Qt immodule
    - Support locale dependent Compose file and ~/.XCompose

* Fixes
  - Anthy, Canan, Mana
    - Don't insert full-width space on half-width katakana mode (bug #502).

  - uim-xim
    - Support ja (EUC) locale in Solaris 10 (bug #7558, KIHARA Hideto).

  - general
    - Handle several input mode keys in Japanese keyboard.

diffstat:

 inputmethod/uim/Makefile      |  5 +++--
 inputmethod/uim/PLIST.common  |  6 +++---
 inputmethod/uim/buildlink3.mk |  4 ++--
 inputmethod/uim/distinfo      |  8 ++++----
 4 files changed, 12 insertions(+), 11 deletions(-)

diffs (69 lines):

diff -r 5f47303591a6 -r ad3041c114ab inputmethod/uim/Makefile
--- a/inputmethod/uim/Makefile  Sat Aug 05 17:58:04 2006 +0000
+++ b/inputmethod/uim/Makefile  Sat Aug 05 18:49:29 2006 +0000
@@ -1,9 +1,10 @@
-# $NetBSD: Makefile,v 1.24 2006/07/10 17:48:27 wiz Exp $
+# $NetBSD: Makefile,v 1.25 2006/08/05 18:49:29 wiz Exp $
 #
 
-DISTNAME=              uim-1.1.1
+DISTNAME=              uim-1.2.0
 CATEGORIES=            inputmethod
 MASTER_SITES=          http://uim.freedesktop.org/releases/
+EXTRACT_SUFX=          .tar.bz2
 
 MAINTAINER=            VEG03617%nifty.com@localhost
 HOMEPAGE=              http://uim.freedesktop.org/wiki/
diff -r 5f47303591a6 -r ad3041c114ab inputmethod/uim/PLIST.common
--- a/inputmethod/uim/PLIST.common      Sat Aug 05 17:58:04 2006 +0000
+++ b/inputmethod/uim/PLIST.common      Sat Aug 05 18:49:29 2006 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST.common,v 1.7 2006/06/12 16:35:20 wiz Exp $
+@comment $NetBSD: PLIST.common,v 1.8 2006/08/05 18:49:29 wiz Exp $
 bin/uim-fep
 bin/uim-fep-tick
 bin/uim-module-manager
@@ -96,10 +96,10 @@
 share/uim/pixmaps/ja_direct.svg
 share/uim/pixmaps/ja_fullwidth_alnum.png
 share/uim/pixmaps/ja_fullwidth_alnum.svg
+share/uim/pixmaps/ja_halfkana.png
+share/uim/pixmaps/ja_halfkana.svg
 share/uim/pixmaps/ja_halfwidth_alnum.png
 share/uim/pixmaps/ja_halfwidth_alnum.svg
-share/uim/pixmaps/ja_halfwidth_katakana.png
-share/uim/pixmaps/ja_halfwidth_katakana.svg
 share/uim/pixmaps/ja_hiragana.png
 share/uim/pixmaps/ja_hiragana.svg
 share/uim/pixmaps/ja_kana.png
diff -r 5f47303591a6 -r ad3041c114ab inputmethod/uim/buildlink3.mk
--- a/inputmethod/uim/buildlink3.mk     Sat Aug 05 17:58:04 2006 +0000
+++ b/inputmethod/uim/buildlink3.mk     Sat Aug 05 18:49:29 2006 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.6 2006/07/08 23:10:54 jlam Exp $
+# $NetBSD: buildlink3.mk,v 1.7 2006/08/05 18:49:29 wiz Exp $
 
 BUILDLINK_DEPTH:=      ${BUILDLINK_DEPTH}+
 UIM_BUILDLINK3_MK:=    ${UIM_BUILDLINK3_MK}+
@@ -13,7 +13,7 @@
 
 .if !empty(UIM_BUILDLINK3_MK:M+)
 BUILDLINK_API_DEPENDS.uim+=            uim>=0.4.6
-BUILDLINK_ABI_DEPENDS.uim?=    uim>=1.0.1nb2
+BUILDLINK_ABI_DEPENDS.uim?=    uim>=1.2.0
 BUILDLINK_PKGSRCDIR.uim?=      ../../inputmethod/uim
 .endif  # UIM_BUILDLINK3_MK
 
diff -r 5f47303591a6 -r ad3041c114ab inputmethod/uim/distinfo
--- a/inputmethod/uim/distinfo  Sat Aug 05 17:58:04 2006 +0000
+++ b/inputmethod/uim/distinfo  Sat Aug 05 18:49:29 2006 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.9 2006/07/10 17:48:27 wiz Exp $
+$NetBSD: distinfo,v 1.10 2006/08/05 18:49:29 wiz Exp $
 
-SHA1 (uim-1.1.1.tar.gz) = 23fc52da716611b34733cf2f1d45d950d3a61897
-RMD160 (uim-1.1.1.tar.gz) = 36d52ab7f3588614250743ec2ff483d17cb8ec81
-Size (uim-1.1.1.tar.gz) = 2093501 bytes
+SHA1 (uim-1.2.0.tar.bz2) = e1c56dea2005d19f96fa381da10d63938a958711
+RMD160 (uim-1.2.0.tar.bz2) = 7ce0d291c5a40e608c4cc97568ccd4e1c7cd6040
+Size (uim-1.2.0.tar.bz2) = 1670431 bytes



Home | Main Index | Thread Index | Old Index