git: 0974a3c0296f - main - mail/mew: Update to 6.9

From: Yasuhiro Kimura <yasu_at_FreeBSD.org>
Date: Tue, 28 Feb 2023 09:22:52 UTC
The branch main has been updated by yasu:

URL: https://cgit.FreeBSD.org/ports/commit/?id=0974a3c0296f0fd51453d5eac9cce89907b6709f

commit 0974a3c0296f0fd51453d5eac9cce89907b6709f
Author:     Yasuhiro Kimura <yasu@FreeBSD.org>
AuthorDate: 2023-02-13 10:38:36 +0000
Commit:     Yasuhiro Kimura <yasu@FreeBSD.org>
CommitDate: 2023-02-28 09:20:18 +0000

    mail/mew: Update to 6.9
    
    * Take maintainership as there are already 3 successive maintainer
      timeout in the past.
    * Switch to DISTVERSION.
    * Set DISTVERSION to 6.9 and explicitly set DISTFILES. At first
      upstream released source archive as 'mew-6.9.tar.gz'. But issue that
      results in installation error is reported. So he fixed it and
      release new source archive as 'mew-6.9a.tar.gz'. And he said the
      latter is rerolled source archive of version 6.9.
    * Remove patch-no-native-compile as Mew works fine with native
      compilation now.
    * Install elisp and image files to EMACS_VERSION_SITE_LISPDIR.
    * Unconditionally install mew.ja.info as per section 5.17.4 of
      Porter's Handbook.
    * Pet portclippy.
    * Tidy up Makefile with portfmt.
    
    ReleaseNotes:   https://github.com/kazu-yamamoto/Mew/blob/v6.9/RELEASENOTE.md
    PR:             269532
    Approved by:    maintainer timeout
---
 mail/mew/Makefile                      |  55 ++-
 mail/mew/distinfo                      |   6 +-
 mail/mew/files/patch-info__Makefile    |  34 +-
 mail/mew/files/patch-no-native-compile | 863 ---------------------------------
 mail/mew/pkg-plist                     | 328 ++++++-------
 5 files changed, 207 insertions(+), 1079 deletions(-)

diff --git a/mail/mew/Makefile b/mail/mew/Makefile
index 496396cfa8f4..884d7b3921d3 100644
--- a/mail/mew/Makefile
+++ b/mail/mew/Makefile
@@ -1,51 +1,50 @@
 PORTNAME=	mew
-PORTVERSION=	6.8
-PORTREVISION=	10
+DISTVERSION=	6.9
 CATEGORIES=	mail elisp
 MASTER_SITES=	http://www.mew.org/Release/
 PKGNAMESUFFIX=	${EMACS_PKGNAMESUFFIX}
+DISTFILES=	${DISTNAME}a${EXTRACT_SUFX}
 
-MAINTAINER=	hiroto.kagotani@gmail.com
+MAINTAINER=	yasu@FreeBSD.org
 COMMENT=	Messaging in the Emacs World for emacs
 WWW=		https://www.Mew.org/
 
 LICENSE=	BSD3CLAUSE
-LICENSE_FILE=	${WRKSRC}/00copyright
+LICENSE_FILE=	${WRKSRC}/LICENSE
 
 USES=		emacs
 
-SUB_FILES=	pkg-message
 GNU_CONFIGURE=	yes
-CONFIGURE_ARGS=	--with-elispdir=${LOCALBASE}/${EMACS_SITE_LISPDIR}/mew \
-		--with-etcdir=${LOCALBASE}/${EMACS_SITE_LISPDIR}/mew/etc
-
-CONFLICTS_INSTALL=	mew-emacs_* mew-devel mew-devel-emacs_* # bin/cmew bin/incm
+CONFIGURE_ARGS=	--with-elispdir=${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/mew \
+		--with-etcdir=${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/mew/etc
 
 # target name for make build and install
-ALL_TARGET=	all info
-INSTALL_TARGET=	install
-INFO=		mew
-DOCS_ALL_TARGET=	jinfo
-DOCS_INSTALL_TARGET=	install-jinfo
-DOCS_INFO=	mew.ja
-PORTDOCS=	00api 00changes.0 00changes.1 00changes.2 00changes.3 \
-		00changes.4.1 00changes.4.2 00changes.5.1 00changes.5.2 \
-		00changes.6.1 00changes.6.2 00changes.6.3 00changes.6.4 \
-		00changes.6.5 00changes.6.6 00changes.6.7 00changes.6.8 \
-		00diff 00readme dot.emacs dot.mew dot.theme
-
-OPTIONS_DEFINE=	DATABASE DOCS STUNNEL
-OPTIONS_DEFAULT=STUNNEL
+ALL_TARGET=	all info jinfo
+INSTALL_TARGET=	install install-jinfo
+
+CONFLICTS_INSTALL=	mew-devel mew-devel-emacs_* mew-emacs_* # bin/cmew bin/incm
+
+SUB_FILES=	pkg-message
+
+INFO=		mew mew.ja
+PORTDOCS=	API.md CHANGES.v0.md CHANGES.v1.md CHANGES.v2.md CHANGES.v3.md \
+		CHANGES.v4.1.md CHANGES.v4.2.md CHANGES.v5.1.md CHANGES.v5.2.md \
+		CHANGES.v6.1.md CHANGES.v6.2.md CHANGES.v6.3.md CHANGES.v6.4.md \
+		CHANGES.v6.5.md CHANGES.v6.6.md CHANGES.v6.7.md CHANGES.v6.8.md \
+		CHANGES.v6.9.md INSTALL.md README.md RELEASENOTE.md
+
+OPTIONS_DEFINE=		DATABASE DOCS STUNNEL
+OPTIONS_DEFAULT=	STUNNEL
+
 DATABASE_DESC=	Support database feature (with Ruby & Sqlite3)
+STUNNEL_DESC=	Support TLS feature using stunnel
+
 DATABASE_RUN_DEPENDS=	rubygem-sqlite3>=0:databases/rubygem-sqlite3
-STUNNEL_DESC=	Support SSL feature using stunnel
 STUNNEL_RUN_DEPENDS=	stunnel>=0:security/stunnel
 
-post-install:
-	@${RM} ${STAGEDIR}${PREFIX}/${INFO_PATH}/*.info.~1~
-
 post-install-DOCS-on:
 	${MKDIR} ${STAGEDIR}${DOCSDIR}
-	(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
+	${INSTALL_DATA} ${WRKSRC}/*.md ${WRKSRC}/CHANGES/*.md ${STAGEDIR}${DOCSDIR}
+	(cd ${STAGEDIR}${DOCSDIR}; for f in v*.md ; do ${MV} $$f CHANGES.$$f; done)
 
 .include <bsd.port.mk>
diff --git a/mail/mew/distinfo b/mail/mew/distinfo
index 5ff54e6d0dab..bb570432e6fd 100644
--- a/mail/mew/distinfo
+++ b/mail/mew/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1528617894
-SHA256 (mew-6.8.tar.gz) = cf44c4f9ca704ba1edce7134bc7f38a17361391d5be1090221431a3a06f6bf47
-SIZE (mew-6.8.tar.gz) = 991876
+TIMESTAMP = 1676360545
+SHA256 (mew-6.9a.tar.gz) = 84bd96c3a893207ce5fee26337ea188be13f076b57673d719b315d1971c94b89
+SIZE (mew-6.9a.tar.gz) = 996003
diff --git a/mail/mew/files/patch-info__Makefile b/mail/mew/files/patch-info__Makefile
index 59a6be1afdae..3174fe51df37 100644
--- a/mail/mew/files/patch-info__Makefile
+++ b/mail/mew/files/patch-info__Makefile
@@ -1,4 +1,4 @@
---- info/Makefile.orig	2018-06-07 05:48:29 UTC
+--- info/Makefile.orig	2021-01-31 07:40:24 UTC
 +++ info/Makefile
 @@ -15,7 +15,7 @@
  ## EDIT THE FOLLOWINGS
@@ -9,29 +9,19 @@
  infodir=$(prefix)/info
  
  EMACS=emacs
-@@ -48,20 +48,20 @@ all: info
- info:
- 	sed -e 's/@setfilename mew.ja.info/@setfilename mew.info/' \
- 	    -e 's/@set ja/@set en/' mew.texi > tmp.texi
--	mv tmp.texi mew.texi
- 	$(RM) mew.info*
- 	$(TOUCH) mew.info
- 	$(EMACS) -batch -q -no-site-file -l texinfmt \
--		-f batch-texinfo-format mew.texi
-+		-f batch-texinfo-format tmp.texi
-+	$(RM) tmp.texi
+@@ -59,6 +59,7 @@ mew.info: tmp.texi
+ 	$(EMACS) -batch -q -no-site-file \
+ 		--eval "(set-default-coding-systems 'utf-8-unix)" \
+ 		-l texinfmt -f batch-texinfo-format $?
++	$(RM) tmp.text
  
- jinfo:
+ tmpj.texi: mew.texi
  	sed -e 's/@setfilename mew.info/@setfilename mew.ja.info/' \
--	    -e 's/@set en/@set ja/' mew.texi > tmp.texi
--	mv tmp.texi mew.texi
-+	    -e 's/@set en/@set ja/' mew.texi > tmp.ja.texi
- 	$(RM) mew.ja.info*
- 	$(TOUCH) mew.ja.info
- 	$(EMACS) -batch -q -no-site-file -l texinfmt \
--		-f batch-texinfo-format mew.texi
-+		-f batch-texinfo-format tmp.ja.texi
-+	$(RM) tmp.ja.texi
+@@ -69,6 +70,7 @@ mew.ja.info: tmpj.texi
+ 	$(EMACS) -batch -q -no-site-file \
+ 		--eval "(set-default-coding-systems 'utf-8-unix)" \
+ 		-l texinfmt -f batch-texinfo-format $?
++	$(RM) tmpj.text
  
  install: install-info
  install-info:
diff --git a/mail/mew/files/patch-no-native-compile b/mail/mew/files/patch-no-native-compile
deleted file mode 100644
index 3943971963a3..000000000000
--- a/mail/mew/files/patch-no-native-compile
+++ /dev/null
@@ -1,863 +0,0 @@
-From e3545580eb51d37142267bc8d6c39b934a0eaf0d Mon Sep 17 00:00:00 2001
-From: Yasuhiro Kimura <yasu@utahime.org>
-Date: Mon, 30 Aug 2021 19:12:41 +0900
-Subject: [PATCH] Prevent .el files from being native compiled.
-
-Mew doesn't work correctly if Emacs supports native compilation and
-.el files are compiled to .eln ones. So prevent .el files from being
-native compiled by adding following lines at the end of them.
-
-;; Local Variables:
-;; no-native-compile: t
-;; End:
----
- mew-addrbook.el   | 4 ++++
- mew-attach.el     | 4 ++++
- mew-auth.el       | 4 ++++
- mew-blvs.el       | 4 ++++
- mew-bq.el         | 4 ++++
- mew-cache.el      | 4 ++++
- mew-complete.el   | 4 ++++
- mew-config.el     | 4 ++++
- mew-const.el      | 4 ++++
- mew-darwin.el     | 4 ++++
- mew-decode.el     | 4 ++++
- mew-demo.el       | 4 ++++
- mew-draft.el      | 4 ++++
- mew-edit.el       | 4 ++++
- mew-encode.el     | 4 ++++
- mew-env.el        | 4 ++++
- mew-exec.el       | 4 ++++
- mew-ext.el        | 4 ++++
- mew-fib.el        | 4 ++++
- mew-func.el       | 4 ++++
- mew-gemacs.el     | 4 ++++
- mew-header.el     | 4 ++++
- mew-highlight.el  | 4 ++++
- mew-imap.el       | 4 ++++
- mew-imap2.el      | 4 ++++
- mew-key.el        | 4 ++++
- mew-lang-jp.el    | 4 ++++
- mew-lang-kr.el    | 4 ++++
- mew-lang-latin.el | 4 ++++
- mew-local.el      | 4 ++++
- mew-mark.el       | 4 ++++
- mew-message.el    | 4 ++++
- mew-mime.el       | 4 ++++
- mew-minibuf.el    | 4 ++++
- mew-mule.el       | 4 ++++
- mew-mule3.el      | 4 ++++
- mew-net.el        | 4 ++++
- mew-nntp.el       | 4 ++++
- mew-nntp2.el      | 4 ++++
- mew-passwd.el     | 4 ++++
- mew-pgp.el        | 4 ++++
- mew-pick.el       | 4 ++++
- mew-pop.el        | 4 ++++
- mew-refile.el     | 4 ++++
- mew-scan.el       | 4 ++++
- mew-search.el     | 4 ++++
- mew-smime.el      | 4 ++++
- mew-smtp.el       | 4 ++++
- mew-sort.el       | 4 ++++
- mew-ssh.el        | 4 ++++
- mew-ssl.el        | 4 ++++
- mew-summary.el    | 4 ++++
- mew-summary2.el   | 4 ++++
- mew-summary3.el   | 4 ++++
- mew-summary4.el   | 4 ++++
- mew-syntax.el     | 4 ++++
- mew-thread.el     | 4 ++++
- mew-unix.el       | 4 ++++
- mew-vars.el       | 4 ++++
- mew-vars2.el      | 4 ++++
- mew-vars3.el      | 4 ++++
- mew-varsx.el      | 4 ++++
- mew-virtual.el    | 4 ++++
- mew-win32.el      | 4 ++++
- mew.el            | 4 ++++
- 65 files changed, 260 insertions(+)
-
-diff --git mew-addrbook.el mew-addrbook.el
-index e9d5c6b..9a94143 100644
---- mew-addrbook.el
-+++ mew-addrbook.el
-@@ -574,3 +574,7 @@ reflected."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-addrbook.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-attach.el mew-attach.el
-index a405d6a..1f69b7c 100644
---- mew-attach.el
-+++ mew-attach.el
-@@ -876,3 +876,7 @@ Input decrypters' addresses."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-attach.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-auth.el mew-auth.el
-index eaf6677..3b8a564 100644
---- mew-auth.el
-+++ mew-auth.el
-@@ -100,3 +100,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-auth.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-blvs.el mew-blvs.el
-index e454e03..b0537d8 100644
---- mew-blvs.el
-+++ mew-blvs.el
-@@ -88,3 +88,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-blvs.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-bq.el mew-bq.el
-index f5a6846..f1ed957 100644
---- mew-bq.el
-+++ mew-bq.el
-@@ -1197,3 +1197,7 @@ That is, each line may be more than 75."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-bq.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-cache.el mew-cache.el
-index da85f90..b1d9e0a 100644
---- mew-cache.el
-+++ mew-cache.el
-@@ -263,3 +263,7 @@ if decode fails."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-cache.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-complete.el mew-complete.el
-index afbcd40..876443a 100644
---- mew-complete.el
-+++ mew-complete.el
-@@ -810,3 +810,7 @@ the name exists."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-complete.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-config.el mew-config.el
-index 7a80b4e..0e9fde4 100644
---- mew-config.el
-+++ mew-config.el
-@@ -640,3 +640,7 @@ fields in the header according to the new value."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-config.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-const.el mew-const.el
-index 9ff390d..c8b284b 100644
---- mew-const.el
-+++ mew-const.el
-@@ -364,3 +364,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-const.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-darwin.el mew-darwin.el
-index b1ab3aa..f9dda96 100644
---- mew-darwin.el
-+++ mew-darwin.el
-@@ -135,3 +135,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-darwin.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-decode.el mew-decode.el
-index cc74a74..276e627 100644
---- mew-decode.el
-+++ mew-decode.el
-@@ -1156,3 +1156,7 @@ Return a part syntax after moving the beginning of the content body."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-decode.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-demo.el mew-demo.el
-index e8ba169..bca4f60 100644
---- mew-demo.el
-+++ mew-demo.el
-@@ -143,3 +143,7 @@ Please send comments to Kazu@Mew.org.
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-demo.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-draft.el mew-draft.el
-index 40584ff..55defa1 100644
---- mew-draft.el
-+++ mew-draft.el
-@@ -1030,3 +1030,7 @@ Set privacy service which will be effective when \\[mew-draft-make-message]."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-draft.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-edit.el mew-edit.el
-index 36c63f2..b77bc85 100644
---- mew-edit.el
-+++ mew-edit.el
-@@ -1204,3 +1204,7 @@ mew-summary-reedit."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-edit.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-encode.el mew-encode.el
-index 70af9e9..2fa1313 100644
---- mew-encode.el
-+++ mew-encode.el
-@@ -1383,3 +1383,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-encode.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-env.el mew-env.el
-index 7b1aa9e..0333a3e 100644
---- mew-env.el
-+++ mew-env.el
-@@ -360,3 +360,7 @@ requires PTY.")
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-env.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-exec.el mew-exec.el
-index dff3d24..592f65c 100644
---- mew-exec.el
-+++ mew-exec.el
-@@ -690,3 +690,7 @@ the queue, type '\\[mew-summary-send-message]' in the queue online."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-exec.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-ext.el mew-ext.el
-index 3428b08..acc6459 100644
---- mew-ext.el
-+++ mew-ext.el
-@@ -521,3 +521,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-ext.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-fib.el mew-fib.el
-index 385f95d..67cf1b4 100644
---- mew-fib.el
-+++ mew-fib.el
-@@ -121,3 +121,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-fib.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-func.el mew-func.el
-index 14340ab..02b9e6a 100644
---- mew-func.el
-+++ mew-func.el
-@@ -1673,3 +1673,7 @@ by side-effect."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-func.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-gemacs.el mew-gemacs.el
-index 47e8df0..f1d5021 100644
---- mew-gemacs.el
-+++ mew-gemacs.el
-@@ -463,3 +463,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-gemacs.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-header.el mew-header.el
-index d832d1b..84ee46e 100644
---- mew-header.el
-+++ mew-header.el
-@@ -545,3 +545,7 @@ Remove anonymous addresses."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-header.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-highlight.el mew-highlight.el
-index 729283e..d7a4da8 100644
---- mew-highlight.el
-+++ mew-highlight.el
-@@ -383,3 +383,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-highlight.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-imap.el mew-imap.el
-index c07dc93..842d2c4 100644
---- mew-imap.el
-+++ mew-imap.el
-@@ -1917,3 +1917,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-imap.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-imap2.el mew-imap2.el
-index 49b8231..c542f95 100644
---- mew-imap2.el
-+++ mew-imap2.el
-@@ -657,3 +657,7 @@ with '*' in the region are handled."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-imap2.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-key.el mew-key.el
-index 4b753f6..40f9635 100644
---- mew-key.el
-+++ mew-key.el
-@@ -688,3 +688,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-key.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-lang-jp.el mew-lang-jp.el
-index cfc63a8..95ac02e 100644
---- mew-lang-jp.el
-+++ mew-lang-jp.el
-@@ -217,3 +217,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-lang-jp.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-lang-kr.el mew-lang-kr.el
-index d7c3a35..ec1b58c 100644
---- mew-lang-kr.el
-+++ mew-lang-kr.el
-@@ -41,3 +41,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-lang-kr.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-lang-latin.el mew-lang-latin.el
-index 233ef99..d3ead60 100644
---- mew-lang-latin.el
-+++ mew-lang-latin.el
-@@ -86,3 +86,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-lang-latin.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-local.el mew-local.el
-index 7257b31..f6d6ccb 100644
---- mew-local.el
-+++ mew-local.el
-@@ -424,3 +424,7 @@ Binary search is used for speed reasons."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-local.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-mark.el mew-mark.el
-index 477fa6e..187175e 100644
---- mew-mark.el
-+++ mew-mark.el
-@@ -929,3 +929,7 @@ The 'o' mark is not exchangeable."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-mark.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-message.el mew-message.el
-index 91c5b35..ef52cb7 100644
---- mew-message.el
-+++ mew-message.el
-@@ -339,3 +339,7 @@ confused. Please use '\\[mew-message-forward]' instead."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-message.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-mime.el mew-mime.el
-index 98843ca..266bf69 100644
---- mew-mime.el
-+++ mew-mime.el
-@@ -987,3 +987,7 @@ See 'mew-mime-content-type' to know how actions can be defined."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-mime.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-minibuf.el mew-minibuf.el
-index 705bde0..14864f9 100644
---- mew-minibuf.el
-+++ mew-minibuf.el
-@@ -1056,3 +1056,7 @@ it is deleted automatically."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-minibuf.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-mule.el mew-mule.el
-index aabebf3..c56da2e 100644
---- mew-mule.el
-+++ mew-mule.el
-@@ -168,3 +168,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-mule.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-mule3.el mew-mule3.el
-index 3b0dc8a..e71f672 100644
---- mew-mule3.el
-+++ mew-mule3.el
-@@ -424,3 +424,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-mule3.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-net.el mew-net.el
-index 2206b28..3ebf1d1 100644
---- mew-net.el
-+++ mew-net.el
-@@ -910,3 +910,7 @@ The messages in the server side is always retained."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-net.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-nntp.el mew-nntp.el
-index e9c3352..5f8b291 100644
---- mew-nntp.el
-+++ mew-nntp.el
-@@ -742,3 +742,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-nntp.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-nntp2.el mew-nntp2.el
-index 4c12458..57ab6f0 100644
---- mew-nntp2.el
-+++ mew-nntp2.el
-@@ -446,3 +446,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-nntp2.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-passwd.el mew-passwd.el
-index 9604901..08962da 100644
---- mew-passwd.el
-+++ mew-passwd.el
-@@ -351,3 +351,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-passwd.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-pgp.el mew-pgp.el
-index 6f53cdd..ac55657 100644
---- mew-pgp.el
-+++ mew-pgp.el
-@@ -1296,3 +1296,7 @@ according to a URL in a field specified by 'mew-x-pgp-key-list'."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-pgp.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-pick.el mew-pick.el
-index 74ff9a8..2a48f4e 100644
---- mew-pick.el
-+++ mew-pick.el
-@@ -851,3 +851,7 @@ If you want to change the stored keyword, execute this command with '\\[universa
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-pick.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-pop.el mew-pop.el
-index 9e2db7c..e78b099 100644
---- mew-pop.el
-+++ mew-pop.el
-@@ -989,3 +989,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-pop.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-refile.el mew-refile.el
-index 1ed35e5..02a278f 100644
---- mew-refile.el
-+++ mew-refile.el
-@@ -946,3 +946,7 @@ This is very convenient to refile all messages picked by '\\[mew-summary-pick]'.
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-refile.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-scan.el mew-scan.el
-index a251ac5..c72e1cf 100644
---- mew-scan.el
-+++ mew-scan.el
-@@ -928,3 +928,7 @@ non-nil, only headers of messages are cached. If executed with
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-scan.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-search.el mew-search.el
-index cd2985c..01f85d9 100644
---- mew-search.el
-+++ mew-search.el
-@@ -813,3 +813,7 @@ from scratch."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-search.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-smime.el mew-smime.el
-index c720ad4..7842728 100644
---- mew-smime.el
-+++ mew-smime.el
-@@ -499,3 +499,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-smime.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-smtp.el mew-smtp.el
-index e3dbbdc..ab6ff38 100644
---- mew-smtp.el
-+++ mew-smtp.el
-@@ -791,3 +791,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-smtp.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-sort.el mew-sort.el
-index 391476c..912a54b 100644
---- mew-sort.el
-+++ mew-sort.el
-@@ -525,3 +525,7 @@ local cache messages are packed."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-sort.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-ssh.el mew-ssh.el
-index 7aa3adc..fbd4c37 100644
---- mew-ssh.el
-+++ mew-ssh.el
-@@ -256,3 +256,7 @@ after ':'."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-ssh.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-ssl.el mew-ssl.el
-index 608ab79..30327c2 100644
---- mew-ssl.el
-+++ mew-ssl.el
-@@ -323,3 +323,7 @@ A local port number can be obtained the process name after ':'. "
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-ssl.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-summary.el mew-summary.el
-index 06b575e..31fcfcb 100644
---- mew-summary.el
-+++ mew-summary.el
-@@ -426,3 +426,7 @@ and return (beg . end)."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-summary.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-summary2.el mew-summary2.el
-index 7434d27..e2c3fbb 100644
---- mew-summary2.el
-+++ mew-summary2.el
-@@ -817,3 +817,7 @@ over the window. Type '\\[mew-summary-prev-page]' to see them when a message is
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-summary2.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-summary3.el mew-summary3.el
-index e9b3a4c..5625181 100644
---- mew-summary3.el
-+++ mew-summary3.el
-@@ -490,3 +490,7 @@ attached."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-summary3.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-summary4.el mew-summary4.el
-index 3e900cc..a524f2c 100644
---- mew-summary4.el
-+++ mew-summary4.el
-@@ -1227,3 +1227,7 @@ Executing this command enables searching such information."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-summary4.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-syntax.el mew-syntax.el
-index 9a6ea2f..f2b03b1 100644
---- mew-syntax.el
-+++ mew-syntax.el
-@@ -1055,3 +1055,7 @@ system."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-syntax.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-thread.el mew-thread.el
-index 7e575cb..7523e90 100644
---- mew-thread.el
-+++ mew-thread.el
-@@ -1180,3 +1180,7 @@ The thread/message is specified with the mark(\\[set-mark-command])."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-thread.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-unix.el mew-unix.el
-index 7c40726..26f9948 100644
---- mew-unix.el
-+++ mew-unix.el
-@@ -145,3 +145,7 @@
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-unix.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-vars.el mew-vars.el
-index 92ea41e..0c32ed5 100644
---- mew-vars.el
-+++ mew-vars.el
-@@ -3322,3 +3322,7 @@ Level 2: syntax error."
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-vars.el ends here
-+
-+;; Local Variables:
-+;; no-native-compile: t
-+;; End:
-diff --git mew-vars2.el mew-vars2.el
-index c7d629e..fead654 100644
---- mew-vars2.el
-+++ mew-vars2.el
-@@ -1013,3 +1013,7 @@ An example is as follows:
- ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
- ;;; mew-vars2.el ends here
-+
*** 402 LINES SKIPPED ***