- Fix custom completion support via /etc/zsh_completion.d
- Add trim-unneeded-completions.patch to remove unneeded completions when building for openSUSE OBS-URL: https://build.opensuse.org/package/show/shells/zsh?expand=0&rev=117
This commit is contained in:
parent
5659994e95
commit
9918aee7eb
13
trim-unneeded-completions.patch
Normal file
13
trim-unneeded-completions.patch
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
Index: zsh-5.0.2/Src/Zle/complete.mdd
|
||||||
|
===================================================================
|
||||||
|
--- zsh-5.0.2.orig/Src/Zle/complete.mdd
|
||||||
|
+++ zsh-5.0.2/Src/Zle/complete.mdd
|
||||||
|
@@ -1,7 +1,7 @@
|
||||||
|
name=zsh/complete
|
||||||
|
link=either
|
||||||
|
load=yes
|
||||||
|
-functions='Completion/*comp* Completion/AIX/*/* Completion/BSD/*/* Completion/Base/*/* Completion/Cygwin/*/* Completion/Darwin/*/* Completion/Debian/*/* Completion/Linux/*/* Completion/Mandriva/*/* Completion/Redhat/*/* Completion/Solaris/*/* Completion/openSUSE/*/* Completion/Unix/*/* Completion/X/*/* Completion/Zsh/*/*'
|
||||||
|
+functions='Completion/*comp* Completion/Base/*/* Completion/Linux/*/* Completion/openSUSE/*/* Completion/Unix/*/* Completion/X/*/* Completion/Zsh/*/*'
|
||||||
|
|
||||||
|
moddeps="zsh/zle"
|
||||||
|
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 21 10:17:56 UTC 2013 - idonmez@suse.com
|
||||||
|
|
||||||
|
- Fix custom completion support via /etc/zsh_completion.d
|
||||||
|
- Add trim-unneeded-completions.patch to remove unneeded completions
|
||||||
|
when building for openSUSE
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jan 27 20:53:10 UTC 2013 - dmitry_r@opensuse.org
|
Sun Jan 27 20:53:10 UTC 2013 - dmitry_r@opensuse.org
|
||||||
|
|
||||||
|
9
zsh.spec
9
zsh.spec
@ -38,6 +38,7 @@ Source17: zshprompt.pl
|
|||||||
%endif
|
%endif
|
||||||
Patch1: zsh-zypper-completion.patch
|
Patch1: zsh-zypper-completion.patch
|
||||||
Patch2: zsh-osc-suseversion.patch
|
Patch2: zsh-osc-suseversion.patch
|
||||||
|
Patch3: trim-unneeded-completions.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0%{?suse_version}
|
%if 0%{?suse_version}
|
||||||
Requires(pre): %{install_info_prereq}
|
Requires(pre): %{install_info_prereq}
|
||||||
@ -95,6 +96,9 @@ This package contains the Zsh manual in html format.
|
|||||||
%setup -q -n %{name}-%{version}
|
%setup -q -n %{name}-%{version}
|
||||||
%patch1 -p1
|
%patch1 -p1
|
||||||
%patch2 -p1
|
%patch2 -p1
|
||||||
|
%if 0%{?suse_version}
|
||||||
|
%patch3 -p1
|
||||||
|
%endif
|
||||||
|
|
||||||
# Remove executable bit
|
# Remove executable bit
|
||||||
chmod 0644 Etc/changelog2html.pl
|
chmod 0644 Etc/changelog2html.pl
|
||||||
@ -111,8 +115,9 @@ perl -p -i -e 's|/usr/local/bin|%{_bindir}|' \
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
%configure \
|
%configure \
|
||||||
--enable-site-scriptdir=%{_datadir}/%{name}/site/scripts/ \
|
--enable-fndir=%{_datadir}/%{name}/${version}/functions \
|
||||||
--enable-site-fndir=%{_datadir}/%{name}/site/scripts/ \
|
--enable-site-fndir=%{_datadir}/%{name}/site-functions \
|
||||||
|
--enable-function-subdirs \
|
||||||
--enable-maildir-support \
|
--enable-maildir-support \
|
||||||
--with-tcsetpgrp \
|
--with-tcsetpgrp \
|
||||||
--enable-cap \
|
--enable-cap \
|
||||||
|
4
zshrc
4
zshrc
@ -3,9 +3,7 @@
|
|||||||
source /etc/bash.bashrc
|
source /etc/bash.bashrc
|
||||||
|
|
||||||
# Custom completion support via /etc/zsh_completion.d
|
# Custom completion support via /etc/zsh_completion.d
|
||||||
for i in /etc/zsh_completion.d/*(N); do
|
fpath=( $fpath /etc/zsh_completion.d )
|
||||||
test -r $i && . $i
|
|
||||||
done
|
|
||||||
|
|
||||||
# zsh line editing
|
# zsh line editing
|
||||||
: ${ZSHEDIT:="emacs"}
|
: ${ZSHEDIT:="emacs"}
|
||||||
|
Loading…
Reference in New Issue
Block a user