From 79c51f47000159352a6f7abecd7255b1e77de197 Mon Sep 17 00:00:00 2001 From: Tilman Sauerbeck Date: Tue, 9 Dec 2008 21:18:57 +0100 Subject: [PATCH] zsh: removed pkg{add,rm,info} completion files. They break completion for CRUX' pkgutils, so we remove them for now. This fixes bug #381. --- zsh/.footprint | 3 --- zsh/Pkgfile | 6 +++++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/zsh/.footprint b/zsh/.footprint index ba874e9c1..e67c895ef 100644 --- a/zsh/.footprint +++ b/zsh/.footprint @@ -446,9 +446,6 @@ drwxr-xr-x root/root usr/share/zsh/4.3.9/functions/Completion/Unix/ -rw-r--r-- root/root usr/share/zsh/4.3.9/functions/Completion/Unix/_ping -rw-r--r-- root/root usr/share/zsh/4.3.9/functions/Completion/Unix/_pkg-config -rw-r--r-- root/root usr/share/zsh/4.3.9/functions/Completion/Unix/_pkg_instance --rw-r--r-- root/root usr/share/zsh/4.3.9/functions/Completion/Unix/_pkgadd --rw-r--r-- root/root usr/share/zsh/4.3.9/functions/Completion/Unix/_pkginfo --rw-r--r-- root/root usr/share/zsh/4.3.9/functions/Completion/Unix/_pkgrm -rw-r--r-- root/root usr/share/zsh/4.3.9/functions/Completion/Unix/_pon -rw-r--r-- root/root usr/share/zsh/4.3.9/functions/Completion/Unix/_ports -rw-r--r-- root/root usr/share/zsh/4.3.9/functions/Completion/Unix/_postfix diff --git a/zsh/Pkgfile b/zsh/Pkgfile index d3c916b5f..f449b150d 100644 --- a/zsh/Pkgfile +++ b/zsh/Pkgfile @@ -6,7 +6,7 @@ name=zsh version=4.3.9 -release=1 +release=2 source=(http://www.zsh.org/pub/$name-$version.tar.bz2 \ http://www.grml.org/zsh/zsh-lovers.1) @@ -34,4 +34,8 @@ build() { make DESTDIR=$PKG install install -m 644 $SRC/zsh-lovers.1 $PKG/usr/man/man1/ + + # These completion files break things for CRUX' pkgutils, + # so remove them for now (see bug #381). + rm $PKG/usr/share/zsh/$version/functions/Completion/Unix/_pkg{add,rm,info} }