pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/editors/tamago To work on emacs23, add a minimum patch...
details: https://anonhg.NetBSD.org/pkgsrc/rev/da1e0a2e8086
branches: trunk
changeset: 397659:da1e0a2e8086
user: taca <taca%pkgsrc.org@localhost>
date: Mon Aug 17 15:28:23 2009 +0000
description:
To work on emacs23, add a minimum patch from
http://www.m17n.org/mlarchive/mule-ja/200703/msg00018.html.
Bump PKGREVISION.
diffstat:
editors/tamago/Makefile | 4 +-
editors/tamago/distinfo | 5 +-
editors/tamago/patches/patch-aa | 176 +---------------------
editors/tamago/patches/patch-ab | 328 ++++++++++++++++++++++++++++++++++++++++
4 files changed, 334 insertions(+), 179 deletions(-)
diffs (truncated from 549 to 300 lines):
diff -r 4dfeddc51de4 -r da1e0a2e8086 editors/tamago/Makefile
--- a/editors/tamago/Makefile Mon Aug 17 14:45:16 2009 +0000
+++ b/editors/tamago/Makefile Mon Aug 17 15:28:23 2009 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.21 2009/08/06 01:44:52 minskim Exp $
+# $NetBSD: Makefile,v 1.22 2009/08/17 15:28:24 taca Exp $
DISTNAME= tamago-4.0.6
PKGNAME= ${EMACS_PKGNAME_PREFIX}tamago-20020909
-PKGREVISION= 3
+PKGREVISION= 4
CATEGORIES= editors
MASTER_SITES= http://unit.aist.go.jp/itri/itri-gist/ftp.m17n.org/pub/tamago/
diff -r 4dfeddc51de4 -r da1e0a2e8086 editors/tamago/distinfo
--- a/editors/tamago/distinfo Mon Aug 17 14:45:16 2009 +0000
+++ b/editors/tamago/distinfo Mon Aug 17 15:28:23 2009 +0000
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.8 2005/02/23 17:15:12 agc Exp $
+$NetBSD: distinfo,v 1.9 2009/08/17 15:28:24 taca Exp $
SHA1 (tamago-4.0.6.tar.gz) = f1ae53cbcdeb5f2aad9d90d75742efe2fcd83d39
RMD160 (tamago-4.0.6.tar.gz) = 6b744b5e8e512d3dc05f3483ac9b76b0f4eaa968
Size (tamago-4.0.6.tar.gz) = 260021 bytes
-SHA1 (patch-aa) = 21d8bfed2478c8c49f366f49a7409c704799c5b2
+SHA1 (patch-aa) = b5b51bc45794adbe047aad011c3e0d18fe69eae9
+SHA1 (patch-ab) = d951d6f229b1c30a44ba46aff0384777e667f353
diff -r 4dfeddc51de4 -r da1e0a2e8086 editors/tamago/patches/patch-aa
--- a/editors/tamago/patches/patch-aa Mon Aug 17 14:45:16 2009 +0000
+++ b/editors/tamago/patches/patch-aa Mon Aug 17 15:28:23 2009 +0000
@@ -1,4 +1,4 @@
-$NetBSD: patch-aa,v 1.8 2003/07/22 03:58:53 uebayasi Exp $
+$NetBSD: patch-aa,v 1.9 2009/08/17 15:28:23 taca Exp $
Index: AUTHORS
===================================================================
@@ -6091,180 +6091,6 @@
-;;; egg-cnv.el ends here.
+
+;;; egg-cnv.el ends here
-Index: egg-com.el
-===================================================================
-RCS file: /cvs/tamago/tamago/egg-com.el,v
-retrieving revision 1.1.1.1
-retrieving revision 1.2
-diff -d -u -p -r1.1.1.1 -r1.2
---- egg-com.el 27 Jan 2001 18:45:24 -0000 1.1.1.1
-+++ egg-com.el 27 Jan 2001 18:53:13 -0000 1.2
-@@ -136,6 +136,7 @@
- (cons ccl-decode-fixed-euc-kr ccl-encode-fixed-euc-kr))
-
- ;; Chinese
-+
- (defconst egg-pinyin-shengmu
- '(("" . 0) ("B" . 1) ("C" . 2) ("Ch" . 3) ("D" . 4)
- ("F" . 5) ("G" . 6) ("H" . 7) ("J" . 8) ("K" . 9)
-@@ -521,53 +522,60 @@
- (defun decode-fixed-euc-china-region (beg end type zhuyin)
- "Decode EUC-CN/TW encoded text in the region.
- Return the length of resulting text."
-- (prog1
-- (let ((str (string-as-unibyte (buffer-substring beg end)))
-- (i 0)
-- l c0 c1 s y ss)
-- (delete-region beg end)
-- (setq l (1- (length str)))
-- (while (< i l)
-- (setq c0 (aref str i)
-- c1 (aref str (1+ i))
-- i (+ i 2))
-- (cond
-- ((eq c0 0)
-- (if (> c1 ?\xa0)
-- (insert leading-code-private-11
-- (charset-id 'chinese-sisheng)
-- c1)
-- (insert c1)))
-- ((>= c0 ?\x80)
-- (cond
-- ((eq type 'cn)
-- (insert (charset-id 'chinese-gb2312) c0 (logior c1 ?\x80)))
-- ((>= c1 ?\x80)
-- (insert (charset-id 'chinese-cns11643-1) c0 c1))
-- (t
-- (insert (charset-id 'chinese-cns11643-2) c0 (+ c1 ?\x80)))))
-- (t
-- (setq c1 (logand c1 ?\x7f))
-- (setq s (- (lsh c1 -2) 7);;(+ (lsh (- c1 32) -2) 1)
-- y (- (lsh c0 -1) 16);;(lsh (- c0 32) -1)
-- ss (+ (logand c0 1) (logand c1 3)))
-- (if (and (eq s 20)
-- (eq (aref egg-pinyin-table (+ (* 39 20) y)) 0))
-- (setq s 0))
-- (if (null zhuyin)
-- (setq s (car (nth s egg-pinyin-shengmu))
-- y (car (nth (+ (* 5 y) ss) egg-pinyin-yunmu)))
-- (setq c0 (aref egg-zhuyin-table (+ (* 41 s) y)))
-- (if (eq (logand c0 ?\x8080) ?\x80)
-- (setq s (lsh c0 -8)
-- y (logand c0 ?\x7f)))
-- (setq s (car (nth s egg-zhuyin-shengmu))
-- y (car (nth (+ (* 5 y) ss) egg-zhuyin-yunmu))))
-- (if enable-multibyte-characters
-- (insert s y)
-- (insert (string-as-unibyte s) (string-as-unibyte y))))))
-- (- (point) beg))
-- (if (looking-at "\0\0") (forward-char 2))))
-+ (let ((str (string-as-unibyte (buffer-substring beg end)))
-+ (i 0)
-+ (char (make-string 3 0))
-+ l c0 c1 s y ss)
-+ (delete-region beg end)
-+ (setq l (1- (length str)))
-+ (while (< i l)
-+ (setq c0 (aref str i)
-+ c1 (aref str (1+ i))
-+ i (+ i 2))
-+ (cond
-+ ((eq c0 0)
-+ (if (<= c1 ?\xa0)
-+ (insert c1)
-+ (aset char 0 leading-code-private-11)
-+ (aset char 1 (charset-id 'chinese-sisheng))
-+ (aset char 2 c1)
-+ (insert (string-as-multibyte char))))
-+ ((>= c0 ?\x80)
-+ (cond
-+ ((eq type 'cn)
-+ (aset char 0 (charset-id 'chinese-gb2312))
-+ (aset char 1 c0)
-+ (aset char 2 (logior c1 ?\x80)))
-+ ((>= c1 ?\x80)
-+ (aset char 0 (charset-id 'chinese-cns11643-1))
-+ (aset char 1 c0)
-+ (aset char 2 c1))
-+ (t
-+ (aset char 0 (charset-id 'chinese-cns11643-2))
-+ (aset char 1 c0)
-+ (aset char 2 (+ c1 ?\x80))))
-+ (insert (string-as-multibyte char)))
-+ (t
-+ (setq c1 (logand c1 ?\x7f))
-+ (setq s (- (lsh c1 -2) 7);;(+ (lsh (- c1 32) -2) 1)
-+ y (- (lsh c0 -1) 16);;(lsh (- c0 32) -1)
-+ ss (+ (logand c0 1) (logand c1 3)))
-+ (if (and (eq s 20)
-+ (eq (aref egg-pinyin-table (+ (* 39 20) y)) 0))
-+ (setq s 0))
-+ (if (null zhuyin)
-+ (setq s (car (nth s egg-pinyin-shengmu))
-+ y (car (nth (+ (* 5 y) ss) egg-pinyin-yunmu)))
-+ (setq c0 (aref egg-zhuyin-table (+ (* 41 s) y)))
-+ (if (eq (logand c0 ?\x8080) ?\x80)
-+ (setq s (lsh c0 -8)
-+ y (logand c0 ?\x7f)))
-+ (setq s (car (nth s egg-zhuyin-shengmu))
-+ y (car (nth (+ (* 5 y) ss) egg-zhuyin-yunmu))))
-+ (if enable-multibyte-characters
-+ (insert s y)
-+ (insert (string-as-unibyte s) (string-as-unibyte y))))))
-+ (- (point) beg)))
-
- (defun post-read-decode-fixed-euc-china (len type zhuyin)
- (let ((pos (point))
-@@ -620,7 +628,7 @@ Return the length of resulting text."
-
- (eval-and-compile
- (define-ccl-program ccl-decode-egg-binary
-- `(2
-+ `(1
- ((read r0)
- (loop
- (if (r0 == ?\xff)
-@@ -628,7 +636,7 @@ Return the length of resulting text."
- (write-read-repeat r0)))))
-
- (define-ccl-program ccl-encode-egg-binary
-- `(1
-+ `(2
- ((read r0)
- (loop
- (if (r0 == ?\xff)
-@@ -705,6 +713,7 @@ U: 32-bit integer. The argument is 2 el
- u: 32-bit integer. The argument is treat as unsigned integer.
- (Note: Elisp's integer may be less than 32 bits)
- i: 32-bit integer.
-+ (Note: Elisp's integer may be greater than 32 bits)
- w: 16-bit integer.
- b: 8-bit integer.
- S: 16-bit wide-character EUC string (0x0000 terminated).
-@@ -776,6 +785,14 @@ V: Fixed length string (0x00 terminated)
- (+ (lsh (comm-following+forward-char) 8)
- (comm-following+forward-char)))))
-
-+(defun comm-unpack-i32 ()
-+ (progn
-+ (comm-require-process-output 4)
-+ (+ (lsh (- (logxor (comm-following+forward-char) 128) 128) 24)
-+ (lsh (comm-following+forward-char) 16)
-+ (lsh (comm-following+forward-char) 8)
-+ (comm-following+forward-char))))
-+
- (defun comm-unpack-u32 ()
- (progn
- (comm-require-process-output 4)
-@@ -852,7 +869,7 @@ See `comm-format' for FORMAT."
- (list
- (cond ((eq f 'U) `(setq ,arg (comm-unpack-u32c)))
- ((eq f 'u) `(setq ,arg (comm-unpack-u32)))
-- ((eq f 'i) `(setq ,arg (comm-unpack-u32)))
-+ ((eq f 'i) `(setq ,arg (comm-unpack-i32)))
- ((eq f 'w) `(setq ,arg (comm-unpack-u16)))
- ((eq f 'b) `(setq ,arg (comm-unpack-u8)))
- ((eq f 'S) `(setq ,arg (comm-unpack-u16-string)))
Index: egg-mlh.el
===================================================================
RCS file: /cvs/tamago/tamago/egg-mlh.el,v
diff -r 4dfeddc51de4 -r da1e0a2e8086 editors/tamago/patches/patch-ab
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/editors/tamago/patches/patch-ab Mon Aug 17 15:28:23 2009 +0000
@@ -0,0 +1,328 @@
+$NetBSD: patch-ab,v 1.1 2009/08/17 15:28:23 taca Exp $
+
+--- egg-com.el.orig 2000-01-04 15:49:56.000000000 +0900
++++ egg-com.el
+@@ -44,62 +44,101 @@
+
+ ;; Japanese
+
+-(eval-and-compile
+-(define-ccl-program ccl-decode-fixed-euc-jp
+- `(2
+- ((r2 = ,(charset-id 'japanese-jisx0208))
+- (r3 = ,(charset-id 'japanese-jisx0212))
+- (r4 = ,(charset-id 'katakana-jisx0201))
+- (read r0)
+- (loop
+- (read r1)
+- (if (r0 < ?\x80)
+- ((r0 = r1)
+- (if (r1 < ?\x80)
+- (write-read-repeat r0))
+- (write r4)
+- (write-read-repeat r0))
+- ((if (r1 > ?\x80)
+- ((write r2 r0)
+- (r0 = r1)
+- (write-read-repeat r0))
+- ((write r3 r0)
+- (r0 = (r1 | ?\x80))
+- (write-read-repeat r0)))))))))
+-
+-(define-ccl-program ccl-encode-fixed-euc-jp
+- `(2
+- ((read r0)
+- (loop
+- (if (r0 == ,(charset-id 'latin-jisx0201)) ; Unify
+- ((read r0)
+- (r0 &= ?\x7f)))
+- (if (r0 < ?\x80) ;G0
+- ((write 0)
+- (write-read-repeat r0)))
+- (r6 = (r0 == ,(charset-id 'japanese-jisx0208)))
+- (r6 |= (r0 == ,(charset-id 'japanese-jisx0208-1978)))
+- (if r6 ;G1
+- ((read r0)
+- (write r0)
+- (read r0)
+- (write-read-repeat r0)))
+- (if (r0 == ,(charset-id 'katakana-jisx0201)) ;G2
+- ((read r0)
+- (write 0)
+- (write-read-repeat r0)))
+- (if (r0 == ,(charset-id 'japanese-jisx0212)) ;G3
+- ((read r0)
+- (write r0)
+- (read r0)
+- (r0 &= ?\x7f)
+- (write-read-repeat r0)))
+- (read r0)
+- (repeat)))))
+-)
+-
+-(make-coding-system 'fixed-euc-jp 4 ?W "Coding System for fixed EUC Japanese"
+- (cons ccl-decode-fixed-euc-jp ccl-encode-fixed-euc-jp))
++(cond
++ ((string-match "^\\(20\\|21\\|22\\)" emacs-version)
++ (eval-and-compile
++ (define-ccl-program ccl-decode-fixed-euc-kr
++ `(2
++ ((r2 = ,(charset-id 'korean-ksc5601))
++ (read r0)
++ (loop
++ (read r1)
++ (if (r0 < ?\x80)
++ (r0 = r1 & ?\x7f)
++ ((write r2 r0)
++ (r0 = r1 | ?\x80)))
++ (write-read-repeat r0)))))
++
Home |
Main Index |
Thread Index |
Old Index