summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authoragc <agc@pkgsrc.org>2008-01-05 14:59:47 +0000
committeragc <agc@pkgsrc.org>2008-01-05 14:59:47 +0000
commit663235f956fe4b880e4b019c0877274c32216803 (patch)
treec9e58c98ef0a3a5097f41a929c3a7e7e23ec2f1d /editors
parent4d06a7afb170600ac111f137c7002b2328b0abab (diff)
downloadpkgsrc-663235f956fe4b880e4b019c0877274c32216803.tar.gz
Update xvile from 9.5r to 9.6.
Changes from the previous version: Changes for vile 9.6 (released Thu Dec 27 2007) > Tom Dickey: + update makefile.blc, adding charsets.c, eightbit.c and wcwidth.c + build-fix for OS/2 IBM CSet (define a delay function for catnap). + minor build-fixes for VMS: + modify vmsbuild.com to simplify workaround for broken MMS 3.8 + provide dummy variables for xvile to reflect modularization changes with respect to vmsvt.c + documentation updates. + minor fix to manfilt.c to pass-through UTF-8 codes by testing with both iswprint() and isprint(). 20071224 (u) > Tom Dickey: + separate vile's ttputc from termcap prototype to pass integer param rather than just a char on Solaris. + fix computation of columns needed to show UTF-8 codes in POSIX locale. + modify manfilt.c to provide UTF-8 output in a UTF-8 locale. + minor fix to CF_FUNC_ICONV to link iconv on cygwin (noting that cygwin has no useful locale support, it may someday). 20071202 (t) > Tom Dickey: + modify filters makefile "clean" rule to accommodate OSF/1 4.0D whose make program leaves intermediate ".c" files for each lexer. + change order of restore-flags and switch-buffer in restore_buffer_state, avoiding an unnecessary prompt to discard changes when attempting to read a buffer that cannot be read. + increase a few table sizes to work with AIX 5.1 lex. + modify check for lex version to avoid hanging on older platforms where it would try to read from standard input even if it does not recognize the option. 20071125 (s) > Tom Dickey: + several changes to provide usable Unicode support: + add mode percent-utf8 to set a threshold for file-encoding mode "auto" detection of UTF-16/UTF-32 files. + file-encoding mode can be set to "auto", to detect UTF-16 files, which are loaded as UTF-8. + UTF-8 files are detected based on the file-encoding mode as well. + Unicode values are displayed (where no locale controls) as "\uXXXX" in 4 hexadecimal digits. + add unicode-as-hex mode to override locale, forcing Unicode values to display as "\uXXXX". + for buffers with UTF-8 encoding, show illegal bytes as "\?XX". + Unicode values can be inserted into buffers using ^VuXXXX form. Limitations: + terminal drivers support Unicode display in varying degrees: + winvile - multicolumn characters, depends on font selection + termcap/terminfo - relies on terminal emulator, knows about multicolumn characters + xvile - displays only single-column characters + curses - depends on the curses library, e.g., ncursesw + win32 console - not yet implemented + combining characters are not combined. + registers hold byte data, will show the UTF-8 encoding for data rather than a \uXXXX (unless the file-encoding for [Registers] is changed). + some "characters" such as the report for yanked text is still really a byte-count. + inserting a \uXXXX into the minibuffer will display the UTF-8 encoding. + regular expressions are not wide-character aware. + UTF-16 and UTF-32 files are detected based on BOM and/or the contents of the first line of the file. + external syntax filters do not handle BOM or UTF-16, UTF-32. + improve name-completion by saving/restoring the original window and buffer when [Completions] closes, rather than the closest window. + add output from rcshist to diffmode. + add ".vbp" files to inimode. + modify configure script to omit lex-filt.l from build if lex is not really flex, since the tables are too large for the older program. + modify spell.pm to use a temporary file to work with newer Perl's that do not handle tied variables exactly as filehandles. + update Kevin Buettner's email address. + add -class option to xvile. + remove a redundant XtDestroyWidget() from x_close() to quiet a warning from XtRemoveGrab() when doing a ":q" from Xm-vile (report by Chris Green). + use va_copy() in dofmt() to work with Linux on powerpc (report by Paul van Tilburg). + add docbookmode + improve 9.5m/9.5q check for file ownership, adding a warning message for files which are ignored (report by Chris Green). + change default for --with-locale configure option to mesh with --disable-extensions. + improve paste-performance in winvile by passing whole-line chunks to the insert-function. + improved cppmode's identifier-expr (report by Gerry Fredette). + correct order of evaluation from 9.4w when setting record-separator, which was setting "crlf" ending temporarily when computing the buffer size, even when "lf" was intended. That would cause an immediate write from winvile (without change) for a buffer to write too many characters. + add syntax filter conffilt.l, for "ordinary" config-files. + add "rectangle-insert-mode". + fill in several omitted items in init_mode_value(). + add "describe-&functions" and "describe-$variables" commands. (The latter is a stub for later). + improve repainting in winvile while processing external command. also modify keyboard handling to provide type-ahead while processing external command. + remove obsolete $tpause variable. + modify majormode inferencing to check preamble for [Standard Input] and [Output] buffers. + add "&gtmotion" function for scripts. + improve handling of enumerated values by forcing all to lowercase, e.g., to eliminate the need for the special case in 9.1x to handle "TRUE" and "true". + revise lstrinsert() and associated logic which implements changes to rectangles, e.g., with c^Aq, to ensure that it pads the change with blanks rather than nulls (report by Paul van Tilburg). + improve modeline support by ignoring strict "vi" modeline options that are not recognized by vile, rather than reporting an error. + use new module blist (binary search of lists) to reduce linear searches in the places where btree is not already used. + change rename-other-buffer command to other-buffer-rename, to avoid name-completion conflict with rename-command (feedback from Steve Lembark). + remove obsolete check for ANSI qsort. + improve vilefilt.l, highlighting mode names and displaying error for unknown mode, function and state variables. + fix typo in manpage.rc which broke use of pod2man in 9.5m + add &pquote in manpage.rc, to allow it to format html output when vile-manfilt, etc., reside in directories containing spaces in their name. + add ".reg" filetypes to inimode. + add several package-related suffixes to sqlmode. + add xpmmode
Diffstat (limited to 'editors')
-rw-r--r--editors/xvile/Makefile16
-rw-r--r--editors/xvile/PLIST4
2 files changed, 6 insertions, 14 deletions
diff --git a/editors/xvile/Makefile b/editors/xvile/Makefile
index ba112d025d6..5cd2dd218b8 100644
--- a/editors/xvile/Makefile
+++ b/editors/xvile/Makefile
@@ -1,22 +1,12 @@
-# $NetBSD: Makefile,v 1.55 2007/10/14 06:33:17 obache Exp $
+# $NetBSD: Makefile,v 1.56 2008/01/05 14:59:47 agc Exp $
-DISTNAME= vile-9.5
-PKGNAME= xvile-9.5r
+DISTNAME= vile-9.6
+PKGNAME= x${DISTNAME}
CATEGORIES= editors
MASTER_SITES= ftp://invisible-island.net/vile/ \
ftp://ftp.phred.org/pub/vile/
-DIST_SUBDIR= vile
EXTRACT_SUFX= .tgz
-PATCH_SITES= ${MASTER_SITES:=patches/}
-PATCHFILES+= vile-9.5a.patch.gz vile-9.5b.patch.gz vile-9.5c.patch.gz
-PATCHFILES+= vile-9.5d.patch.gz vile-9.5e.patch.gz vile-9.5f.patch.gz
-PATCHFILES+= vile-9.5g.patch.gz vile-9.5h.patch.gz vile-9.5i.patch.gz
-PATCHFILES+= vile-9.5j.patch.gz vile-9.5k.patch.gz vile-9.5l.patch.gz
-PATCHFILES+= vile-9.5m.patch.gz vile-9.5n.patch.gz vile-9.5o.patch.gz
-PATCHFILES+= vile-9.5p.patch.gz vile-9.5q.patch.gz vile-9.5r.patch.gz
-PATCH_DIST_STRIP= -p1
-
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://invisible-island.net/vile/
COMMENT= VI Like Emacs, X11 version -- a fully "X aware" vi work-alike
diff --git a/editors/xvile/PLIST b/editors/xvile/PLIST
index 57c6913f958..bf0aa601a7d 100644
--- a/editors/xvile/PLIST
+++ b/editors/xvile/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.5 2007/10/14 06:33:17 obache Exp $
+@comment $NetBSD: PLIST,v 1.6 2008/01/05 14:59:47 agc Exp $
bin/xshell.sh
bin/xvile
bin/xvile-pager
@@ -16,6 +16,7 @@ libexec/xvile/vile-bat-filt
libexec/xvile/vile-bnf-filt
libexec/xvile/vile-c-filt
libexec/xvile/vile-cfg-filt
+libexec/xvile/vile-conf-filt
libexec/xvile/vile-crypt
libexec/xvile/vile-css-filt
libexec/xvile/vile-cweb-filt
@@ -116,6 +117,7 @@ share/xvile/doc/modes.doc
share/xvile/doc/oleauto.doc
share/xvile/doc/perl.doc
share/xvile/doc/visvile.doc
+share/xvile/docbook.keywords
share/xvile/ecl.keywords
share/xvile/esql.keywords
share/xvile/est.keywords