auto-import changelog data from zsh-4.2.0-3.src.rpm
Mon Jul 05 2004 Jens Petersen <petersen@redhat.com> - 4.2.0-3 - source profile in zprofile rather than .zshrc (Péter Kelemen, Magnus Gustavsson, 102187,126539) - add zsh-4.2.0-jobtable-125452.patch to fix job table bug (Henrique Martins, 125452) - buildrequire tetex for texi2html (Maxim Dzumanenko, 124182)
This commit is contained in:
parent
cc7d601f66
commit
3de397a58d
5
dotzshrc
5
dotzshrc
@ -4,11 +4,6 @@
|
|||||||
# functions, options, key bindings, etc.
|
# functions, options, key bindings, etc.
|
||||||
#
|
#
|
||||||
|
|
||||||
# source profile like .bashrc
|
|
||||||
if [ -f /etc/profile ]; then
|
|
||||||
source /etc/profile
|
|
||||||
fi
|
|
||||||
|
|
||||||
autoload -U compinit
|
autoload -U compinit
|
||||||
compinit
|
compinit
|
||||||
|
|
||||||
|
@ -4,3 +4,8 @@
|
|||||||
|
|
||||||
PATH="$PATH:$HOME/bin"
|
PATH="$PATH:$HOME/bin"
|
||||||
export PATH
|
export PATH
|
||||||
|
|
||||||
|
# source profile
|
||||||
|
if [ -f /etc/profile ]; then
|
||||||
|
source /etc/profile
|
||||||
|
fi
|
||||||
|
13
zsh.spec
13
zsh.spec
@ -3,7 +3,7 @@
|
|||||||
Summary: A powerful interactive shell
|
Summary: A powerful interactive shell
|
||||||
Name: zsh
|
Name: zsh
|
||||||
Version: 4.2.0
|
Version: 4.2.0
|
||||||
Release: 2
|
Release: 3
|
||||||
License: BSD
|
License: BSD
|
||||||
URL: http://zsh.sunsite.dk/
|
URL: http://zsh.sunsite.dk/
|
||||||
Group: System Environment/Shells
|
Group: System Environment/Shells
|
||||||
@ -17,11 +17,12 @@ Source6: dotzshrc
|
|||||||
Source7: zshprompt.pl
|
Source7: zshprompt.pl
|
||||||
Patch0: zsh-serial.patch
|
Patch0: zsh-serial.patch
|
||||||
Patch1: zsh-4.0.6-make-test-fail.patch
|
Patch1: zsh-4.0.6-make-test-fail.patch
|
||||||
|
Patch2: zsh-4.2.0-jobtable-125452.patch
|
||||||
#Patch3: zsh-4.0.7-bckgrnd-bld-102042.patch
|
#Patch3: zsh-4.0.7-bckgrnd-bld-102042.patch
|
||||||
Prereq: fileutils grep /sbin/install-info
|
Prereq: fileutils grep /sbin/install-info
|
||||||
Buildroot: %{_tmppath}/%{name}-%{version}-root
|
Buildroot: %{_tmppath}/%{name}-%{version}-root
|
||||||
Requires: libcap
|
Requires: libcap
|
||||||
BuildRequires: libtermcap-devel libcap-devel texinfo
|
BuildRequires: libtermcap-devel libcap-devel texinfo tetex
|
||||||
|
|
||||||
%{?_without_check: %define _without_check 1}
|
%{?_without_check: %define _without_check 1}
|
||||||
%{!?_without_check: %define _without_check 0}
|
%{!?_without_check: %define _without_check 0}
|
||||||
@ -53,6 +54,7 @@ This package contains the Zsh manual in html format.
|
|||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1 -b .serial
|
%patch0 -p1 -b .serial
|
||||||
%patch1 -p1 -b .fail
|
%patch1 -p1 -b .fail
|
||||||
|
%patch2 -p0 -b .jobtbl
|
||||||
#%%patch3 -p0 -b .bckgrnd
|
#%%patch3 -p0 -b .bckgrnd
|
||||||
## patch3 touches zshconfig.ac
|
## patch3 touches zshconfig.ac
|
||||||
#autoconf
|
#autoconf
|
||||||
@ -140,6 +142,13 @@ fi
|
|||||||
%doc Doc/*.html
|
%doc Doc/*.html
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jul 5 2004 Jens Petersen <petersen@redhat.com> - 4.2.0-3
|
||||||
|
- source profile in zprofile rather than .zshrc (Péter Kelemen,
|
||||||
|
Magnus Gustavsson, 102187,126539)
|
||||||
|
- add zsh-4.2.0-jobtable-125452.patch to fix job table bug
|
||||||
|
(Henrique Martins, 125452)
|
||||||
|
- buildrequire tetex for texi2html (Maxim Dzumanenko, 124182)
|
||||||
|
|
||||||
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
||||||
- rebuilt
|
- rebuilt
|
||||||
|
|
||||||
|
10
zshrc.rhs
10
zshrc.rhs
@ -14,3 +14,13 @@ PROMPT='[%n@%m]%~%# ' # default prompt
|
|||||||
# bindkey -v # vi key bindings
|
# bindkey -v # vi key bindings
|
||||||
# bindkey -e # emacs key bindings
|
# bindkey -e # emacs key bindings
|
||||||
bindkey ' ' magic-space # also do history expansion on space
|
bindkey ' ' magic-space # also do history expansion on space
|
||||||
|
|
||||||
|
# from bashrc
|
||||||
|
if [ "x$SHLVL" != "x1" ]; then # We're not a login shell
|
||||||
|
for i in /etc/profile.d/*.sh; do
|
||||||
|
if [ -r "$i" ]; then
|
||||||
|
. $i
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
unset i
|
||||||
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user