svn commit: r389703 - in head/shells/zsh: . files
Baptiste Daroussin
bapt at FreeBSD.org
Mon Jun 15 12:36:14 UTC 2015
Author: bapt
Date: Mon Jun 15 12:36:13 2015
New Revision: 389703
URL: https://svnweb.freebsd.org/changeset/ports/389703
Log:
Fix du(1) completion
PR: 200768
Obtained from: ZSH upstream
Added:
head/shells/zsh/files/patch-Completion_Unix_Command___du (contents, props changed)
Modified:
head/shells/zsh/Makefile
Modified: head/shells/zsh/Makefile
==============================================================================
--- head/shells/zsh/Makefile Mon Jun 15 12:34:45 2015 (r389702)
+++ head/shells/zsh/Makefile Mon Jun 15 12:36:13 2015 (r389703)
@@ -3,7 +3,7 @@
PORTNAME= zsh
PORTVERSION= 5.0.8
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= shells
MASTER_SITES= http://www.zsh.org/pub/ \
http://www.zsh.org/pub/:doc \
Added: head/shells/zsh/files/patch-Completion_Unix_Command___du
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/shells/zsh/files/patch-Completion_Unix_Command___du Mon Jun 15 12:36:13 2015 (r389703)
@@ -0,0 +1,9 @@
+--- Completion/Unix/Command/_du.orig 2015-05-03 17:57:18 UTC
++++ Completion/Unix/Command/_du
+@@ -74,5 +74,5 @@ else
+ do
+ [[ $OSTYPE = $~pattern ]] && args+=( $arg )
+ done
+- _arguments -s -A "-*" $args
++ _arguments -s -A "-*" $args '*:file:_files'
+ fi
More information about the svn-ports-all
mailing list