Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 15 Jun 2015 12:36:14 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r389703 - in head/shells/zsh: . files
Message-ID:  <201506151236.t5FCaE3b011106@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506151236.t5FCaE3b011106>