diff --git a/shells/zsh/snapshot/Makefile b/shells/zsh/snapshot/Makefile index bf9cd0a8a65..6d59054c579 100644 --- a/shells/zsh/snapshot/Makefile +++ b/shells/zsh/snapshot/Makefile @@ -1,63 +1,18 @@ -# $OpenBSD: Makefile,v 1.6 2003/05/23 14:21:05 lebel Exp $ +# $OpenBSD: Makefile,v 1.7 2004/01/29 16:39:11 lebel Exp $ -COMMENT= "Z shell, Bourne shell-compatible, release flavor" -COMMENT-zftp= "Z shell embedded ftp client" +COMMENT= "the Z shell, Bourne shell-compatible, development flavor" -VERSION= 4.1.1-test-2 -PKGNAME= zsh-${VERSION:C/-//g} -DISTNAME= zsh-${VERSION} CATEGORIES= shells -MASTER_SITES= ftp://ftp.zsh.org/zsh/development/ \ - http://www.zsh.org/pub/development/ \ - ftp://ftp.sterling.com/zsh/development/ \ - ftp://ftp.rge.com/pub/zsh/development/ \ - ftp://ftp.cenatls.cena.dgac.fr/pub/shells/zsh/development/ \ - ftp://mrrl.lut.ac.uk/zsh/development/ \ - ftp://ftp.ips.oz.au/pub/packages/zsh/development/ \ - ftp://ftp.uit.no/pub/unix/shells/zsh/development/ HOMEPAGE= http://www.zsh.org/ MAINTAINER= David Lebel -PERMIT_PACKAGE_CDROM= Yes -PERMIT_PACKAGE_FTP= Yes -PERMIT_DISTFILES_CDROM= Yes -PERMIT_DISTFILES_FTP= Yes +PERMIT_PACKAGE_CDROM= No +PERMIT_PACKAGE_FTP= No +PERMIT_DISTFILES_CDROM= No +PERMIT_DISTFILES_FTP= No -FLAVORS= static +IGNORE="There is currently no snapshot version of zsh. Use zsh/stable" -.if ${MACHINE_ARCH:Malpha} || ${MACHINE_ARCH:Mvax} -# for the time being, force static on alpha -FLAVOR?= static -.else -FLAVOR?= -.endif - -CONFIGURE_STYLE= autoconf -CONFIGURE_ARGS= --enable-zsh-mem --enable-zsh-secure-free --enable-maildir-support - -.if ${FLAVOR:L} == "static" -CONFIGURE_ENV= LDFLAGS="-static" -CONFIGURE_ARGS+=--disable-dynamic -.else -# we only enable sub-packages if the FLAVOR is not static -MULTI_PACKAGES= -zftp -SUBPACKAGE?= -. for i in ${MULTI_PACKAGES} -PKGNAME$i= zsh$i-${VERSION:C/-//g} -. endfor -. if defined(PACKAGING) && !empty(SUBPACKAGE) -RUN_DEPENDS= ::shells/zsh/snapshot -. endif -CONFIGURE_ARGS+= ${CONFIGURE_SHARED:S/shared/dynamic/} -.endif - -SUBST_VARS= VERSION - -REGRESS_FLAGS= INSTALL_PROGRAM="install -c -s -m 555" \ - INSTALL_DATA="install -c -m 444" \ - INSTALL="install -c" \ - TMPPREFIX=${WRKBUILD}/tmp - .include diff --git a/shells/zsh/snapshot/distinfo b/shells/zsh/snapshot/distinfo deleted file mode 100644 index fee84a12f70..00000000000 --- a/shells/zsh/snapshot/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (zsh-4.1.1-test-2.tar.gz) = dddb5786219f57fef20b0ae3616afc67 -RMD160 (zsh-4.1.1-test-2.tar.gz) = c1c9c63e6542bfed9e73408c072b7ba654d8ada2 -SHA1 (zsh-4.1.1-test-2.tar.gz) = 05bd0d24e42d50fb37616eeaa5d3aab00bce3021 diff --git a/shells/zsh/snapshot/patches/patch-Completion_BSD_Command__bsd_pkg b/shells/zsh/snapshot/patches/patch-Completion_BSD_Command__bsd_pkg deleted file mode 100644 index 1e039fd5837..00000000000 --- a/shells/zsh/snapshot/patches/patch-Completion_BSD_Command__bsd_pkg +++ /dev/null @@ -1,254 +0,0 @@ -$OpenBSD: patch-Completion_BSD_Command__bsd_pkg,v 1.2 2003/05/23 14:21:05 lebel Exp $ ---- Completion/BSD/Command/_bsd_pkg.orig Tue Oct 15 13:59:37 2002 -+++ Completion/BSD/Command/_bsd_pkg Fri May 23 10:13:59 2003 -@@ -6,15 +6,19 @@ _bsd_pkg_pkgfiles() { - - case $OSTYPE in - netbsd*) -- portsdir=/usr/pkgsrc -+ portsdir=${PORTSDIR:-/usr/pkgsrc} -+ pkgsdir=${PACKAGES:-$portsdir/packages}/All -+ ;; -+ openbsd*) -+ portsdir=${PORTSDIR:-/usr/ports} -+ pkgsdir=${PACKAGES:-$portsdir/packages}/$(arch -s)/All - ;; - *) - portsdir=${PORTSDIR:-/usr/ports} -+ pkgsdir=${PACKAGES:-$portsdir/packages}/All - ;; - esac - -- pkgsdir=${PACKAGES:-$portsdir/packages}/All -- - paths=( "${(@)${(@s.:.)PKG_PATH}:#}" ) - _files "$@" -g '*.t[bg]z' && ret=0 - (( $#path )) && _files "$@" -W paths -g '*.t[bg]z' && ret=0 -@@ -25,7 +29,7 @@ _bsd_pkg_pkgfiles() { - - (( $+functions[_bsd_pkg_pkgs] )) || - _bsd_pkg_pkgs() { -- compadd "$@" - ${PKG_DBDIR:-/var/db/pkg}/*(/:t) -+ compadd "$@" - ${PKG_DBDIR:-/var/db/pkg}/*(-/:t) - } - - (( $+functions[_bsd_pkg_pkgs_and_files] )) || -@@ -48,11 +52,11 @@ _bsd_pkg() { - pkg_add) - flags=( - '-f[force installation]' -- '-I[don'\''t execute installation scripts]' -+ '-I[don''t execute installation scripts]' - '-M[run in master mode]' -- '-n[don'\''t really install packages]' -+ '-n[don''t really install packages]' - '-p[specify prefix]:prefix directory:_files -/' -- '-R[don'\''t record]' -+ '-R[don''t record]' - '-S[run in slave mode]' - '-t[specify mktemp template]:mktemp template:_files -/' - '-v[be verbose]' -@@ -67,9 +71,9 @@ _bsd_pkg() { - ;; - netbsd*) - flags=( -- $flags[@] -- '-u[update]' -- '-V[show version and exit]' -+ $flags[@] -+ '-u[update]' -+ '-V[show version and exit]' - ) - ;; - esac -@@ -83,37 +87,37 @@ _bsd_pkg() { - case "$OSTYPE" in - freebsd*) - flags=( -- '-f[specify plist file]:plist file:_files' -- '(-b)-c[specify comment file]:comment file:_files' -- '(-b)-d[specify descr file]:descr file:_files' -- '-Y[assume YES for any questions asked]' -- '-N[assume NO for any questions asked]' -- '(-b)-O[packing list only mode]' -- '-v[be verbose]' -- '-h[force tar to follow symlinks]' -- '(-b)-i[specify pre-install script]:pre-install script:_files' -- '(-b)-I[specify post-install script]:post-install script:_files' -- '(-b)-P[specify initial dependencies]:dependencies:_bsd_pkg_pkgs' -- '(-b)-p[specify prefix]:prefix directory:_files -/' -- '(-b)-k[specify deinstall script]:deinstall script:_files' -- '(-b)-K[specify post-deinstall script]:post-deinstall script:_files' -- '(-b)-r[specify req script]:req script:_files' -- '(-b)-s[specify source directory]:source directory:_files -/' -- '(-b)-t[specify mktemp template]:mktemp template:_files' -- '(-b)-X[specify exclude file]:exclude file for tar:_files' -- '(-b)-D[specify message file]:message file:_files' -- '(-b)-m[specify mtree file]:mtree file:_files' -- '(-b)-o[specify origin]:origin:_files -W ${PORTSDIR\:-/usr/ports} -/' -- '-j[use bzip2]' -- '-z[use gzip]' -- '(-c -d -O -i -I -P -p -k -K -r -s -t -X -D -m -o)-b[specify pkgname]:pkgname:_bsd_pkg_pkgs' -- '*:package file name:_files' -+ '-f[specify plist file]:plist file:_files' -+ '(-b)-c[specify comment file]:comment file:_files' -+ '(-b)-d[specify descr file]:descr file:_files' -+ '-Y[assume YES for any questions asked]' -+ '-N[assume NO for any questions asked]' -+ '(-b)-O[packing list only mode]' -+ '-v[be verbose]' -+ '-h[force tar to follow symlinks]' -+ '(-b)-i[specify pre-install script]:pre-install script:_files' -+ '(-b)-I[specify post-install script]:post-install script:_files' -+ '(-b)-P[specify initial dependencies]:dependencies:_bsd_pkg_pkgs' -+ '(-b)-p[specify prefix]:prefix directory:_files -/' -+ '(-b)-k[specify deinstall script]:deinstall script:_files' -+ '(-b)-K[specify post-deinstall script]:post-deinstall script:_files' -+ '(-b)-r[specify req script]:req script:_files' -+ '(-b)-s[specify source directory]:source directory:_files -/' -+ '(-b)-t[specify mktemp template]:mktemp template:_files' -+ '(-b)-X[specify exclude file]:exclude file for tar:_files' -+ '(-b)-D[specify message file]:message file:_files' -+ '(-b)-m[specify mtree file]:mtree file:_files' -+ '(-b)-o[specify origin]:origin:_files -W ${PORTSDIR\:-/usr/ports} -/' -+ '-j[use bzip2]' -+ '-z[use gzip]' -+ '(-c -d -O -i -I -P -p -k -K -r -s -t -X -D -m -o)-b[specify pkgname]:pkgname:_bsd_pkg_pkgs' -+ '*:package file name:_files' - ) - ;; - netbsd*) - # NetBSD users, improve me! - flags=( -- '*:package name:_bsd_pkg_pkgs' -+ '*:package name:_bsd_pkg_pkgs' - ) - ;; - esac -@@ -124,10 +128,10 @@ _bsd_pkg() { - - pkg_delete) - flags=( -- '-D[don'\''t execute deinstallation scripts]' -+ '-D[don''t execute deinstallation scripts]' - '-d[remove empty directories]' - '-f[force deinstallation]' -- '-n[don'\''t really deinstall packages]' -+ '-n[don''t really deinstall packages]' - '-p[specify prefix]:prefix directory:_files -/' - '-v[be verbose]' - ) -@@ -136,35 +140,43 @@ _bsd_pkg() { - freebsd*) - flags=( - $flags[@] -- '(:)-a[delete all installed packages]' -+ '(:)-a[delete all installed packages]' - '-G[do not expand glob patterns]' -- '-i[be interactive]' -+ '-i[be interactive]' - '-r[delete recursively]' - '-x[use regular expression]' - ) - ;; - netbsd*) - flags=( -- $flags[@] -- '(:)-a[delete all installed packages]' -- '-F[specify each package by an installed file]' -- '-i[be interactive]' -- '-O[only delete the package'\''s entries]' -+ $flags[@] -+ '(:)-a[delete all installed packages]' -+ '-F[specify each package by an installed file]' -+ '-i[be interactive]' -+ '-O[only delete the package''s entries]' - '-R[delete upward recursively]' - '-r[delete recursively]' -- '-V[show version and exit]' -+ '-V[show version and exit]' - ) - ;; - esac - -- _arguments -s \ -- $flags[@] \ -- '(-a)*:package name:_bsd_pkg_pkgs_and_files' -+ case "$OSTYPE" in -+ openbsd*) -+ _arguments -s \ -+ $flags[@] \ -+ '*:installed package name:_bsd_pkg_pkgs' -+ ;; -+ *) -+ _arguments -s \ -+ $flags[@] \ -+ '(-a)*:package name:_bsd_pkg_pkgs_and_files' -+ ;; -+ esac - ;; - - pkg_info) - flags=( -- '(:)-a[show all installed packages]' - '-c[show comment fields]' - '-D[show install-message files]' - '-d[show long descriptions]' -@@ -188,30 +200,41 @@ _bsd_pkg() { - flags=( - $flags[@] - '-G[do not expand glob patterns]' -- '-g[show files that'\''s modified]' -- '-o[show origin]' -- '-s[show total size occupied by each package]' -- '-t[specify mktemp template]:mktemp template:_files -/' -- '*-W[show which package the file belongs to]:file:_files' -- '-x[use regular expression]' -+ '-g[show files that are modified]' -+ '-o[show origin]' -+ '-s[show total size occupied by each package]' -+ '-t[specify mktemp template]:mktemp template:_files -/' -+ '*-W[show which package the file belongs to]:file:_files' -+ '-x[use regular expression]' - ) - ;; - netbsd*) - flags=( -- $flags[@] -- '-B[show build information]' -- '-b[show RCS Id strings]' -- '-F[specify each package by an installed file]' -- '-S[show total size occupied by each package and its dependents]' -- '-s[show total size occupied by each package]' -- '-V[show version and exit]' -+ $flags[@] -+ '-B[show build information]' -+ '-b[show RCS Id strings]' -+ '-F[specify each package by an installed file]' -+ '-S[show total size occupied by each package and its dependents]' -+ '-s[show total size occupied by each package]' -+ '-V[show version and exit]' - ) - ;; - esac - -- _arguments -s \ -- $flags[@] \ -- '(-a)*:package name:_bsd_pkg_pkgs_and_files' -+ case "$OSTYPE" in -+ openbsd*) -+ _arguments -s \ -+ '(* -)-a[show all installed packages]' \ -+ $flags[@] \ -+ '*:installed package name:_bsd_pkg_pkgs' -+ ;; -+ *) -+ _arguments -s \ -+ '(:)-a[show all installed packages]' \ -+ $flags[@] \ -+ '(-a)*:package name:_bsd_pkg_pkgs_and_files' -+ ;; -+ esac - ;; - esac - } diff --git a/shells/zsh/snapshot/patches/patch-Completion_Unix_Command__find b/shells/zsh/snapshot/patches/patch-Completion_Unix_Command__find deleted file mode 100644 index 46a06d5d558..00000000000 --- a/shells/zsh/snapshot/patches/patch-Completion_Unix_Command__find +++ /dev/null @@ -1,87 +0,0 @@ -$OpenBSD: patch-Completion_Unix_Command__find,v 1.1 2002/07/01 15:34:04 lebel Exp $ ---- Completion/Unix/Command/_find.orig Tue Dec 11 10:46:22 2001 -+++ Completion/Unix/Command/_find Mon Jul 1 10:05:34 2002 -@@ -1,59 +1,39 @@ --#compdef find -+#compdef find (OpenBSD) -+# Sebastian Stark - - _arguments \ -- '*-daystart' \ -- '*-depth' \ -- '*-follow' \ -- '*-help' \ -- '*-maxdepth:maximum search depth:' \ -- '*-mindepth:minimum search depth:' \ -- '*-mount' \ -- '*-noleaf' \ -- '*-version' \ -- '*-xdev' \ -- '*-amin:access time (minutes):' \ -- '*-cmin:inode change time (minutes):' \ -- '*-mmin:modification time (minutes):' \ -- '*-atime:access time (days):' \ -- '*-ctime:inode change time (days):' \ -- '*-mtime:modification time (days):' \ -+ '*-amin:access time (minutes)' \ - '*-anewer:file to compare (access time):_files' \ -+ '*-atime:access time (days)' \ -+ '*-cmin:inode change time (minutes)' \ - '*-cnewer:file to compare (inode change time):_files' \ -- '*-newer:file to compare (modification time):_files' \ -- '*-used:access after inode change (days):' \ -+ '*-ctime:inode change time (minutes)' \ - '*-empty' \ -- '*-false' \ -- '*-fstype:file system type:_file_systems' \ -- '*-gid:numeric group ID:' \ -+ '*-exec:program: _command_names -e:*\;::program arguments: _normal' \ -+ '*-execdir:program: _command_names -e:*\;::program arguments: _normal' \ -+ '*-flags:special file flag:(arch opaque nodump sappnd schg uappnd uchg)' \ -+ '*-follow' \ -+ '*-fstype:filesystem type:(local rdonly union xfs umap procfs portal null nfs msdos mfs kernfs ffs fdesc ext2fs cd9660 ados)' \ - '*-group:group:_groups' \ -- '*-uid:numeric user ID:' \ -- '*-user:user:_users' \ -- '*-lname:link pattern to search:' \ -- '*-ilname:link pattern to search (case insensitive):' \ -- '*-name:name pattern to search:' \ - '*-iname:name pattern to search (case insensitive):' \ -- '*-path:path pattern to search:' \ -- '*-ipath:path pattern to search (case insensitive):' \ -- '*-regex:regular expression to search:' \ -- '*-iregex:regular expression to search (case insensitive):' \ -- '*-inum:inode number:' \ -+ '*-inum:inode number' \ - '*-links:number of links:' \ -+ '*-ls' \ -+ '*-maxdepth:maximum search depth:' \ -+ '*-mindepth:minimum search depth:' \ -+ '*-mmin:modification time (minutes):' \ -+ '*-mtime:modification time (days):' \ -+ '*-name:name pattern to search:' \ -+ '*-newer:file to compare (modification time):_files' \ - '*-nouser' \ - '*-nogroup' \ -- '*-perm:file permission bits:' \ -- '*-size:file size:' \ -- '*-true' \ -- '*-type:file type:((b\:block\ special\ file c\:character\ special\ file d\:directory p\:named\ pipe f\:normal\ file l\:symbolic\ link s\:socket))' \ -- '*-xtype:file type:((b\:block\ special\ file c\:character\ special\ file d\:directory p\:named\ pipe f\:normal\ file l\:symbolic\ link s\:socket))' \ -- '*-exec:program: _command_names -e:*\;::program arguments: _normal' \ - '*-ok:program: _command_names -e:*\;::program arguments: _normal' \ -- '*-fls:output file:_files' \ -- '*-fprint:output file:_files' \ -- '*-fprint0:output file:_files' \ -- '*-fprintf:output file:_files:output format:' \ -+ '*-path:path pattern to search:' \ -+ '*-perm:file permission bits:' \ - '*-print' \ - '*-print0' \ -- '*-printf:output format:' \ - '*-prune' \ -- '*-ls' \ -+ '*-size:file size:' \ -+ '*-type:file type:((b\:block\ special\ file c\:character\ special\ file d\:directory p\:named\ pipe f\:normal\ file l\:symbolic\ link s\:socket))' \ -+ '*-user:user:_users' \ - '*:directory:_files -/' diff --git a/shells/zsh/snapshot/patches/patch-Doc_Makefile_in b/shells/zsh/snapshot/patches/patch-Doc_Makefile_in deleted file mode 100644 index 1f71a3e2fc7..00000000000 --- a/shells/zsh/snapshot/patches/patch-Doc_Makefile_in +++ /dev/null @@ -1,34 +0,0 @@ -$OpenBSD: patch-Doc_Makefile_in,v 1.4 2003/05/23 14:21:05 lebel Exp $ ---- Doc/Makefile.in.orig Thu Feb 13 06:06:46 2003 -+++ Doc/Makefile.in Thu May 22 10:01:03 2003 -@@ -37,7 +37,7 @@ INSTALL = @INSTALL@ - - @DEFS_MK@ - --MAKEINFO = makeinfo -+MAKEINFO = makeinfo --no-split - TEXI2DVI = texi2dvi - DVIPS = dvips - TEXI2HTML = texi2html -expand info -split chapter -@@ -99,6 +99,7 @@ info: zsh.info - .PHONY: info - - zsh.info: $(sdir)/zsh.texi -+ @rm -f zsh.info* - $(MAKEINFO) $(sdir)/zsh.texi - - .yo.1: -@@ -245,11 +246,11 @@ Zsh/manmodmenu.yo: $(MODDOCSRC) - # ========== DEPENDENCIES FOR INSTALLING ========== - - # install just installs the manual pages --install: install.man -+install: install.man install.info - .PHONY: install - - # uninstall just unistalls the manual pages --uninstall: uninstall.man -+uninstall: uninstall.man uninstall.info - .PHONY: uninstall - - # install man pages, creating install directory if necessary diff --git a/shells/zsh/snapshot/patches/patch-Doc_zsh_texi b/shells/zsh/snapshot/patches/patch-Doc_zsh_texi deleted file mode 100644 index 436f41948d0..00000000000 --- a/shells/zsh/snapshot/patches/patch-Doc_zsh_texi +++ /dev/null @@ -1,123 +0,0 @@ -$OpenBSD: patch-Doc_zsh_texi,v 1.4 2003/05/23 14:21:05 lebel Exp $ ---- Doc/zsh.texi.orig Tue May 6 11:50:40 2003 -+++ Doc/zsh.texi Thu May 22 10:01:06 2003 -@@ -7,6 +7,10 @@ - @end iftex - @setfilename zsh.info - @settitle zsh -+@dircategory Shells -+@direntry -+* Zsh: (zsh). The Z shell. -+@end direntry - @c %**end of header - - @ifinfo -@@ -2959,7 +2963,7 @@ you may see in your prompt (see - A history expansion begins with the first character of the @t{histchars} - parameter, which is `@t{!}' by default, and may occur anywhere on the - command line; history expansions do not nest. The `@t{!}' can be escaped --with `@t{\}' or can be enclosed between a pair of single quotes (@t{@value{dsq}}) -+with `@t{\}' or can be enclosed between a pair of single quotes (@t{'}@t{'}) - to suppress its special meaning. Double quotes will @emph{not} work for - this. Following this history character is an optional event designator - (@ref{Event Designators}) and then an optional word -@@ -7076,7 +7080,7 @@ For example, - @example - unsetopt localtraps - trap - INT --fn() @{ setopt localtraps; trap @value{dsq} INT; sleep 3; @} -+fn() @{ setopt localtraps; trap @t{'}@t{'} INT; sleep 3; @} - @end example - - @noindent -@@ -7316,7 +7320,8 @@ Array expansions of the form - @cindex rc, quoting style - @cindex quoting style, rc - @item @t{RC_QUOTES} --Allow the character sequence `@t{@value{dsq}}' to signify a single quote -+Allow the character sequence `@t{'}@t{'}' to signify a single -+quote - within singly quoted strings. Note this does not apply in quoted strings - using the format @t{$'}@var{...}@t{'}, where a backslashed single quote can - be used. -@@ -11219,7 +11224,7 @@ An interrupt character will not be inser - @item @t{quote-line} (ESC-') (unbound) (unbound) - Quote the current line; that is, put a `@t{'}' character at the - beginning and the end, and convert all `@t{'}' characters --to `@t{'\@value{dsq}}'. -+to `@t{'\}@t{'}@t{'}'. - - @tindex quote-region - @item @t{quote-region} (ESC-") (unbound) (unbound) -@@ -14515,7 +14520,7 @@ different types of matches displayed sep - - @noindent - @example --zstyle ':completion:*' group-name @value{dsq} -+zstyle ':completion:*' group-name @t{'}@t{'} - @end example - - @noindent -@@ -14783,7 +14788,7 @@ zstyle ':completion:*:default' list-colo - - @noindent - The default colors are the same as for the GNU @t{ls} command and can be --obtained by setting the style to an empty string (i.e. @t{@value{dsq}}). -+obtained by setting the style to an empty string (i.e. @t{'}@t{'}). - - @kindex list-grouped, completion style - @item @t{list-grouped} -@@ -14903,7 +14908,7 @@ generates no matches, case-insensitive c - - @noindent - @example --zstyle ':completion:*' matcher-list @value{dsq} 'm:@{a-zA-Z@}=@{A-Za-z@}' -+zstyle ':completion:*' matcher-list @t{'}@t{'} 'm:@{a-zA-Z@}=@{A-Za-z@}' - @end example - - @noindent -@@ -14927,7 +14932,7 @@ case-insensitive completion with @t{_com - @example - zstyle ':completion:*' completer _complete _prefix - zstyle ':completion:*:complete:*' matcher-list \ -- @value{dsq} 'm:@{a-zA-Z@}=@{A-Za-z@}' -+ @t{'}@t{'} 'm:@{a-zA-Z@}=@{A-Za-z@}' - @end example - - @noindent -@@ -14942,7 +14947,7 @@ partial-word completion: - @example - zstyle ':completion:*' completer _complete _correct _complete:foo - zstyle ':completion:*:complete:*' matcher-list \ -- @value{dsq} 'm:@{a-zA-Z@}=@{A-Za-z@}' -+ @t{'}@t{'} 'm:@{a-zA-Z@}=@{A-Za-z@}' - zstyle ':completion:*:foo:*' matcher-list \ - 'm:@{a-zA-Z@}=@{A-Za-z@} r:|[-_./]=* r:|=*' - @end example -@@ -18055,7 +18060,7 @@ generates at least one match. E.g.: - - @noindent - @example --compctl -M @value{dsq} 'm:@{a-zA-Z@}=@{A-Za-z@}' -+compctl -M @t{'}@t{'} 'm:@{a-zA-Z@}=@{A-Za-z@}' - @end example - - @noindent -@@ -18267,7 +18272,7 @@ use is - - @noindent - @example --compctl -D -f + -H 0 @value{dsq} -+compctl -D -f + -H 0 @t{'}@t{'} - @end example - - @noindent -@@ -18355,7 +18360,7 @@ performed on the first word in the range - - @noindent - @example --compctl -x 'r[-exec,;]' -l @value{dsq} -- find -+compctl -x 'r[-exec,;]' -l @t{'}@t{'} -- find - @end example - - @noindent diff --git a/shells/zsh/snapshot/patches/patch-Makefile_in b/shells/zsh/snapshot/patches/patch-Makefile_in deleted file mode 100644 index a8785bbd629..00000000000 --- a/shells/zsh/snapshot/patches/patch-Makefile_in +++ /dev/null @@ -1,14 +0,0 @@ -$OpenBSD: patch-Makefile_in,v 1.3 2002/07/01 15:34:04 lebel Exp $ ---- Makefile.in.orig Mon Sep 10 06:48:44 2001 -+++ Makefile.in Sun Nov 18 12:17:48 2001 -@@ -63,8 +63,8 @@ install-strip: - $(MAKE) install STRIPFLAGS="-s" - - # install/uninstall most things --install: install.bin install.modules install.fns install.man --uninstall: uninstall.bin uninstall.modules uninstall.fns uninstall.man -+install: install.bin install.modules install.fns install.man install.info -+uninstall: uninstall.bin uninstall.modules uninstall.fns uninstall.man uninstall.info - - # install/uninstall just the binary - install.bin uninstall.bin: diff --git a/shells/zsh/snapshot/patches/patch-aczsh_m4 b/shells/zsh/snapshot/patches/patch-aczsh_m4 deleted file mode 100644 index c9a21ece3c9..00000000000 --- a/shells/zsh/snapshot/patches/patch-aczsh_m4 +++ /dev/null @@ -1,12 +0,0 @@ -$OpenBSD: patch-aczsh_m4,v 1.1 2002/07/01 15:34:04 lebel Exp $ ---- aczsh.m4.orig Sun Apr 14 01:20:18 2002 -+++ aczsh.m4 Sun Apr 14 01:20:40 2002 -@@ -218,6 +218,8 @@ main() - sym1 = zsh_getaddr1(); - if(!sym1) exit(1); - if(sym1 != sym2) exit(1); -+ dlclose(handle1); -+ dlclose(handle2); - exit(0); - } - ], [zsh_cv_shared_$1=yes], diff --git a/shells/zsh/snapshot/pkg/DEINSTALL b/shells/zsh/snapshot/pkg/DEINSTALL deleted file mode 100644 index ffdad390b8e..00000000000 --- a/shells/zsh/snapshot/pkg/DEINSTALL +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh -# $OpenBSD: DEINSTALL,v 1.3 2002/07/01 15:34:04 lebel Exp $ -# -# zsh de-installation - -set -e -PATH=/bin:/usr/bin:/sbin:/usr/sbin -PREFIX=${PKG_PREFIX:-/usr/local} - -if grep -q ${PREFIX}/bin/zsh /etc/shells; then - echo - echo "+---------------" - echo "| To completely deinstall the $1 package you need to edit" - echo "| /etc/shells and remove this line:" - echo "|" - echo "| ${PREFIX}/bin/zsh" - echo "|" - echo "+---------------" - echo -fi - -exit 0 diff --git a/shells/zsh/snapshot/pkg/DESCR b/shells/zsh/snapshot/pkg/DESCR deleted file mode 100644 index ec3923f29b0..00000000000 --- a/shells/zsh/snapshot/pkg/DESCR +++ /dev/null @@ -1,9 +0,0 @@ -Zsh is a UNIX command interpreter (shell) which of the standard shells -most resembles the Korn shell (ksh), although it is not completely -compatible. It includes enhancements of many types, notably in the -command-line editor, options for customising its behaviour, filename -globbing, features to make C-shell (csh) users feel more at home and -extra features drawn from tcsh (another `custom' shell). - -Flavors: - static - Build with statically linked binaries. diff --git a/shells/zsh/snapshot/pkg/DESCR-zftp b/shells/zsh/snapshot/pkg/DESCR-zftp deleted file mode 100644 index 3937d5587f4..00000000000 --- a/shells/zsh/snapshot/pkg/DESCR-zftp +++ /dev/null @@ -1,8 +0,0 @@ -Zsh is a UNIX command interpreter (shell) which of the standard shells -most resembles the Korn shell (ksh), although it is not completely -compatible. It includes enhancements of many types, notably in the -command-line editor, options for customising its behaviour, filename -globbing, features to make C-shell (csh) users feel more at home and -extra features drawn from tcsh (another `custom' shell). - -This package adds the zftp module to zsh. diff --git a/shells/zsh/snapshot/pkg/INSTALL b/shells/zsh/snapshot/pkg/INSTALL deleted file mode 100644 index 9e2b82a0feb..00000000000 --- a/shells/zsh/snapshot/pkg/INSTALL +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/sh -# $OpenBSD: INSTALL,v 1.3 2002/07/01 15:34:04 lebel Exp $ -# -# Pre/post-installation setup of zsh - -# exit on errors, use a sane path and install prefix -# -set -e -PATH=/bin:/usr/bin:/sbin:/usr/sbin -PREFIX=${PKG_PREFIX:-/usr/local} - -# Function: tell the user what s/he needs to do to use the port just installed -# -do_notice() -{ - echo - echo "+---------------" - echo "| For proper use of $1 you should notify the system" - echo "| that ${PREFIX}/bin/zsh is a valid shell by adding it to the" - echo "| the file /etc/shells. If you are unfamiliar with this file" - echo "| consult the shells(5) manual page" - echo "+---------------" - echo -} - -# verify proper execution -# -if [ $# -ne 2 ]; then - echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2 - exit 1 -fi - -# Verify/process the command -# -case $2 in - PRE-INSTALL) - : nothing to pre-install for this port - ;; - POST-INSTALL) - if grep -q ${PREFIX}/bin/zsh /etc/shells; then - : - else - do_notice $1 - fi - ;; - *) - echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2 - exit 1 - ;; -esac - -exit 0 diff --git a/shells/zsh/snapshot/pkg/PFRAG.no-static b/shells/zsh/snapshot/pkg/PFRAG.no-static deleted file mode 100644 index 7d6ec61a34f..00000000000 --- a/shells/zsh/snapshot/pkg/PFRAG.no-static +++ /dev/null @@ -1,32 +0,0 @@ -@comment $OpenBSD: PFRAG.no-static,v 1.2 2002/07/01 15:46:47 lebel Exp $ -lib/zsh/${VERSION}/zsh/cap.so -lib/zsh/${VERSION}/zsh/clone.so -lib/zsh/${VERSION}/zsh/compctl.so -lib/zsh/${VERSION}/zsh/complete.so -lib/zsh/${VERSION}/zsh/complist.so -lib/zsh/${VERSION}/zsh/computil.so -lib/zsh/${VERSION}/zsh/datetime.so -lib/zsh/${VERSION}/zsh/deltochar.so -lib/zsh/${VERSION}/zsh/example.so -lib/zsh/${VERSION}/zsh/files.so -lib/zsh/${VERSION}/zsh/langinfo.so -lib/zsh/${VERSION}/zsh/mapfile.so -lib/zsh/${VERSION}/zsh/mathfunc.so -lib/zsh/${VERSION}/zsh/net/tcp.so -lib/zsh/${VERSION}/zsh/parameter.so -lib/zsh/${VERSION}/zsh/pcre.so -lib/zsh/${VERSION}/zsh/rlimits.so -lib/zsh/${VERSION}/zsh/sched.so -lib/zsh/${VERSION}/zsh/stat.so -lib/zsh/${VERSION}/zsh/termcap.so -lib/zsh/${VERSION}/zsh/terminfo.so -lib/zsh/${VERSION}/zsh/zle.so -lib/zsh/${VERSION}/zsh/zleparameter.so -lib/zsh/${VERSION}/zsh/zprof.so -lib/zsh/${VERSION}/zsh/zpty.so -lib/zsh/${VERSION}/zsh/zselect.so -lib/zsh/${VERSION}/zsh/zutil.so -@dirrm lib/zsh/${VERSION}/zsh/net -@dirrm lib/zsh/${VERSION}/zsh -@dirrm lib/zsh/${VERSION} -@dirrm lib/zsh diff --git a/shells/zsh/snapshot/pkg/PFRAG.shared b/shells/zsh/snapshot/pkg/PFRAG.shared deleted file mode 100644 index f3443457aa9..00000000000 --- a/shells/zsh/snapshot/pkg/PFRAG.shared +++ /dev/null @@ -1,2 +0,0 @@ -@comment $OpenBSD: PFRAG.shared,v 1.1 2002/07/01 15:34:04 lebel Exp $ -!%%static%% diff --git a/shells/zsh/snapshot/pkg/PFRAG.shared-zftp b/shells/zsh/snapshot/pkg/PFRAG.shared-zftp deleted file mode 100644 index bc2129a5cfb..00000000000 --- a/shells/zsh/snapshot/pkg/PFRAG.shared-zftp +++ /dev/null @@ -1,2 +0,0 @@ -@comment $OpenBSD: PFRAG.shared-zftp,v 1.1 2002/07/01 15:34:04 lebel Exp $ -lib/zsh/${VERSION}/zsh/zftp.so diff --git a/shells/zsh/snapshot/pkg/PLIST b/shells/zsh/snapshot/pkg/PLIST deleted file mode 100644 index 79beae96aaf..00000000000 --- a/shells/zsh/snapshot/pkg/PLIST +++ /dev/null @@ -1,465 +0,0 @@ -@comment $OpenBSD: PLIST,v 1.4 2003/05/23 14:21:05 lebel Exp $ -@unexec install-info --delete --info-dir=%D/info %D/info/zsh.info -bin/zsh -bin/zsh-${VERSION} -info/zsh.info -man/man1/zsh.1 -man/man1/zshall.1 -man/man1/zshbuiltins.1 -man/man1/zshcompctl.1 -man/man1/zshcompsys.1 -man/man1/zshcompwid.1 -man/man1/zshcontrib.1 -man/man1/zshexpn.1 -man/man1/zshmisc.1 -man/man1/zshmodules.1 -man/man1/zshoptions.1 -man/man1/zshparam.1 -man/man1/zshzle.1 -!%%static%% -share/zsh/${VERSION}/functions/_a2ps -share/zsh/${VERSION}/functions/_acroread -share/zsh/${VERSION}/functions/_alias -share/zsh/${VERSION}/functions/_aliases -share/zsh/${VERSION}/functions/_all_labels -share/zsh/${VERSION}/functions/_all_matches -share/zsh/${VERSION}/functions/_alternative -share/zsh/${VERSION}/functions/_ant -share/zsh/${VERSION}/functions/_antiword -share/zsh/${VERSION}/functions/_apachectl -share/zsh/${VERSION}/functions/_apm -share/zsh/${VERSION}/functions/_approximate -share/zsh/${VERSION}/functions/_apt -share/zsh/${VERSION}/functions/_apt-show-versions -share/zsh/${VERSION}/functions/_archie -share/zsh/${VERSION}/functions/_arg_compile -share/zsh/${VERSION}/functions/_arguments -share/zsh/${VERSION}/functions/_arp -share/zsh/${VERSION}/functions/_arping -share/zsh/${VERSION}/functions/_arrays -share/zsh/${VERSION}/functions/_assign -share/zsh/${VERSION}/functions/_auto-apt -share/zsh/${VERSION}/functions/_autocd -share/zsh/${VERSION}/functions/_autoload -share/zsh/${VERSION}/functions/_bash_completions -share/zsh/${VERSION}/functions/_bindkey -share/zsh/${VERSION}/functions/_bison -share/zsh/${VERSION}/functions/_brace_parameter -share/zsh/${VERSION}/functions/_bsd_pkg -share/zsh/${VERSION}/functions/_bts -share/zsh/${VERSION}/functions/_bug -share/zsh/${VERSION}/functions/_builtin -share/zsh/${VERSION}/functions/_bzip2 -share/zsh/${VERSION}/functions/_cache_invalid -share/zsh/${VERSION}/functions/_call_function -share/zsh/${VERSION}/functions/_call_program -share/zsh/${VERSION}/functions/_cd -share/zsh/${VERSION}/functions/_cdcd -share/zsh/${VERSION}/functions/_chflags -share/zsh/${VERSION}/functions/_chkconfig -share/zsh/${VERSION}/functions/_chown -share/zsh/${VERSION}/functions/_combination -share/zsh/${VERSION}/functions/_command -share/zsh/${VERSION}/functions/_command_names -share/zsh/${VERSION}/functions/_compdef -share/zsh/${VERSION}/functions/_complete -share/zsh/${VERSION}/functions/_complete_debug -share/zsh/${VERSION}/functions/_complete_help -share/zsh/${VERSION}/functions/_complete_tag -share/zsh/${VERSION}/functions/_compress -share/zsh/${VERSION}/functions/_condition -share/zsh/${VERSION}/functions/_configure -share/zsh/${VERSION}/functions/_correct -share/zsh/${VERSION}/functions/_correct_filename -share/zsh/${VERSION}/functions/_correct_word -share/zsh/${VERSION}/functions/_cpio -share/zsh/${VERSION}/functions/_cvs -share/zsh/${VERSION}/functions/_cvsup -share/zsh/${VERSION}/functions/_cygcheck -share/zsh/${VERSION}/functions/_cygpath -share/zsh/${VERSION}/functions/_cygrunsrv -share/zsh/${VERSION}/functions/_cygserver -share/zsh/${VERSION}/functions/_cygstart -share/zsh/${VERSION}/functions/_dcop -share/zsh/${VERSION}/functions/_dd -share/zsh/${VERSION}/functions/_deb_packages -share/zsh/${VERSION}/functions/_debchange -share/zsh/${VERSION}/functions/_debfoster -share/zsh/${VERSION}/functions/_default -share/zsh/${VERSION}/functions/_describe -share/zsh/${VERSION}/functions/_description -share/zsh/${VERSION}/functions/_dict -share/zsh/${VERSION}/functions/_dict_words -share/zsh/${VERSION}/functions/_diff -share/zsh/${VERSION}/functions/_diff_options -share/zsh/${VERSION}/functions/_dir_list -share/zsh/${VERSION}/functions/_directories -share/zsh/${VERSION}/functions/_directory_stack -share/zsh/${VERSION}/functions/_dirs -share/zsh/${VERSION}/functions/_disable -share/zsh/${VERSION}/functions/_dispatch -share/zsh/${VERSION}/functions/_domains -share/zsh/${VERSION}/functions/_dpkg -share/zsh/${VERSION}/functions/_dpkg_source -share/zsh/${VERSION}/functions/_dput -share/zsh/${VERSION}/functions/_dumper -share/zsh/${VERSION}/functions/_dupload -share/zsh/${VERSION}/functions/_dvi -share/zsh/${VERSION}/functions/_echotc -share/zsh/${VERSION}/functions/_echoti -share/zsh/${VERSION}/functions/_elinks -share/zsh/${VERSION}/functions/_elm -share/zsh/${VERSION}/functions/_email_addresses -share/zsh/${VERSION}/functions/_emulate -share/zsh/${VERSION}/functions/_enable -share/zsh/${VERSION}/functions/_enscript -share/zsh/${VERSION}/functions/_equal -share/zsh/${VERSION}/functions/_expand -share/zsh/${VERSION}/functions/_expand_alias -share/zsh/${VERSION}/functions/_expand_word -share/zsh/${VERSION}/functions/_fakeroot -share/zsh/${VERSION}/functions/_fc -share/zsh/${VERSION}/functions/_fetchmail -share/zsh/${VERSION}/functions/_figlet -share/zsh/${VERSION}/functions/_file_descriptors -share/zsh/${VERSION}/functions/_file_systems -share/zsh/${VERSION}/functions/_files -share/zsh/${VERSION}/functions/_find -share/zsh/${VERSION}/functions/_finger -share/zsh/${VERSION}/functions/_first -share/zsh/${VERSION}/functions/_flex -share/zsh/${VERSION}/functions/_floppy -share/zsh/${VERSION}/functions/_fsh -share/zsh/${VERSION}/functions/_functions -share/zsh/${VERSION}/functions/_gcc -share/zsh/${VERSION}/functions/_gdb -share/zsh/${VERSION}/functions/_generic -share/zsh/${VERSION}/functions/_getclip -share/zsh/${VERSION}/functions/_getconf -share/zsh/${VERSION}/functions/_getfacl -share/zsh/${VERSION}/functions/_global -share/zsh/${VERSION}/functions/_global_tags -share/zsh/${VERSION}/functions/_gnu_generic -share/zsh/${VERSION}/functions/_gprof -share/zsh/${VERSION}/functions/_gqview -share/zsh/${VERSION}/functions/_grep -share/zsh/${VERSION}/functions/_groups -share/zsh/${VERSION}/functions/_gs -share/zsh/${VERSION}/functions/_guard -share/zsh/${VERSION}/functions/_gv -share/zsh/${VERSION}/functions/_gzip -share/zsh/${VERSION}/functions/_hash -share/zsh/${VERSION}/functions/_history -share/zsh/${VERSION}/functions/_history_complete_word -share/zsh/${VERSION}/functions/_hosts -share/zsh/${VERSION}/functions/_iconv -share/zsh/${VERSION}/functions/_ifconfig -share/zsh/${VERSION}/functions/_ignored -share/zsh/${VERSION}/functions/_imagemagick -share/zsh/${VERSION}/functions/_in_vared -share/zsh/${VERSION}/functions/_init_d -share/zsh/${VERSION}/functions/_irssi -share/zsh/${VERSION}/functions/_ispell -share/zsh/${VERSION}/functions/_java -share/zsh/${VERSION}/functions/_java_class -share/zsh/${VERSION}/functions/_jobs -share/zsh/${VERSION}/functions/_jobs_bg -share/zsh/${VERSION}/functions/_jobs_builtin -share/zsh/${VERSION}/functions/_jobs_fg -share/zsh/${VERSION}/functions/_joe -share/zsh/${VERSION}/functions/_kill -share/zsh/${VERSION}/functions/_killall -share/zsh/${VERSION}/functions/_kld -share/zsh/${VERSION}/functions/_larch -share/zsh/${VERSION}/functions/_last -share/zsh/${VERSION}/functions/_limit -share/zsh/${VERSION}/functions/_limits -share/zsh/${VERSION}/functions/_links -share/zsh/${VERSION}/functions/_list -share/zsh/${VERSION}/functions/_loadkeys -share/zsh/${VERSION}/functions/_locales -share/zsh/${VERSION}/functions/_logical_volumes -share/zsh/${VERSION}/functions/_look -share/zsh/${VERSION}/functions/_losetup -share/zsh/${VERSION}/functions/_lp -share/zsh/${VERSION}/functions/_ls -share/zsh/${VERSION}/functions/_lscfg -share/zsh/${VERSION}/functions/_lsdev -share/zsh/${VERSION}/functions/_lslv -share/zsh/${VERSION}/functions/_lsof -share/zsh/${VERSION}/functions/_lspv -share/zsh/${VERSION}/functions/_lsvg -share/zsh/${VERSION}/functions/_lynx -share/zsh/${VERSION}/functions/_lzop -share/zsh/${VERSION}/functions/_mail -share/zsh/${VERSION}/functions/_mailboxes -share/zsh/${VERSION}/functions/_main_complete -share/zsh/${VERSION}/functions/_make -share/zsh/${VERSION}/functions/_make-kpkg -share/zsh/${VERSION}/functions/_man -share/zsh/${VERSION}/functions/_match -share/zsh/${VERSION}/functions/_math -share/zsh/${VERSION}/functions/_menu -share/zsh/${VERSION}/functions/_mere -share/zsh/${VERSION}/functions/_message -share/zsh/${VERSION}/functions/_mh -share/zsh/${VERSION}/functions/_mkshortcut -share/zsh/${VERSION}/functions/_mkzsh -share/zsh/${VERSION}/functions/_modutils -share/zsh/${VERSION}/functions/_mondo -share/zsh/${VERSION}/functions/_most_recent_file -share/zsh/${VERSION}/functions/_mount -share/zsh/${VERSION}/functions/_mozilla -share/zsh/${VERSION}/functions/_mt -share/zsh/${VERSION}/functions/_mtools -share/zsh/${VERSION}/functions/_multi_parts -share/zsh/${VERSION}/functions/_mutt -share/zsh/${VERSION}/functions/_my_accounts -share/zsh/${VERSION}/functions/_mysql_utils -share/zsh/${VERSION}/functions/_mysqldiff -share/zsh/${VERSION}/functions/_ncftp -share/zsh/${VERSION}/functions/_nedit -share/zsh/${VERSION}/functions/_net_interfaces -share/zsh/${VERSION}/functions/_netcat -share/zsh/${VERSION}/functions/_netscape -share/zsh/${VERSION}/functions/_newsgroups -share/zsh/${VERSION}/functions/_next_label -share/zsh/${VERSION}/functions/_next_tags -share/zsh/${VERSION}/functions/_normal -share/zsh/${VERSION}/functions/_nothing -share/zsh/${VERSION}/functions/_nslookup -share/zsh/${VERSION}/functions/_object_classes -share/zsh/${VERSION}/functions/_oldlist -share/zsh/${VERSION}/functions/_options -share/zsh/${VERSION}/functions/_options_set -share/zsh/${VERSION}/functions/_options_unset -share/zsh/${VERSION}/functions/_other_accounts -share/zsh/${VERSION}/functions/_pack -share/zsh/${VERSION}/functions/_parameter -share/zsh/${VERSION}/functions/_parameters -share/zsh/${VERSION}/functions/_patch -share/zsh/${VERSION}/functions/_path_files -share/zsh/${VERSION}/functions/_pbm -share/zsh/${VERSION}/functions/_pdf -share/zsh/${VERSION}/functions/_perforce -share/zsh/${VERSION}/functions/_perl -share/zsh/${VERSION}/functions/_perl_basepods -share/zsh/${VERSION}/functions/_perl_builtin_funcs -share/zsh/${VERSION}/functions/_perl_modules -share/zsh/${VERSION}/functions/_perldoc -share/zsh/${VERSION}/functions/_physical_volumes -share/zsh/${VERSION}/functions/_pick_variant -share/zsh/${VERSION}/functions/_pids -share/zsh/${VERSION}/functions/_pine -share/zsh/${VERSION}/functions/_ports -share/zsh/${VERSION}/functions/_prcs -share/zsh/${VERSION}/functions/_precommand -share/zsh/${VERSION}/functions/_prefix -share/zsh/${VERSION}/functions/_print -share/zsh/${VERSION}/functions/_printers -share/zsh/${VERSION}/functions/_prompt -share/zsh/${VERSION}/functions/_ps -share/zsh/${VERSION}/functions/_pscp -share/zsh/${VERSION}/functions/_pspdf -share/zsh/${VERSION}/functions/_psutils -share/zsh/${VERSION}/functions/_putclip -share/zsh/${VERSION}/functions/_python -share/zsh/${VERSION}/functions/_rcs -share/zsh/${VERSION}/functions/_read -share/zsh/${VERSION}/functions/_read_comp -share/zsh/${VERSION}/functions/_redirect -share/zsh/${VERSION}/functions/_regex_arguments -share/zsh/${VERSION}/functions/_renice -share/zsh/${VERSION}/functions/_requested -share/zsh/${VERSION}/functions/_retrieve_cache -share/zsh/${VERSION}/functions/_rlogin -share/zsh/${VERSION}/functions/_rpm -share/zsh/${VERSION}/functions/_rsync -share/zsh/${VERSION}/functions/_ruby -share/zsh/${VERSION}/functions/_samba -share/zsh/${VERSION}/functions/_sccs -share/zsh/${VERSION}/functions/_sched -share/zsh/${VERSION}/functions/_screen -share/zsh/${VERSION}/functions/_sep_parts -share/zsh/${VERSION}/functions/_service -share/zsh/${VERSION}/functions/_services -share/zsh/${VERSION}/functions/_set -share/zsh/${VERSION}/functions/_set_command -share/zsh/${VERSION}/functions/_setopt -share/zsh/${VERSION}/functions/_setup -share/zsh/${VERSION}/functions/_sh -share/zsh/${VERSION}/functions/_signals -share/zsh/${VERSION}/functions/_slrn -share/zsh/${VERSION}/functions/_smit -share/zsh/${VERSION}/functions/_socket -share/zsh/${VERSION}/functions/_source -share/zsh/${VERSION}/functions/_spamassassin -share/zsh/${VERSION}/functions/_ssh -share/zsh/${VERSION}/functions/_stat -share/zsh/${VERSION}/functions/_store_cache -share/zsh/${VERSION}/functions/_strip -share/zsh/${VERSION}/functions/_stty -share/zsh/${VERSION}/functions/_su -share/zsh/${VERSION}/functions/_sub_commands -share/zsh/${VERSION}/functions/_subscript -share/zsh/${VERSION}/functions/_sudo -share/zsh/${VERSION}/functions/_sysctl -share/zsh/${VERSION}/functions/_tags -share/zsh/${VERSION}/functions/_tar -share/zsh/${VERSION}/functions/_tar_archive -share/zsh/${VERSION}/functions/_telnet -share/zsh/${VERSION}/functions/_terminals -share/zsh/${VERSION}/functions/_tex -share/zsh/${VERSION}/functions/_texi -share/zsh/${VERSION}/functions/_texinfo -share/zsh/${VERSION}/functions/_tidy -share/zsh/${VERSION}/functions/_tiff -share/zsh/${VERSION}/functions/_tilde -share/zsh/${VERSION}/functions/_tilde_files -share/zsh/${VERSION}/functions/_time_zone -share/zsh/${VERSION}/functions/_tin -share/zsh/${VERSION}/functions/_trap -share/zsh/${VERSION}/functions/_ttyctl -share/zsh/${VERSION}/functions/_typeset -share/zsh/${VERSION}/functions/_ulimit -share/zsh/${VERSION}/functions/_uml -share/zsh/${VERSION}/functions/_unhash -share/zsh/${VERSION}/functions/_unsetopt -share/zsh/${VERSION}/functions/_update-alternatives -share/zsh/${VERSION}/functions/_urls -share/zsh/${VERSION}/functions/_urpmi -share/zsh/${VERSION}/functions/_user_admin -share/zsh/${VERSION}/functions/_user_at_host -share/zsh/${VERSION}/functions/_users -share/zsh/${VERSION}/functions/_users_on -share/zsh/${VERSION}/functions/_valgrind -share/zsh/${VERSION}/functions/_value -share/zsh/${VERSION}/functions/_values -share/zsh/${VERSION}/functions/_vared -share/zsh/${VERSION}/functions/_vars -share/zsh/${VERSION}/functions/_vnc -share/zsh/${VERSION}/functions/_volume_groups -share/zsh/${VERSION}/functions/_w3m -share/zsh/${VERSION}/functions/_wait -share/zsh/${VERSION}/functions/_wanted -share/zsh/${VERSION}/functions/_webbrowser -share/zsh/${VERSION}/functions/_wget -share/zsh/${VERSION}/functions/_whereis -share/zsh/${VERSION}/functions/_which -share/zsh/${VERSION}/functions/_whois -share/zsh/${VERSION}/functions/_x_arguments -share/zsh/${VERSION}/functions/_x_borderwidth -share/zsh/${VERSION}/functions/_x_color -share/zsh/${VERSION}/functions/_x_colormapid -share/zsh/${VERSION}/functions/_x_cursor -share/zsh/${VERSION}/functions/_x_display -share/zsh/${VERSION}/functions/_x_extension -share/zsh/${VERSION}/functions/_x_font -share/zsh/${VERSION}/functions/_x_geometry -share/zsh/${VERSION}/functions/_x_keysym -share/zsh/${VERSION}/functions/_x_locale -share/zsh/${VERSION}/functions/_x_modifier -share/zsh/${VERSION}/functions/_x_name -share/zsh/${VERSION}/functions/_x_resource -share/zsh/${VERSION}/functions/_x_selection_timeout -share/zsh/${VERSION}/functions/_x_title -share/zsh/${VERSION}/functions/_x_utils -share/zsh/${VERSION}/functions/_x_visual -share/zsh/${VERSION}/functions/_x_window -share/zsh/${VERSION}/functions/_xargs -share/zsh/${VERSION}/functions/_xauth -share/zsh/${VERSION}/functions/_xdvi -share/zsh/${VERSION}/functions/_xfig -share/zsh/${VERSION}/functions/_xloadimage -share/zsh/${VERSION}/functions/_xmlsoft -share/zsh/${VERSION}/functions/_xmodmap -share/zsh/${VERSION}/functions/_xset -share/zsh/${VERSION}/functions/_xt_arguments -share/zsh/${VERSION}/functions/_xt_session_id -share/zsh/${VERSION}/functions/_xterm -share/zsh/${VERSION}/functions/_xv -share/zsh/${VERSION}/functions/_xwit -share/zsh/${VERSION}/functions/_yodl -share/zsh/${VERSION}/functions/_yp -share/zsh/${VERSION}/functions/_zcat -share/zsh/${VERSION}/functions/_zcompile -share/zsh/${VERSION}/functions/_zdump -share/zsh/${VERSION}/functions/_zed -share/zsh/${VERSION}/functions/_zftp -share/zsh/${VERSION}/functions/_zip -share/zsh/${VERSION}/functions/_zle -share/zsh/${VERSION}/functions/_zmodload -share/zsh/${VERSION}/functions/_zmv -share/zsh/${VERSION}/functions/_zpty -share/zsh/${VERSION}/functions/_zstyle -share/zsh/${VERSION}/functions/allopt -share/zsh/${VERSION}/functions/backward-kill-word-match -share/zsh/${VERSION}/functions/backward-word-match -share/zsh/${VERSION}/functions/bashcompinit -share/zsh/${VERSION}/functions/capitalize-word-match -share/zsh/${VERSION}/functions/checkmail -share/zsh/${VERSION}/functions/colors -share/zsh/${VERSION}/functions/compaudit -share/zsh/${VERSION}/functions/compdump -share/zsh/${VERSION}/functions/compinit -share/zsh/${VERSION}/functions/compinstall -share/zsh/${VERSION}/functions/copy-earlier-word -share/zsh/${VERSION}/functions/cycle-completion-positions -share/zsh/${VERSION}/functions/down-case-word-match -share/zsh/${VERSION}/functions/down-line-or-beginning-search -share/zsh/${VERSION}/functions/edit-command-line -share/zsh/${VERSION}/functions/forward-word-match -share/zsh/${VERSION}/functions/getjobs -share/zsh/${VERSION}/functions/harden -share/zsh/${VERSION}/functions/history-search-end -share/zsh/${VERSION}/functions/incarg -share/zsh/${VERSION}/functions/incremental-complete-word -share/zsh/${VERSION}/functions/insert-files -share/zsh/${VERSION}/functions/is-at-least -share/zsh/${VERSION}/functions/kill-word-match -share/zsh/${VERSION}/functions/match-words-by-style -share/zsh/${VERSION}/functions/mere -share/zsh/${VERSION}/functions/narrow-to-region -share/zsh/${VERSION}/functions/narrow-to-region-invisible -share/zsh/${VERSION}/functions/nslookup -share/zsh/${VERSION}/functions/predict-on -share/zsh/${VERSION}/functions/prompt_adam1_setup -share/zsh/${VERSION}/functions/prompt_adam2_setup -share/zsh/${VERSION}/functions/prompt_bart_setup -share/zsh/${VERSION}/functions/prompt_bigfade_setup -share/zsh/${VERSION}/functions/prompt_clint_setup -share/zsh/${VERSION}/functions/prompt_elite2_setup -share/zsh/${VERSION}/functions/prompt_elite_setup -share/zsh/${VERSION}/functions/prompt_fade_setup -share/zsh/${VERSION}/functions/prompt_fire_setup -share/zsh/${VERSION}/functions/prompt_off_setup -share/zsh/${VERSION}/functions/prompt_oliver_setup -share/zsh/${VERSION}/functions/prompt_redhat_setup -share/zsh/${VERSION}/functions/prompt_suse_setup -share/zsh/${VERSION}/functions/prompt_walters_setup -share/zsh/${VERSION}/functions/prompt_zefram_setup -share/zsh/${VERSION}/functions/promptinit -share/zsh/${VERSION}/functions/promptnl -share/zsh/${VERSION}/functions/read-from-minibuffer -share/zsh/${VERSION}/functions/relative -share/zsh/${VERSION}/functions/replace-string -share/zsh/${VERSION}/functions/run-help -share/zsh/${VERSION}/functions/select-word-style -share/zsh/${VERSION}/functions/smart-insert-last-word -share/zsh/${VERSION}/functions/tetris -share/zsh/${VERSION}/functions/transpose-words-match -share/zsh/${VERSION}/functions/up-case-word-match -share/zsh/${VERSION}/functions/up-line-or-beginning-search -share/zsh/${VERSION}/functions/zargs -share/zsh/${VERSION}/functions/zcalc -share/zsh/${VERSION}/functions/zed -share/zsh/${VERSION}/functions/zkbd -share/zsh/${VERSION}/functions/zmv -share/zsh/${VERSION}/functions/zrecompile -share/zsh/${VERSION}/functions/zstyle+ -@exec mkdir -p %D/share/zsh/site-functions -@dirrm share/zsh/site-functions -@dirrm share/zsh/${VERSION}/functions -@dirrm share/zsh/${VERSION} -@dirrm share/zsh -@exec install-info --info-dir=%D/info %D/info/zsh.info diff --git a/shells/zsh/snapshot/pkg/PLIST-zftp b/shells/zsh/snapshot/pkg/PLIST-zftp deleted file mode 100644 index 6032e1dd809..00000000000 --- a/shells/zsh/snapshot/pkg/PLIST-zftp +++ /dev/null @@ -1,35 +0,0 @@ -@comment $OpenBSD: PLIST-zftp,v 1.1 2002/07/01 15:34:04 lebel Exp $ -%%SHARED%% -man/man1/zshzftpsys.1 -share/zsh/${VERSION}/functions/_zftp -share/zsh/${VERSION}/functions/zfanon -share/zsh/${VERSION}/functions/zfautocheck -share/zsh/${VERSION}/functions/zfcd -share/zsh/${VERSION}/functions/zfcd_match -share/zsh/${VERSION}/functions/zfcget -share/zsh/${VERSION}/functions/zfclose -share/zsh/${VERSION}/functions/zfcput -share/zsh/${VERSION}/functions/zfdir -share/zsh/${VERSION}/functions/zffcache -share/zsh/${VERSION}/functions/zfgcp -share/zsh/${VERSION}/functions/zfget -share/zsh/${VERSION}/functions/zfget_match -share/zsh/${VERSION}/functions/zfgoto -share/zsh/${VERSION}/functions/zfhere -share/zsh/${VERSION}/functions/zfinit -share/zsh/${VERSION}/functions/zfls -share/zsh/${VERSION}/functions/zfmark -share/zsh/${VERSION}/functions/zfopen -share/zsh/${VERSION}/functions/zfparams -share/zsh/${VERSION}/functions/zfpcp -share/zsh/${VERSION}/functions/zfput -share/zsh/${VERSION}/functions/zfrglob -share/zsh/${VERSION}/functions/zfrtime -share/zsh/${VERSION}/functions/zfsession -share/zsh/${VERSION}/functions/zfstat -share/zsh/${VERSION}/functions/zftp_chpwd -share/zsh/${VERSION}/functions/zftp_progress -share/zsh/${VERSION}/functions/zftransfer -share/zsh/${VERSION}/functions/zftype -share/zsh/${VERSION}/functions/zfuget -share/zsh/${VERSION}/functions/zfuput