pkgsrc-Changes archive

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

CVS commit: pkgsrc/inputmethod/anthy



Module Name:    pkgsrc
Committed By:   msaitoh
Date:           Wed Sep  6 01:50:50 UTC 2023

Modified Files:
        pkgsrc/inputmethod/anthy: Makefile distinfo
Added Files:
        pkgsrc/inputmethod/anthy/patches: patch-anthy.el

Log Message:
anthy: Don't use old style backquote to unbreak anthy-elisp build.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 pkgsrc/inputmethod/anthy/Makefile
cvs rdiff -u -r1.14 -r1.15 pkgsrc/inputmethod/anthy/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/inputmethod/anthy/patches/patch-anthy.el

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/inputmethod/anthy/Makefile
diff -u pkgsrc/inputmethod/anthy/Makefile:1.17 pkgsrc/inputmethod/anthy/Makefile:1.18
--- pkgsrc/inputmethod/anthy/Makefile:1.17      Sat Oct  6 14:25:10 2012
+++ pkgsrc/inputmethod/anthy/Makefile   Wed Sep  6 01:50:50 2023
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.17 2012/10/06 14:25:10 asau Exp $
+# $NetBSD: Makefile,v 1.18 2023/09/06 01:50:50 msaitoh Exp $
 
 .include       "../../inputmethod/anthy/Makefile.common"
 
+PKGREVISION=   1
 EXTRACT_ONLY=  ${DISTNAME}.tar.gz
 
 MAINTAINER=    taya%NetBSD.org@localhost

Index: pkgsrc/inputmethod/anthy/distinfo
diff -u pkgsrc/inputmethod/anthy/distinfo:1.14 pkgsrc/inputmethod/anthy/distinfo:1.15
--- pkgsrc/inputmethod/anthy/distinfo:1.14      Mon Nov 15 17:50:26 2021
+++ pkgsrc/inputmethod/anthy/distinfo   Wed Sep  6 01:50:50 2023
@@ -1,11 +1,6 @@
-$NetBSD: distinfo,v 1.14 2021/11/15 17:50:26 wiz Exp $
+$NetBSD: distinfo,v 1.15 2023/09/06 01:50:50 msaitoh Exp $
 
-BLAKE2s (2ch.t) = 64e9fc0ea6383d0579e088352feef16b525c1a395d38736db9809cc4fcf0a3fd
-SHA512 (2ch.t) = bd6a487b6f90bf5a69ec7a61ea2a0fda07127f6feb8e8662ecc8a4436b3955e3a42c6cda40b0e47e8d7d4d5c76e34f41057bd4400428e561e541bc1ffd236efc
-Size (2ch.t) = 142157 bytes
 BLAKE2s (anthy-9100h.tar.gz) = ba67e761139df9f8aa9ca7af2e405621df353fc91760af2b6d116d35c5cf4258
 SHA512 (anthy-9100h.tar.gz) = 315ebd9e1af208f3ecaeaa13620213b35f004e47edb54e60c3e02c2997444cd2326cc58b725dd2d0bd6a723130884d946ea193ea3d92418082256b59ecc8d88b
 Size (anthy-9100h.tar.gz) = 4446148 bytes
-BLAKE2s (okinawa-20090801.t) = 723e4e0e6ed7bdd5a9ee309934c2465d5040ad8a5511929dfd9346e0cabe3590
-SHA512 (okinawa-20090801.t) = 03cd20ef12ea25bb462a94e77ee04825c5acd4e9281bfe9c33d390a0106d2e3113c51083389bb21996af9bcf9a74acde6fbcdc6006f737b8a74fc55abc7d6260
-Size (okinawa-20090801.t) = 165520 bytes
+SHA1 (patch-anthy.el) = 3464a065d4dd25f38cd2990e0796eba53e69876a

Added files:

Index: pkgsrc/inputmethod/anthy/patches/patch-anthy.el
diff -u /dev/null pkgsrc/inputmethod/anthy/patches/patch-anthy.el:1.1
--- /dev/null   Wed Sep  6 01:50:50 2023
+++ pkgsrc/inputmethod/anthy/patches/patch-anthy.el     Wed Sep  6 01:50:50 2023
@@ -0,0 +1,23 @@
+$NetBSD: patch-anthy.el,v 1.1 2023/09/06 01:50:50 msaitoh Exp $
+
+* Don't use old stype backquote.
+
+--- src-util/anthy.el.orig     2008-11-29 21:46:00.000000000 +0900
++++ src-util/anthy.el  2023-08-24 11:18:12.150159492 +0900
+@@ -161,11 +161,11 @@
+ 
+ ;; From skk-macs.el From viper-util.el.  Welcome!
+ (defmacro anthy-deflocalvar (var default-value &optional documentation)
+-  (` (progn
+-       (defvar (, var) (, default-value)
+-       (, (format "%s\n\(buffer local\)" documentation)))
+-       (make-variable-buffer-local '(, var))
+-       )))
++  ` (progn
++       (defvar ,var ,default-value
++       ,(format "%s\n\(buffer local\)" documentation))
++       (make-variable-buffer-local ',var)
++       ))
+ 
+ ;; buffer local variables
+ (anthy-deflocalvar anthy-context-id nil "コンテキストのid")



Home | Main Index | Thread Index | Old Index