Update ibus-chewing to 1.4.2.

* Thu Aug 30 2012 Ding-Yi Chen <dchen at redhat.com> - 1.4.2
- Fixed GitHub issue #7: highlighted text be cut after switch back to pure ibus
  by merging pull request #24 from buganini
- Fixed GitHub issue #20: Shift key will send duplicated strings
  by merging pull request #22 from buganini
- Fixed GitHub issue #21: somethings wrong with cmake
- Fixed GitHub issue #25: Weird symbol when input with somethings highlighted
  by merging pull request #26 from buganini
- Fixed GitHub issue #27: Local path committed into tree
- Fixed: Bug 713033 -  [zh_TW] ibus-chewing problem
- Fixed: Bug 745371 -  ibus-chewing: mode confusion In Temporary English mode and Chinese mode later on
- Fixed: Google Issue 1172: [ibus-chewing] move elf file to standard directory.
- Fixed: Google Issue 1426: ibus-chewing-1.3.10 installs directory /gconf to root filesystem
- Fixed: Google Issue 1428: ibus-chewing-1.3.10 fails to save it's settings
- Fixed: Google Issue 1481: Some characters are missing when a long string in preedit buffer.
- Fixed: Google Issue 1490: Cannot change INSTAL prefix for ibus-chewing-1.4.0
This commit is contained in:
obache 2012-08-30 12:26:32 +00:00
parent e52254727a
commit 28b8648559
3 changed files with 7 additions and 35 deletions

View file

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.15 2012/08/13 11:50:45 obache Exp $
# $NetBSD: Makefile,v 1.16 2012/08/30 12:26:32 obache Exp $
#
DISTNAME= ibus-chewing-1.4.0-Source
DISTNAME= ibus-chewing-1.4.2-Source
PKGNAME= ${DISTNAME:S/-Source//}
CATEGORIES= inputmethod chinese
MASTER_SITES= http://ibus.googlecode.com/files/
@ -28,6 +28,7 @@ STRIP_CMD.yes= ${AWK} -f ${PKGSRCDIR}/mk/tools/msgfmt-msgctxt.awk
STRIP_CMD.no= ${CAT}
GCONF_SCHEMAS= ibus-chewing.schemas
CMAKE_ARGS+= -DLIBEXEC_DIR=${PREFIX}/libexec
CMAKE_ARGS+= -DGCONF_SCHEMAS_INSTALLED_DIR=${GCONF_SCHEMAS_DIR}
# missing in archive

View file

@ -1,7 +1,6 @@
$NetBSD: distinfo,v 1.7 2012/08/13 11:50:45 obache Exp $
$NetBSD: distinfo,v 1.8 2012/08/30 12:26:32 obache Exp $
SHA1 (ibus-chewing-1.4.0-Source.tar.gz) = 18023ce3269cfde75775e3335359d0dc60118679
RMD160 (ibus-chewing-1.4.0-Source.tar.gz) = 3d94bcf3fcc34c0ae5d930151256cf10c248ed15
Size (ibus-chewing-1.4.0-Source.tar.gz) = 83426 bytes
SHA1 (ibus-chewing-1.4.2-Source.tar.gz) = 0b424347c51327c91c67c6b294f2afac903e0d6e
RMD160 (ibus-chewing-1.4.2-Source.tar.gz) = 580ba66f0925f12c3dfcd645ab9ea9db32c34fc2
Size (ibus-chewing-1.4.2-Source.tar.gz) = 84351 bytes
SHA1 (patch-Modules_DateTimeFormat.cmake) = 588068914de5db765c1c5d1a623e3b73f720a64f
SHA1 (patch-Modules_ManageVersion.cmake) = baf2677c8bdb4843eca035c78012bc7a8666c3f5

View file

@ -1,28 +0,0 @@
$NetBSD: patch-Modules_ManageVersion.cmake,v 1.1 2012/08/13 11:50:45 obache Exp $
* No need to remove CMakeCache.txt when doing update
http://git.fedorahosted.org/cgit/cmake-fedora.git/commit/Modules/ManageVersion.cmake?id=80f67e1bf0eb8e704d333a7999f7b4713e88a44c
--- Modules/ManageVersion.cmake.orig 2012-07-22 19:33:19.000000000 +0000
+++ Modules/ManageVersion.cmake
@@ -118,18 +118,14 @@ IF(NOT DEFINED _MANAGE_VERSION_CMAKE_)
SET(CMAKE_CACHE_TXT "${CMAKE_BINARY_DIR}/CMakeCache.txt")
ADD_CUSTOM_COMMAND(OUTPUT ${CHANGELOG_FILE}
- COMMAND ${CMAKE_COMMAND} -E remove -f ${CMAKE_CACHE_TXT}
COMMAND ${CMAKE_COMMAND} ${CMAKE_SOURCE_DIR}
DEPENDS ${RELEASE_NOTES_FILE} ${CHANGELOG_PREV_FILE}
- COMMENT "ChangeLog is older than ${RELEASE_NOTES_FILE}. Rebuilding"
+ COMMENT "Building ${CHANGELOG_FILE}"
VERBATIM
)
ADD_CUSTOM_TARGET(changelog ALL
- COMMAND ${CMAKE_COMMAND} -E remove -f ${CMAKE_CACHE_TXT}
- COMMAND ${CMAKE_COMMAND} ${CMAKE_SOURCE_DIR}
- DEPENDS ${RELEASE_NOTES_FILE} ${CHANGELOG_PREV_FILE}
- COMMENT "Building ChangeLog"
+ DEPENDS ${CHANGELOG_FILE}
VERBATIM
)