From owner-svn-ports-all@freebsd.org Mon Aug 12 14:14:56 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 95F42B4ECE; Mon, 12 Aug 2019 14:14:56 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 466dCN35qFz4Pgj; Mon, 12 Aug 2019 14:14:56 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4B27527C10; Mon, 12 Aug 2019 14:14:56 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7CEEuQN095462; Mon, 12 Aug 2019 14:14:56 GMT (envelope-from nobutaka@FreeBSD.org) Received: (from nobutaka@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7CEEt1n095457; Mon, 12 Aug 2019 14:14:55 GMT (envelope-from nobutaka@FreeBSD.org) Message-Id: <201908121414.x7CEEt1n095457@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nobutaka set sender to nobutaka@FreeBSD.org using -f From: MANTANI Nobutaka Date: Mon, 12 Aug 2019 14:14:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r508740 - in head/editors/flim: . files X-SVN-Group: ports-head X-SVN-Commit-Author: nobutaka X-SVN-Commit-Paths: in head/editors/flim: . files X-SVN-Commit-Revision: 508740 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Aug 2019 14:14:56 -0000 Author: nobutaka Date: Mon Aug 12 14:14:54 2019 New Revision: 508740 URL: https://svnweb.freebsd.org/changeset/ports/508740 Log: - Switch to the version maintained by the developers of Wanderlust. - Update to the snapshot on 2019-05-26. Deleted: head/editors/flim/files/patch-FLIM-CFG head/editors/flim/files/patch-eword-encode.el head/editors/flim/files/patch-hex-util.el head/editors/flim/files/patch-hmac-def.el head/editors/flim/files/patch-md4.el head/editors/flim/files/patch-md5-el.el head/editors/flim/files/patch-sha1-el.el Modified: head/editors/flim/Makefile head/editors/flim/distinfo head/editors/flim/files/patch-mime-en.texi head/editors/flim/files/patch-mime-ja.texi head/editors/flim/pkg-descr head/editors/flim/pkg-plist Modified: head/editors/flim/Makefile ============================================================================== --- head/editors/flim/Makefile Mon Aug 12 14:13:10 2019 (r508739) +++ head/editors/flim/Makefile Mon Aug 12 14:14:54 2019 (r508740) @@ -2,11 +2,9 @@ # $FreeBSD$ PORTNAME= flim -PORTVERSION= 1.14.9 -PORTREVISION= 21 +PORTVERSION= 1.14.9.${SNAPDATE} PORTEPOCH= 1 CATEGORIES= editors elisp -MASTER_SITES= http://git.chise.org/elisp/dist/${PORTNAME}/${PORTNAME}-${DISTVERSION:R}/ PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= nobutaka@FreeBSD.org @@ -14,12 +12,15 @@ COMMENT= Message representation or encoding elisp libr LICENSE= GPLv2 -BUILD_DEPENDS= apel${EMACS_PKGNAMESUFFIX}>0:editors/apel@${EMACS_FLAVOR} \ - nkf:japanese/nkf +BUILD_DEPENDS= apel${EMACS_PKGNAMESUFFIX}>0:editors/apel@${EMACS_FLAVOR} RUN_DEPENDS= apel${EMACS_PKGNAMESUFFIX}>0:editors/apel@${EMACS_FLAVOR} -USES= cpe emacs makeinfo +USES= cpe emacs iconv makeinfo +USE_GITHUB= yes +GH_ACCOUNT= wanderlust +GH_TAGNAME= e4bd54f +SNAPDATE= 20190526 CPE_VENDOR= gnu NO_ARCH= yes @@ -36,8 +37,8 @@ OPTIONS_DEFINE= DOCS post-build: @(cd ${WRKSRC} ; \ for i in mime-en.texi mime-ja.texi; do \ - ${CAT} $${i} | nkf -e > $${i}.jis ; \ - ${MAKEINFO} --no-split --no-validate $${i}.jis ; \ + ${ICONV_CMD} -f ISO-2022-JP -t UTF-8 $${i} > $${i}.utf8 ; \ + ${MAKEINFO} --no-split --no-validate $${i}.utf8 ; \ done) post-install: Modified: head/editors/flim/distinfo ============================================================================== --- head/editors/flim/distinfo Mon Aug 12 14:13:10 2019 (r508739) +++ head/editors/flim/distinfo Mon Aug 12 14:14:54 2019 (r508740) @@ -1,2 +1,3 @@ -SHA256 (flim-1.14.9.tar.gz) = bbd5a8729ea27457c7c2ffdcb1be6219ad38fdfa323341f4fad2d298780070ec -SIZE (flim-1.14.9.tar.gz) = 182065 +TIMESTAMP = 1565575779 +SHA256 (wanderlust-flim-1.14.9.20190526-e4bd54f_GH0.tar.gz) = ff232c895fa447388d2a14f2588a75d3ea2356c84d4299b781a70e041e4d55e5 +SIZE (wanderlust-flim-1.14.9.20190526-e4bd54f_GH0.tar.gz) = 173153 Modified: head/editors/flim/files/patch-mime-en.texi ============================================================================== --- head/editors/flim/files/patch-mime-en.texi Mon Aug 12 14:13:10 2019 (r508739) +++ head/editors/flim/files/patch-mime-en.texi Mon Aug 12 14:14:54 2019 (r508740) @@ -1,15 +1,11 @@ ---- mime-en.texi.orig 2002-10-08 15:50:05 UTC +--- mime-en.texi.orig 2019-05-26 10:34:29 UTC +++ mime-en.texi -@@ -1,7 +1,11 @@ - \input texinfo.tex +@@ -2,7 +2,7 @@ @c Generated automatically from mime-en.sgml by sinfo 3.7. @setfilename mime-en.info --@settitle{FLIM 1.14 Reference Manual about MIME Features} -+@settitle FLIM 1.14 Reference Manual about MIME Features -+@dircategory The Emacs editor and associated tools -+@direntry -+* mime-en: (mime-en). MIME features for GNU Emacs. (English) -+@end direntry - @titlepage - @title FLIM 1.14 Reference Manual about MIME Features - @author MORIOKA Tomohiko + @settitle FLIM 1.14 Reference Manual about MIME Features +-@documentencoding iso-2022-jp ++@documentencoding utf-8 + @documentlanguage en + @dircategory GNU Emacs Lisp + @direntry Modified: head/editors/flim/files/patch-mime-ja.texi ============================================================================== --- head/editors/flim/files/patch-mime-ja.texi Mon Aug 12 14:13:10 2019 (r508739) +++ head/editors/flim/files/patch-mime-ja.texi Mon Aug 12 14:14:54 2019 (r508740) @@ -1,15 +1,11 @@ ---- mime-ja.texi.orig 2002-10-08 15:50:05 UTC +--- mime-ja.texi.orig 2019-05-26 10:34:29 UTC +++ mime-ja.texi -@@ -1,7 +1,11 @@ - \input texinfo.tex +@@ -2,7 +2,7 @@ @c Generated automatically from mime-ja.sgml by sinfo 3.7. @setfilename mime-ja.info --@settitle{FLIM 1.14 MIME 機能説明書} -+@settitle FLIM 1.14 MIME 機能説明書 -+@dircategory The Emacs editor and associated tools -+@direntry -+* mime-ja: (mime-ja). MIME features for GNU Emacs. (Japanese) -+@end direntry - @titlepage - @title FLIM 1.14 MIME 機能説明書 - @author 守岡 知彦 + @documentlanguage ja +-@documentencoding iso-2022-jp ++@documentencoding utf-8 + @settitle FLIM 1.14 MIME 機能説明書 + @dircategory GNU Emacs Lisp + @direntry Modified: head/editors/flim/pkg-descr ============================================================================== --- head/editors/flim/pkg-descr Mon Aug 12 14:13:10 2019 (r508739) +++ head/editors/flim/pkg-descr Mon Aug 12 14:14:54 2019 (r508740) @@ -9,4 +9,4 @@ FLIM, message representation or encoding emacs lisp li Ported by shige@FreeBSD.ORG -WWW: http://git.chise.org/elisp/flim/ (in Japanese) +WWW: https://github.com/wanderlust/flim Modified: head/editors/flim/pkg-plist ============================================================================== --- head/editors/flim/pkg-plist Mon Aug 12 14:13:10 2019 (r508739) +++ head/editors/flim/pkg-plist Mon Aug 12 14:14:54 2019 (r508740) @@ -62,8 +62,6 @@ %%EMACS_VERSION_SITE_LISPDIR%%/flim/sasl-scram.elc %%EMACS_VERSION_SITE_LISPDIR%%/flim/sasl.el %%EMACS_VERSION_SITE_LISPDIR%%/flim/sasl.elc -%%EMACS_VERSION_SITE_LISPDIR%%/flim/sha1-el.el -%%EMACS_VERSION_SITE_LISPDIR%%/flim/sha1-el.elc %%EMACS_VERSION_SITE_LISPDIR%%/flim/sha1.el %%EMACS_VERSION_SITE_LISPDIR%%/flim/sha1.elc %%EMACS_VERSION_SITE_LISPDIR%%/flim/smtp.el