diff options
author | jtb <jtb> | 2001-03-16 00:01:12 +0000 |
---|---|---|
committer | jtb <jtb> | 2001-03-16 00:01:12 +0000 |
commit | ffa782bdb4955cea33b7c24e7a0cff9fff7e0c7f (patch) | |
tree | 38c767f8b0a06792d1dd0ed4ad36892c4f507f8b /mail | |
parent | d73446a0e699d4fdae30b746f553e967ee329230 (diff) | |
download | pkgsrc-ffa782bdb4955cea33b7c24e7a0cff9fff7e0c7f.tar.gz |
Updated to vm-6.92.
VM 6.92 released (11 March 2001)
* vm-imap-check-mail: throw to 'end-of-session instead of 'done.
Fixes problem of vm-spooled-mail-waiting not being set.
* vm-su-do-recipients: If there is no To or Apparently-To header,
use Newsgroups if available.
* vm-mime-display-external-generic: use a unibyte temp buffer for
base64 decoding if using FSF Emacs MULE. Otherwise our old
friend \201 crashes the party.
* vm-mime-find-leaf-content-id-in-layout-folder: add missing
layout argument to vm-mime-find-leaf-content-id.
* vm-mime-parse-entity: fixed regexps that match an empty content
description so that they match descriptions that only contain
spaces.
* vm-su-do-date: make +/- mandatory in the numeric tiemzone spec.
First digit of numeric timezone spec must be 0 or 1.
* vm-fill-paragraphs-containing-long-lines: ignore errors generated
by fill-paragraph.
* moved the code that catches the font-lock search bound error
from the XEmacs MIME composition encoder to the FSF Emacs
encoder.
* vm-mime-charset-internally-displayable-p: allow variable
vm-mime-default-face-charsets to apply to MULE-enabled Emacs
and XEmacs.
VM 6.91 released (1 March 2001)
* vm-mime-can-display-internal: check charset to verify that we
can display it when checking text/html.
* vm-auto-archive-messages: hide value of last-command when calling
vm-save-message.
* vm-mime-find-leaf-content-id: removed second arg in call to
vm-mm-layout-id since it only accepts one argument.
* vm-mime-transfer-encode-region: \\n -> \n in armor-dot check
regexp string.
* vm-mime-parse-entity-safe: dropped (sleep-for 2). No one cares
about syntax errors.
* vm-mime-base64-encode-region: if call to base64-encode-region
fails with wrong-number-of-arguments error call it with only
two args and do the B encoding cleanup separately.
* vm-mime-base64-decode-region: don't use the FSF Emacs base64
decoding function, since it fails completely if it encounters
characters outside of the BASE64 alphabet.
* vm-mime-attachment-auto-type-alist: added the usual PDF,
Quicktime and Excel file extensions.
* vm-imap-move-mail: trying using obsolete RFC822.PEEK if
BODY.PEEK fails.
* vm-imap-retrieve-to-crashbox: support use of obsolete RFC822.PEEK.
* vm-so-sortable-datestring: use vm-timezone-make-date-sortable
instead of the bare timezone-make-date-sortable, which is less
capable of parsing badly formed Date headers.
* vm-mime-convert-undisplayable-layout: save the content type
parameters from the old type and give them to the new type.
* all your base are belong to us
Diffstat (limited to 'mail')
-rw-r--r-- | mail/vm/Makefile | 76 | ||||
-rw-r--r-- | mail/vm/files/md5 | 4 |
2 files changed, 40 insertions, 40 deletions
diff --git a/mail/vm/Makefile b/mail/vm/Makefile index 6fb92f1cccf..e3eca8a6fa7 100644 --- a/mail/vm/Makefile +++ b/mail/vm/Makefile @@ -1,56 +1,56 @@ -# $NetBSD: Makefile,v 1.3 2001/02/17 18:25:08 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2001/03/16 00:01:12 jtb Exp $ -DISTNAME= vm-6.90 -CATEGORIES= mail -MASTER_SITES= ftp://ftp.uni-mainz.de/pub/gnu/vm/ \ - ftp://tug.org/vm/ \ - ftp://ftp.uu.net/networking/mail/vm/ \ - ftp://psg.com/pub/vm/ \ - ftp://sunsite.cnlab-switch.ch/mirror/vm/ +DISTNAME= vm-6.92 +CATEGORIES= mail +MASTER_SITES= ftp://ftp.uni-mainz.de/pub/gnu/vm/ \ + ftp://tug.org/vm/ \ + ftp://ftp.uu.net/networking/mail/vm/ \ + ftp://psg.com/pub/vm/ \ + ftp://sunsite.cnlab-switch.ch/mirror/vm/ -MAINTAINER= jtb@netbsd.org -HOMEPAGE= http://www.wonderworks.com/vm/ -COMMENT= VM (View Mail) is an advanced mail user agent for Emacs +MAINTAINER= jtb@netbsd.org +HOMEPAGE= http://www.wonderworks.com/vm/ +COMMENT= VM (View Mail) is an advanced mail user agent for Emacs .include "../../mk/bsd.prefs.mk" .if defined(USE_XEMACS) -DEPENDS+= xemacs>=19.14:../../editors/xemacs -MAKE_ENV+= EMACS=xemacs -MAKE_ENV+= LISPDIR="${PREFIX}/lib/xemacs/xemacs-packages/lisp/vm" -MAKE_ENV+= INFODIR="${PREFIX}/lib/xemacs/xemacs-packages/info" -MAKE_ENV+= PIXMAPDIR="${PREFIX}/lib/xemacs/xemacs-packages/etc/vm" -MAKE_ENV+= BINDIR="${PREFIX}/bin" -PLIST_SRC= ${PKGDIR}/PLIST.xemacs +DEPENDS+= xemacs>=19.14:../../editors/xemacs +MAKE_ENV+= EMACS=xemacs +MAKE_ENV+= LISPDIR="${PREFIX}/lib/xemacs/xemacs-packages/lisp/vm" +MAKE_ENV+= INFODIR="${PREFIX}/lib/xemacs/xemacs-packages/info" +MAKE_ENV+= PIXMAPDIR="${PREFIX}/lib/xemacs/xemacs-packages/etc/vm" +MAKE_ENV+= BINDIR="${PREFIX}/bin" +PLIST_SRC= ${PKGDIR}/PLIST.xemacs .else -DEPENDS+= emacs>=19.34:../../editors/emacs -MAKE_ENV+= EMACS=emacs -MAKE_ENV+= LISPDIR="${PREFIX}/share/emacs/site-lisp/vm" -MAKE_ENV+= INFODIR="${PREFIX}/info" -MAKE_ENV+= PIXMAPDIR="${PREFIX}/share/emacs/site-lisp/vm/pixmaps" -MAKE_ENV+= BINDIR="${PREFIX}/bin" -INFO_FILES= vm.info -PLIST_SRC= ${PKGDIR}/PLIST.emacs +DEPENDS+= emacs>=19.34:../../editors/emacs +MAKE_ENV+= EMACS=emacs +MAKE_ENV+= LISPDIR="${PREFIX}/share/emacs/site-lisp/vm" +MAKE_ENV+= INFODIR="${PREFIX}/info" +MAKE_ENV+= PIXMAPDIR="${PREFIX}/share/emacs/site-lisp/vm/pixmaps" +MAKE_ENV+= BINDIR="${PREFIX}/bin" +INFO_FILES= vm.info +PLIST_SRC= ${PKGDIR}/PLIST.emacs .endif do-install: ${INSTALL_DATA_DIR} ${LISPDIR} - @for a in ${WRKSRC}/*.el ${WRKSRC}/*.elc; do \ - a="${INSTALL_DATA} $$a ${LISPDIR}"; \ - ${ECHO} $$a; $$a; \ + @for f in ${WRKSRC}/*.el ${WRKSRC}/*.elc; do \ + i="${INSTALL_DATA} $$f ${LISPDIR}"; \ + ${ECHO} $$i; $$i; \ done - @for b in ${WRKSRC}/*.info*; do \ - b="${INSTALL_DATA} $$b ${INFODIR}"; \ - ${ECHO} $$b; $$b; \ + @for f in ${WRKSRC}/*.info*; do \ + i="${INSTALL_DATA} $$f ${INFODIR}"; \ + ${ECHO} $$i; $$i; \ done ${INSTALL_DATA_DIR} ${PIXMAPDIR} - @for c in ${WRKSRC}/pixmaps/*.x[pb]m; do \ - c="${INSTALL_DATA} $$c ${PIXMAPDIR}"; \ - ${ECHO} $$c; $$c; \ + @for f in ${WRKSRC}/pixmaps/*.x[pb]m; do \ + i="${INSTALL_DATA} $$f ${PIXMAPDIR}"; \ + ${ECHO} $$i; $$i; \ done - @for p in qp-decode qp-encode base64-decode base64-encode ; do \ - d="${INSTALL_PROGRAM} ${WRKSRC}/$$p ${BINDIR}"; \ - ${ECHO} $$d; $$d; \ + @for f in qp-decode qp-encode base64-decode base64-encode; do \ + i="${INSTALL_PROGRAM} ${WRKSRC}/$$f ${BINDIR}"; \ + ${ECHO} $$i; $$i; \ done .include "../../mk/bsd.pkg.mk" diff --git a/mail/vm/files/md5 b/mail/vm/files/md5 index f89e6e13029..b8ecd148ce2 100644 --- a/mail/vm/files/md5 +++ b/mail/vm/files/md5 @@ -1,3 +1,3 @@ -$NetBSD: md5,v 1.2 2001/01/28 03:16:55 jtb Exp $ +$NetBSD: md5,v 1.3 2001/03/16 00:01:12 jtb Exp $ -MD5 (vm-6.90.tar.gz) = c0e75051201ab8264cb211548d8275ec +SHA1 (vm-6.92.tar.gz) = eabee0f81f970a254eb1d3354da9532c0d170ed1 |