|
cvsdist |
2c8e3f |
# this file is encoded in UTF-8 -*- coding: utf-8 -*-
|
|
cvsdist |
2c8e3f |
|
|
cvsdist |
b24462 |
Summary: A powerful interactive shell
|
|
cvsdist |
abdd31 |
Name: zsh
|
|
Colin Walters |
8cc3d7 |
Version: 4.2.5
|
|
Colin Walters |
8cc3d7 |
Release: 1
|
|
cvsdist |
83b6ad |
License: BSD
|
|
cvsdist |
21be85 |
URL: http://zsh.sunsite.dk/
|
|
cvsdist |
abdd31 |
Group: System Environment/Shells
|
|
cvsdist |
83b6ad |
Source0: ftp://ftp.zsh.org/pub/zsh-%{version}.tar.bz2
|
|
cvsdist |
abdd31 |
Source1: zlogin.rhs
|
|
cvsdist |
abdd31 |
Source2: zlogout.rhs
|
|
cvsdist |
abdd31 |
Source3: zprofile.rhs
|
|
cvsdist |
abdd31 |
Source4: zshrc.rhs
|
|
cvsdist |
abdd31 |
Source5: zshenv.rhs
|
|
cvsdist |
2c8e3f |
Source6: dotzshrc
|
|
cvsdist |
b24462 |
Source7: zshprompt.pl
|
|
cvsdist |
92bd44 |
Patch0: zsh-serial.patch
|
|
cvsdist |
2c8e3f |
Patch1: zsh-4.0.6-make-test-fail.patch
|
|
cvsdist |
b24462 |
#Patch3: zsh-4.0.7-bckgrnd-bld-102042.patch
|
|
cvsdist |
abdd31 |
Prereq: fileutils grep /sbin/install-info
|
|
cvsdist |
abdd31 |
Buildroot: %{_tmppath}/%{name}-%{version}-root
|
|
cvsdist |
83b6ad |
Requires: libcap
|
|
cvsdist |
3de397 |
BuildRequires: libtermcap-devel libcap-devel texinfo tetex
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
2c8e3f |
%{?_without_check: %define _without_check 1}
|
|
cvsdist |
2c8e3f |
%{!?_without_check: %define _without_check 0}
|
|
cvsdist |
2c8e3f |
|
|
cvsdist |
abdd31 |
%description
|
|
cvsdist |
abdd31 |
The zsh shell is a command interpreter usable as an interactive login
|
|
cvsdist |
abdd31 |
shell and as a shell script command processor. Zsh resembles the ksh
|
|
cvsdist |
abdd31 |
shell (the Korn shell), but includes many enhancements. Zsh supports
|
|
cvsdist |
abdd31 |
command line editing, built-in spelling correction, programmable
|
|
cvsdist |
abdd31 |
command completion, shell functions (with autoloading), a history
|
|
cvsdist |
538cfb |
mechanism, and more.
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
21be85 |
%package html
|
|
cvsdist |
21be85 |
Summary: Zsh shell manual in html format
|
|
cvsdist |
21be85 |
Group: System Environment/Shells
|
|
cvsdist |
21be85 |
|
|
cvsdist |
21be85 |
%description html
|
|
cvsdist |
21be85 |
The zsh shell is a command interpreter usable as an interactive login
|
|
cvsdist |
21be85 |
shell and as a shell script command processor. Zsh resembles the ksh
|
|
cvsdist |
21be85 |
shell (the Korn shell), but includes many enhancements. Zsh supports
|
|
cvsdist |
21be85 |
command line editing, built-in spelling correction, programmable
|
|
cvsdist |
21be85 |
command completion, shell functions (with autoloading), a history
|
|
cvsdist |
21be85 |
mechanism, and more.
|
|
cvsdist |
21be85 |
|
|
cvsdist |
21be85 |
This package contains the Zsh manual in html format.
|
|
cvsdist |
21be85 |
|
|
cvsdist |
abdd31 |
%prep
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
%setup -q
|
|
cvsdist |
92bd44 |
%patch0 -p1 -b .serial
|
|
Colin Walters |
e47366 |
#%patch1 -p1 -b .fail
|
|
cvsdist |
b24462 |
#%%patch3 -p0 -b .bckgrnd
|
|
cvsdist |
b24462 |
## patch3 touches zshconfig.ac
|
|
cvsdist |
b24462 |
#autoconf
|
|
cvsdist |
b24462 |
|
|
cvsdist |
b24462 |
cp -p %SOURCE7 .
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
%build
|
|
cvsdist |
2c8e3f |
%define _bindir /bin
|
|
cvsdist |
8075d0 |
# Avoid stripping...
|
|
cvsdist |
8075d0 |
export LDFLAGS=""
|
|
cvsdist |
21be85 |
%configure --enable-etcdir=%{_sysconfdir} --with-tcsetpgrp
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
21be85 |
make all html
|
|
cvsdist |
83b6ad |
# Run the testsuite
|
|
cvsdist |
2c8e3f |
%if ! %{_without_check}
|
|
cvsdist |
2c8e3f |
# the completion tests hang on s390 and s390x
|
|
cvsdist |
21be85 |
%ifarch s390 s390x ppc ppc64
|
|
cvsdist |
2c8e3f |
( cd Test
|
|
cvsdist |
2c8e3f |
mkdir skipped
|
|
cvsdist |
2c8e3f |
mv Y*.ztst skipped )
|
|
cvsdist |
2c8e3f |
%endif
|
|
cvsdist |
21be85 |
ZTST_verbose=0 make test
|
|
cvsdist |
2c8e3f |
%endif
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
%install
|
|
cvsdist |
abdd31 |
rm -rf $RPM_BUILD_ROOT
|
|
cvsdist |
2c8e3f |
%makeinstall install.info \
|
|
cvsdist |
2c8e3f |
fndir=$RPM_BUILD_ROOT%{_datadir}/zsh/%{version}/functions \
|
|
cvsdist |
2c8e3f |
sitefndir=$RPM_BUILD_ROOT%{_datadir}/zsh/site-functions
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
2c8e3f |
rm -f ${RPM_BUILD_ROOT}%{_bindir}/zsh-%{version}
|
|
cvsdist |
2c8e3f |
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
2c8e3f |
mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}
|
|
cvsdist |
2c8e3f |
for i in zshrc zlogin zlogout zshenv zprofile; do
|
|
Colin Walters |
e148d5 |
install -m 644 $RPM_SOURCE_DIR/${i}.rhs ${RPM_BUILD_ROOT}%{_sysconfdir}/$i
|
|
cvsdist |
abdd31 |
done
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
2c8e3f |
mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}/skel
|
|
Colin Walters |
e148d5 |
install -m 644 %{SOURCE6} ${RPM_BUILD_ROOT}%{_sysconfdir}/skel/.zshrc
|
|
cvsdist |
2c8e3f |
|
|
cvsdist |
abdd31 |
%clean
|
|
cvsdist |
abdd31 |
rm -rf $RPM_BUILD_ROOT
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
%post
|
|
cvsdist |
2c8e3f |
if [ ! -f %{_sysconfdir}/shells ] ; then
|
|
cvsdist |
2c8e3f |
echo "%{_bindir}/zsh" > %{_sysconfdir}/shells
|
|
cvsdist |
abdd31 |
else
|
|
cvsdist |
2c8e3f |
grep -q "^%{_bindir}/zsh$" %{_sysconfdir}/shells || echo "%{_bindir}/zsh" >> %{_sysconfdir}/shells
|
|
cvsdist |
abdd31 |
fi
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
/sbin/install-info %{_infodir}/zsh.info.gz %{_infodir}/dir \
|
|
cvsdist |
abdd31 |
--entry="* zsh: (zsh). An enhanced bourne shell."
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
%preun
|
|
cvsdist |
abdd31 |
if [ "$1" = 0 ] ; then
|
|
cvsdist |
abdd31 |
/sbin/install-info --delete %{_infodir}/zsh.info.gz %{_infodir}/dir \
|
|
cvsdist |
abdd31 |
--entry="* zsh: (zsh). An enhanced bourne shell."
|
|
cvsdist |
abdd31 |
fi
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
%postun
|
|
cvsdist |
abdd31 |
if [ "$1" = 0 ] ; then
|
|
cvsdist |
2c8e3f |
if [ -f %{_sysconfdir}/shells ] ; then
|
|
cvsdist |
2c8e3f |
TmpFile=`%{_bindir}/mktemp /tmp/.zshrpmXXXXXX`
|
|
cvsdist |
2c8e3f |
grep -v '^%{_bindir}/zsh$' %{_sysconfdir}/shells > $TmpFile
|
|
cvsdist |
2c8e3f |
cp -f $TmpFile %{_sysconfdir}/shells
|
|
cvsdist |
abdd31 |
rm -f $TmpFile
|
|
cvsdist |
2c8e3f |
chmod 644 %{_sysconfdir}/shells
|
|
cvsdist |
abdd31 |
fi
|
|
cvsdist |
abdd31 |
fi
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
%files
|
|
cvsdist |
abdd31 |
%defattr(-,root,root)
|
|
Colin Walters |
e47366 |
%doc README LICENCE Etc/BUGS Etc/CONTRIBUTORS Etc/FAQ FEATURES MACHINES
|
|
Colin Walters |
e47366 |
%doc NEWS Etc/zsh-development-guide Etc/completion-style-guide zshprompt.pl
|
|
cvsdist |
2c8e3f |
%attr(755,root,root) %{_bindir}/zsh
|
|
cvsdist |
abdd31 |
%{_mandir}/*/*
|
|
cvsdist |
abdd31 |
%{_infodir}/*
|
|
cvsdist |
83b6ad |
%{_datadir}/zsh
|
|
cvsdist |
2c8e3f |
%{_libdir}/zsh
|
|
cvsdist |
2c8e3f |
%config(noreplace) %{_sysconfdir}/*
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
21be85 |
%files html
|
|
cvsdist |
21be85 |
%defattr(-,root,root)
|
|
Colin Walters |
8cc3d7 |
%doc Doc/zsh/*.html
|
|
cvsdist |
21be85 |
|
|
cvsdist |
abdd31 |
%changelog
|
|
Colin Walters |
8cc3d7 |
* Mon Mar 14 2005 Colin Walters <walters@redhat.com> - 4.2.5-1
|
|
Colin Walters |
8cc3d7 |
- New upstream version
|
|
Colin Walters |
8cc3d7 |
- Fix Doc html includes; looks like texinfo changed incompatibly
|
|
Colin Walters |
8cc3d7 |
|
|
Colin Walters |
8cc3d7 |
* Mon Mar 14 2005 Colin Walters <walters@redhat.com> - 4.2.1-3
|
|
Colin Walters |
adadc0 |
- Rebuild for GCC4
|
|
Colin Walters |
adadc0 |
|
|
Colin Walters |
e148d5 |
* Sun Jan 16 2005 Colin Walters <walters@redhat.com> - 4.2.1-2
|
|
Colin Walters |
e148d5 |
- Install config files using install instead of cp, with mode 644
|
|
Colin Walters |
e148d5 |
|
|
Colin Walters |
e47366 |
* Mon Jan 03 2005 Colin Walters <walters@redhat.com> - 4.2.1-1
|
|
Colin Walters |
e47366 |
- New upstream version 4.2.1
|
|
Colin Walters |
e47366 |
- FEATURES, MACHINES, and NEWS moved to toplevel dir
|
|
Colin Walters |
e47366 |
- Update zsh-4.0.6-make-test-fail.patch, but do not apply it for now
|
|
Colin Walters |
e47366 |
- Remove upstreamed zsh-4.2.0-jobtable-125452.patch
|
|
Colin Walters |
e47366 |
|
|
cvsdist |
3de397 |
* Mon Jul 5 2004 Jens Petersen <petersen@redhat.com> - 4.2.0-3
|
|
cvsdist |
3de397 |
- source profile in zprofile rather than .zshrc (Péter Kelemen,
|
|
cvsdist |
3de397 |
Magnus Gustavsson, 102187,126539)
|
|
cvsdist |
3de397 |
- add zsh-4.2.0-jobtable-125452.patch to fix job table bug
|
|
cvsdist |
3de397 |
(Henrique Martins, 125452)
|
|
cvsdist |
3de397 |
- buildrequire tetex for texi2html (Maxim Dzumanenko, 124182)
|
|
cvsdist |
3de397 |
|
|
cvsdist |
cc7d60 |
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
cvsdist |
cc7d60 |
- rebuilt
|
|
cvsdist |
cc7d60 |
|
|
cvsdist |
b24462 |
* Sat Apr 10 2004 Jens Petersen <petersen@redhat.com> - 4.2.0-1
|
|
cvsdist |
b24462 |
- update to 4.2.0 stable release
|
|
cvsdist |
b24462 |
- zsh-4.0.7-bckgrnd-bld-102042.patch no longer needed
|
|
cvsdist |
b24462 |
- add compinit and various commented config improvements to .zshrc
|
|
cvsdist |
b24462 |
(Eric Hattemer,#114887)
|
|
cvsdist |
b24462 |
- include zshprompt.pl in doc dir (Eric Hattemer)
|
|
cvsdist |
b24462 |
- drop setenv function from zshrc
|
|
cvsdist |
b24462 |
|
|
cvsdist |
548748 |
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
cvsdist |
548748 |
- rebuilt
|
|
cvsdist |
548748 |
|
|
cvsdist |
548748 |
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
cvsdist |
548748 |
- rebuilt
|
|
cvsdist |
548748 |
|
|
cvsdist |
21be85 |
* Tue Jan 13 2004 Jens Petersen <petersen@redhat.com> - 4.0.9-1
|
|
cvsdist |
21be85 |
- update to 4.0.9 release
|
|
cvsdist |
21be85 |
- zsh-4.0.7-completion-_files-110852.patch no longer needed
|
|
cvsdist |
21be85 |
- update zsh-4.0.7-bckgrnd-bld-102042.patch to better one with --with-tcsetpgrp
|
|
cvsdist |
21be85 |
configure option by Philippe Troin
|
|
cvsdist |
21be85 |
- configure --with-tcsetpgrp
|
|
cvsdist |
21be85 |
- buildrequire texinfo for makeinfo
|
|
cvsdist |
b24462 |
- fix ownership of html manual (Florian La Roche, #112749)
|
|
cvsdist |
21be85 |
|
|
cvsdist |
21be85 |
* Tue Dec 9 2003 Jens Petersen <petersen@redhat.com> - 4.0.7-3
|
|
cvsdist |
21be85 |
- no longer "stty erase" in /etc/zshrc for screen [Lon Hohberger]
|
|
cvsdist |
21be85 |
|
|
cvsdist |
21be85 |
* Thu Nov 27 2003 Jens Petersen <petersen@redhat.com> - 4.0.7-2
|
|
cvsdist |
21be85 |
- quote %% in file glob'ing completion code (#110852)
|
|
cvsdist |
21be85 |
[reported with patch by Keith T. Garner]
|
|
cvsdist |
21be85 |
- add zsh-4.0.7-bckgrnd-bld-102042.patch from Philippe Troin to allow
|
|
cvsdist |
21be85 |
configure to run in the background (#102042) [reported by Michael Redinger]
|
|
cvsdist |
21be85 |
- above patch requires autoconf to be run
|
|
cvsdist |
21be85 |
- include html manual in separate -html subpackage
|
|
cvsdist |
21be85 |
- changed url to master site
|
|
cvsdist |
21be85 |
- skip completion tests on ppc and ppc64 for now, since they hang
|
|
cvsdist |
21be85 |
|
|
cvsdist |
373df7 |
* Fri Jun 20 2003 Jens Petersen <petersen@redhat.com> - 4.0.7-1
|
|
cvsdist |
373df7 |
- update to 4.0.7 bugfix release
|
|
cvsdist |
373df7 |
|
|
cvsdist |
373df7 |
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
cvsdist |
373df7 |
- rebuilt
|
|
cvsdist |
373df7 |
|
|
cvsdist |
373df7 |
* Thu May 1 2003 Jens Petersen <petersen@redhat.com> - 4.0.6-7
|
|
cvsdist |
373df7 |
- don't set stty erase in a dumb terminal with tput kbs in /etc/zshrc (#89856)
|
|
cvsdist |
373df7 |
[reported by Ben Liblit]
|
|
cvsdist |
373df7 |
- make default prompt more informative, like bash
|
|
cvsdist |
373df7 |
|
|
cvsdist |
2c8e3f |
* Mon Feb 10 2003 Jens Petersen <petersen@redhat.com> - 4.0.6-5
|
|
cvsdist |
2c8e3f |
- skip completion tests on s390 and s390x since they hang
|
|
cvsdist |
2c8e3f |
|
|
cvsdist |
2c8e3f |
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
|
cvsdist |
2c8e3f |
- rebuilt
|
|
cvsdist |
2c8e3f |
|
|
cvsdist |
2c8e3f |
* Wed Dec 25 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
cvsdist |
2c8e3f |
- fix adding zsh to /etc/shells
|
|
cvsdist |
2c8e3f |
|
|
cvsdist |
2c8e3f |
* Fri Nov 29 2002 Florian La Roche <Florian.LaRoche@redhat.de> 4.0.6-2
|
|
cvsdist |
2c8e3f |
- make sure /bin/zsh is owned by root and not bhcompile
|
|
cvsdist |
2c8e3f |
- do not package zsh-%{version} into binary rpm
|
|
cvsdist |
2c8e3f |
|
|
cvsdist |
2c8e3f |
* Thu Nov 28 2002 Jens Petersen <petersen@redhat.com> 4.0.6-1
|
|
cvsdist |
2c8e3f |
- define _bindir to be /bin and use it
|
|
cvsdist |
2c8e3f |
- use _sysconfdir and _libdir
|
|
cvsdist |
2c8e3f |
|
|
cvsdist |
2c8e3f |
* Mon Nov 25 2002 Jens Petersen <petersen@redhat.com>
|
|
cvsdist |
2c8e3f |
- 4.0.6
|
|
cvsdist |
2c8e3f |
- add url
|
|
cvsdist |
2c8e3f |
- add --without check build option
|
|
cvsdist |
2c8e3f |
- don't autoconf
|
|
cvsdist |
2c8e3f |
- make "make test" failure not go ignored
|
|
cvsdist |
2c8e3f |
- move sourcing of profile from zshenv to new .zshrc file for now (#65509)
|
|
cvsdist |
2c8e3f |
- preserve dates when installing rc files
|
|
cvsdist |
2c8e3f |
|
|
cvsdist |
2c8e3f |
* Fri Nov 15 2002 Jens Petersen <petersen@redhat.com>
|
|
cvsdist |
2c8e3f |
- setup backspace better with tput in zshrc to please screen (#77833)
|
|
cvsdist |
2c8e3f |
- encode spec file in utf-8
|
|
cvsdist |
2c8e3f |
|
|
cvsdist |
2c8e3f |
* Fri Jun 28 2002 Trond Eivind Glomsrød <teg@redhat.com> 4.0.4-8
|
|
cvsdist |
92bd44 |
- Make it work with a serial port (#56353)
|
|
cvsdist |
92bd44 |
- Add $HOME/bin to path for login shells (#67110)
|
|
cvsdist |
92bd44 |
|
|
cvsdist |
4e02ad |
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
|
cvsdist |
4e02ad |
- automated rebuild
|
|
cvsdist |
4e02ad |
|
|
cvsdist |
4e02ad |
* Thu May 23 2002 Tim Powers <timp@redhat.com>
|
|
cvsdist |
4e02ad |
- automated rebuild
|
|
cvsdist |
4e02ad |
|
|
cvsdist |
2c8e3f |
* Fri Apr 5 2002 Trond Eivind Glomsrød <teg@redhat.com> 4.0.4-5
|
|
cvsdist |
cf11e4 |
- Source /etc/profile from /etc/zshenv instead of /etc/zprofile,
|
|
cvsdist |
cf11e4 |
to run things the same way bash do (#62788)
|
|
cvsdist |
cf11e4 |
|
|
cvsdist |
2c8e3f |
* Tue Apr 2 2002 Trond Eivind Glomsrød <teg@redhat.com> 4.0.4-4
|
|
cvsdist |
8075d0 |
- Explicitly specify blank LDFLAGS to avoid autoconf thinking it
|
|
cvsdist |
8075d0 |
should strip when linking
|
|
cvsdist |
8075d0 |
|
|
cvsdist |
2c8e3f |
* Thu Feb 21 2002 Trond Eivind Glomsrød <teg@redhat.com> 4.0.4-3
|
|
cvsdist |
8075d0 |
- Rebuild
|
|
cvsdist |
8075d0 |
|
|
cvsdist |
8075d0 |
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
|
cvsdist |
8075d0 |
- automated rebuild
|
|
cvsdist |
8075d0 |
|
|
cvsdist |
2c8e3f |
* Fri Oct 26 2001 Trond Eivind Glomsrød <teg@redhat.com> 4.0.4-1
|
|
cvsdist |
8075d0 |
- 4.0.4
|
|
cvsdist |
8075d0 |
- Don't force emacs keybindings, they're the default (#55102)
|
|
cvsdist |
8075d0 |
|
|
cvsdist |
2c8e3f |
* Wed Oct 24 2001 Trond Eivind Glomsrød <teg@redhat.com> 4.0.3-1
|
|
cvsdist |
8075d0 |
- 4.0.3
|
|
cvsdist |
8075d0 |
|
|
cvsdist |
2c8e3f |
* Mon Jul 30 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
|
cvsdist |
538cfb |
- Fix typo in comment in zshrc (#50214)
|
|
cvsdist |
538cfb |
- Don't set environment variables in /etc/zshrc (#50308)
|
|
cvsdist |
538cfb |
|
|
cvsdist |
2c8e3f |
* Tue Jun 26 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
|
cvsdist |
83b6ad |
- 4.0.2
|
|
cvsdist |
83b6ad |
- Run the testsuite during build
|
|
cvsdist |
83b6ad |
|
|
cvsdist |
2c8e3f |
* Wed Jun 20 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
|
cvsdist |
83b6ad |
- Add libtermcap-devel and libcap-devel to buildrequires
|
|
cvsdist |
83b6ad |
|
|
cvsdist |
2c8e3f |
* Fri Jun 1 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
|
cvsdist |
83b6ad |
- 4.0.1
|
|
cvsdist |
83b6ad |
|
|
cvsdist |
2c8e3f |
* Thu May 17 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
|
cvsdist |
83b6ad |
- 4.0.1pre4
|
|
cvsdist |
83b6ad |
- zsh is now available in bz2 - use it
|
|
cvsdist |
83b6ad |
|
|
cvsdist |
2c8e3f |
* Mon Apr 9 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
|
cvsdist |
83b6ad |
- 4.0.1pre3
|
|
cvsdist |
83b6ad |
- remove the dir file from the info directory
|
|
cvsdist |
83b6ad |
|
|
cvsdist |
2c8e3f |
* Wed Mar 21 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
|
cvsdist |
83b6ad |
- Remove contents from /etc/zshenv file - no reason to duplicate things
|
|
cvsdist |
83b6ad |
from /etc/profile, which is sourced from /etc/zprofile (#32478)
|
|
cvsdist |
83b6ad |
|
|
cvsdist |
2c8e3f |
* Thu Mar 15 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
|
cvsdist |
83b6ad |
- 4.0.1pre2
|
|
cvsdist |
83b6ad |
- remove some obsolete code in /etc/zprofile
|
|
cvsdist |
83b6ad |
|
|
cvsdist |
2ae952 |
* Tue Feb 27 2001 Preston Brown <pbrown@redhat.com>
|
|
cvsdist |
2ae952 |
- noreplace config files.
|
|
cvsdist |
2ae952 |
|
|
cvsdist |
2c8e3f |
* Thu Feb 15 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
|
cvsdist |
2ae952 |
- Handle RLIMIT_LOCKS in 2.4 (#27834 - patch from H.J. Lu)
|
|
cvsdist |
2ae952 |
|
|
cvsdist |
2c8e3f |
* Mon Jan 08 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
|
cvsdist |
2ae952 |
- rebuild to fix #23568 (empty signal list)
|
|
cvsdist |
2ae952 |
|
|
cvsdist |
2c8e3f |
* Tue Nov 28 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
|
cvsdist |
2ae952 |
- fix the post script, so we only have only line for zsh
|
|
cvsdist |
2ae952 |
and can remove the trigger
|
|
cvsdist |
2ae952 |
- get rid of some instances of "/usr/local/bin/zsh"
|
|
cvsdist |
2ae952 |
|
|
cvsdist |
28318b |
* Mon Nov 20 2000 Bill Nottingham <notting@redhat.com>
|
|
cvsdist |
28318b |
- fix ia64 build
|
|
cvsdist |
28318b |
|
|
cvsdist |
abdd31 |
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
|
|
cvsdist |
abdd31 |
- automatic rebuild
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
2c8e3f |
* Sun Jul 02 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
|
cvsdist |
abdd31 |
- rebuild
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
2c8e3f |
* Tue Jun 06 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
|
cvsdist |
abdd31 |
- 3.0.8
|
|
cvsdist |
abdd31 |
- use %%configure and %%makeinstall
|
|
cvsdist |
abdd31 |
- updated URL
|
|
cvsdist |
abdd31 |
- disable old patches
|
|
cvsdist |
abdd31 |
- add better patch for texi source
|
|
cvsdist |
abdd31 |
- use %%{_mandir} and %%{_infodir}
|
|
cvsdist |
abdd31 |
- use %%{_tmppath}
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
2c8e3f |
* Tue May 02 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
|
cvsdist |
abdd31 |
- patched to recognize export in .zshrc (bug #11169)
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Tue Mar 7 2000 Jeff Johnson <jbj@redhat.com>
|
|
cvsdist |
abdd31 |
- rebuild for sparc baud rates > 38400.
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Fri Mar 03 2000 Cristian Gafton <gafton@redhat.com>
|
|
cvsdist |
abdd31 |
- fix postun script so that we don't remove ourselves on every update
|
|
cvsdist |
abdd31 |
doh...
|
|
cvsdist |
abdd31 |
- add a trigger to fix old versions of the package
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com>
|
|
cvsdist |
abdd31 |
- rebuild to fix dependencies
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Thu Jan 13 2000 Jeff Johnson <jbj@redhat.com>
|
|
cvsdist |
abdd31 |
- update to 3.0.7.
|
|
cvsdist |
abdd31 |
- source /etc/profile so that USER gets set correctly (#5655).
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Fri Sep 24 1999 Michael K. Johnson <johnsonm@redhat.com>
|
|
cvsdist |
abdd31 |
- source /etc/profile.d/*.sh in zprofile
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Tue Sep 07 1999 Cristian Gafton <gafton@redhat.com>
|
|
cvsdist |
abdd31 |
- fix zshenv and zprofile scripts - foxed versions from HJLu.
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Thu Jul 29 1999 Bill Nottingham <notting@redhat.com>
|
|
cvsdist |
abdd31 |
- clean up init files some. (#4055)
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Tue May 18 1999 Jeff Johnson <jbj@redhat.com>
|
|
cvsdist |
abdd31 |
- Make sure that env variable TmpFile is evaluated. (#2898)
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Sun May 9 1999 Jeff Johnson <jbj@redhat.com>
|
|
cvsdist |
abdd31 |
- fix select timeval initialization (#2688).
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
|
|
cvsdist |
abdd31 |
- auto rebuild in the new build environment (release 10)
|
|
cvsdist |
abdd31 |
- fix the texi source
|
|
cvsdist |
abdd31 |
- patch to detect & link against nsl
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Wed Mar 10 1999 Cristian Gafton <gafton@redhat.com>
|
|
cvsdist |
abdd31 |
- use mktemp to handle temporary files.
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Thu Feb 11 1999 Michael Maher <mike@redhat.com>
|
|
cvsdist |
abdd31 |
- fixed bug #365
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Thu Dec 17 1998 Cristian Gafton <gafton@redhat.com>
|
|
cvsdist |
abdd31 |
- build for glibc 2.1
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Thu Sep 10 1998 Jeff Johnson <jbj@redhat.com>
|
|
cvsdist |
abdd31 |
- compile for 5.2
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Sat Jun 06 1998 Prospector System <bugs@redhat.com>
|
|
cvsdist |
abdd31 |
- translations modified for de
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Sat Jun 6 1998 Jeff Johnson <jbj@redhat.com>
|
|
cvsdist |
abdd31 |
- Eliminate incorrect info page removal.
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Fri May 08 1998 Prospector System <bugs@redhat.com>
|
|
cvsdist |
abdd31 |
- translations modified for de, fr, tr
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Sat Apr 11 1998 Cristian Gafton <gafton@redhat.com>
|
|
cvsdist |
abdd31 |
- manhattan build
|
|
cvsdist |
abdd31 |
- moved profile.d handling from zshrc to zprofile
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Wed Oct 21 1997 Cristian Gafton <gafton@redhat.com>
|
|
cvsdist |
abdd31 |
- Upgraded to 3.0.5
|
|
cvsdist |
abdd31 |
- Install-info handling
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Thu Jul 31 1997 Erik Troan <ewt@redhat.com>
|
|
cvsdist |
abdd31 |
- built against glibc
|
|
cvsdist |
abdd31 |
|
|
cvsdist |
abdd31 |
* Thu Apr 10 1997 Michael Fulbright <msf@redhat.com>
|
|
cvsdist |
abdd31 |
- Upgraded to 3.0.2
|
|
cvsdist |
abdd31 |
- Added 'reasonable' default startup files in /etc
|