File zsh.spec of Package zsh
#
# spec file for package zsh
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: zsh
Version: 5.0.5
Release: 1.1
Summary: Shell with comprehensive completion
License: MIT
Group: System/Shells
Url: http://www.zsh.org
Source0: http://sourceforge.net/projects/zsh/files/zsh/%{version}/zsh-%{version}.tar.bz2
Source1: zshrc
Source2: zshenv
Source3: zprofile
%if 0%{?rhel_version} || 0%{?centos_version} || 0%{?fedora_version}
Source11: zlogin.rhs
Source12: zlogout.rhs
Source13: zprofile.rhs
Source14: zshrc.rhs
Source15: zshenv.rhs
Source16: dotzshrc.rh
Source17: zshprompt.pl
%endif
Patch1: trim-unneeded-completions.patch
Patch2: zsh-update-zypper-completion.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version}
Requires(pre): %{install_info_prereq}
%if 0%{?suse_version} >= 1110
BuildRequires: fdupes
BuildRequires: yodl
%endif
%if 0%{?suse_version} >= 1210
BuildRequires: groff
BuildRequires: makeinfo
BuildRequires: texinfo
%endif
%else
Requires(pre): /sbin/install-info
Requires(pre): fileutils
Requires(pre): grep
%endif
BuildRequires: libcap-devel
BuildRequires: ncurses-devel
BuildRequires: pcre-devel
%if 0%{?rhel_version} || 0%{?centos_version} || 0%{?fedora_version}
BuildRequires: libtermcap-devel
BuildRequires: tetex
BuildRequires: texi2html
BuildRequires: texinfo
%endif
%description
Zsh is a UNIX command interpreter (shell) that resembles the Korn shell
(ksh). It is not completely compatible. It includes many enhancements,
notably in the command-line editor, options for customizing its
behavior, file name globbing, features to make C-shell (csh) users feel
at home, and extra features drawn from tcsh (another `custom' shell).
Zsh is well known for its command line completion.
%package htmldoc
Summary: Zsh shell manual in html format
Group: System/Shells
Provides: %{name}-html = %{version}
Obsoletes: %{name}-html < %{version}
%description htmldoc
The zsh shell is a command interpreter usable as an interactive login
shell and as a shell script command processor. Zsh resembles the ksh
shell (the Korn shell), but includes many enhancements. Zsh supports
command line editing, built-in spelling correction, programmable
command completion, shell functions (with autoloading), a history
mechanism, and more.
This package contains the Zsh manual in html format.
%prep
%setup -q -n %{name}-%{version}
%if 0%{?suse_version}
%patch1 -p1
%patch2 -p1
%endif
# Remove executable bit
chmod 0644 Etc/changelog2html.pl
%if 0%{?rhel_version} || 0%{?centos_version} || 0%{?fedora_version}
cp -p %{SOURCE17} .
%endif
# Fix bindir path in some files
perl -p -i -e 's|/usr/local/bin|%{_bindir}|' \
Doc/intro.ms Misc/globtests.ksh Misc/globtests \
Misc/lete2ctl Util/check_exports Util/helpfiles \
Util/reporter
%build
%configure \
--enable-fndir=%{_datadir}/%{name}/${version}/functions \
--enable-site-fndir=%{_datadir}/%{name}/site-functions \
--enable-function-subdirs \
--enable-maildir-support \
--with-tcsetpgrp \
--enable-cap \
--enable-multibyte \
--enable-pcre \
--with-term-lib="ncursesw" \
--enable-cflags="%{optflags} %(ncursesw6-config --cflags)" \
--enable-ldflags="%(ncursesw6-config --libs)"
make all info html
# generate intro.ps
groff -Tps -ms Doc/intro.ms > intro.ps
# better name for html documentation
install -d -m 0755 Doc/htmldoc/
mv Doc/*.html Doc/htmldoc
# remove some unwanted files in Etc/
rm -f Etc/Makefile* Etc/*.yo
# FATE#316521
mv Completion/openSUSE/Command/_SuSEconfig Completion/openSUSE/Command/_SUSEconfig
sed -i s,_SuSEconfig,_SUSEconfig, Completion/openSUSE/Command/.distfiles
%install
%if 0%{?rhel_version} || 0%{?centos_version} || 0%{?fedora_version}
rm -rf %{buildroot}
%endif
%if 0%{?suse_version}
%makeinstall install.info
%else
make DESTDIR=%{buildroot} install install.info
%endif
install -m 0755 -Dd %{buildroot}/{etc,bin}
%if 0%{?suse_version}
# install SUSE configuration
install -m 0644 %{SOURCE1} %{SOURCE2} %{SOURCE3} %{buildroot}%{_sysconfdir}
# Create custom completion directory
mkdir %{buildroot}%{_sysconfdir}/zsh_completion.d
%endif
%if 0%{?rhel_version} || 0%{?centos_version} || 0%{?fedora_version}
# install RHEL || CentOS || Fedora configuration
for i in zlogin zlogout zprofile zshrc zshenv; do
install -m 0644 $RPM_SOURCE_DIR/${i}.rhs %{buildroot}%{_sysconfdir}/$i
install -D -m 0644 %{SOURCE16} %{buildroot}%{_sysconfdir}/skel/.zshrc
done
%endif
# install help files
install -m 0755 -Dd %{buildroot}%{_datadir}/%{name}/%{version}/help
install -m 0644 Doc/help/* %{buildroot}%{_datadir}/%{name}/%{version}/help/
# link zsh binary
ln -sf %{_bindir}/zsh %{buildroot}/bin/zsh
# Remove versioned zsh binary
rm -f %{buildroot}%{_bindir}/zsh-*
%if 0%{?suse_version} >= 1110
%fdupes %{buildroot}
%endif
%check
%if ! 0%{?qemu_user_space_build}
%if 0%{?suse_version}
make check
%else
# FixMe: sometimes failing Test
#+ fn:echo:2: write error: broken pipe
#+ fn:2: write error: inappropriate ioctl for device
mv Test/E01options.ztst Test/E01options.ztst.mvd
%ifarch s390 s390x ppc ppc64
( cd Test
mkdir skipped
mv Y*.ztst skipped )
%endif
ZTST_verbose=0 make test
%endif
%endif
%preun
%if 0%{?suse_version}
:
%else
if [ "$1" = 0 ] ; then
/sbin/install-info --delete %{_infodir}/zsh.info.gz %{_infodir}/dir \
--entry="* zsh: (zsh). An enhanced bourne shell."
fi
%endif
%post
%if 0%{?suse_version}
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
%else
if [ ! -f %{_sysconfdir}/shells ]; then
echo "%{_bindir}/zsh" > %{_sysconfdir}/shells
else
grep -q "^%{_bindir}/zsh$" %{_sysconfdir}/shells || echo "%{_bindir}/zsh" >> %{_sysconfdir}/shells
fi
/sbin/install-info %{_infodir}/zsh.info.gz %{_infodir}/dir \
--entry="* zsh: (zsh). An enhanced bourne shell."
%endif
%postun
%if 0%{?suse_version}
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
%else
if [ "$1" = 0 ] ; then
if [ -f %{_sysconfdir}/shells ] ; then
TmpFile=`%{_bindir}/mktemp /tmp/.zshrpmXXXXXX`
grep -v '^%{_bindir}/zsh$' %{_sysconfdir}/shells > $TmpFile
cp -f $TmpFile %{_sysconfdir}/shells
rm -f $TmpFile
chmod 644 %{_sysconfdir}/shells
fi
fi
%endif
%files
%defattr(-,root,root)
%doc ChangeLog FEATURES LICENCE MACHINES META-FAQ NEWS README
%doc Etc/* intro.ps Misc/compctl-examples
%config(noreplace) %{_sysconfdir}/zshrc
%config(noreplace) %{_sysconfdir}/zshenv
%config(noreplace) %{_sysconfdir}/zprofile
%if 0%{?rhel_version} || 0%{?centos_version} || 0%{?fedora_version}
%config(noreplace) %{_sysconfdir}/zlogin
%config(noreplace) %{_sysconfdir}/zlogout
%config(noreplace) %{_sysconfdir}/skel/.zshrc
%endif
%if 0%{?suse_version}
%dir %{_sysconfdir}/zsh_completion.d
%endif
%{_bindir}/zsh
/bin/zsh
%{_libdir}/zsh/
%{_datadir}/zsh/
%{_infodir}/zsh.info*.gz
%{_mandir}/man1/zsh*.1.gz
%files htmldoc
%defattr(-,root,root)
%doc Doc/htmldoc/*
%changelog
* Wed Aug 6 2014 idonmez@suse.com
- Rename Completion/openSUSE/Command/_SuSEconfig to _SUSEconfig
(bnc#888989 fate#316521)
* Fri Jan 17 2014 idonmez@suse.com
- Update zsh-update-zypper-completion.patch to v0.3
* Thu Jan 16 2014 idonmez@suse.com
- Add zsh-update-zypper-completion.patch to update zypper
completions, patch by Holger Macht and Thomas Mitterfellner.
* Tue Jan 7 2014 idonmez@suse.com
- Update to version 5.0.5
* Fixes a couple of regression in 5.0.4
- Remove zsh-pipefix.patch, merged upstream
* Wed Dec 25 2013 idonmez@suse.com
- Update to version 5.0.4
* Small bugfix release
- Add zsh-pipefix.patch to import pipe fixes from zsh.git
- Remove upstream patches
* zsh-osc-suseversion.patch
* zsh-zypper-completion.patch
* Mon Apr 22 2013 idonmez@suse.com
- Don't set globdots it might lead to unexpected problems (bnc#815556)
* Thu Mar 21 2013 idonmez@suse.com
- Fix custom completion support via /etc/zsh_completion.d (bnc#811356)
- Add trim-unneeded-completions.patch to remove unneeded completions
when building for openSUSE
* Sun Jan 27 2013 dmitry_r@opensuse.org
- Fix zypper completion [bnc#752112]
* zsh-zypper-completion.patch
- Fix osc completion (SUSE versions)
* zsh-osc-suseversion.patch
* Mon Dec 24 2012 idonmez@suse.com
- Update to version 5.0.2
* Numeric constants in mathematical contexts can contain
underscores.
* functions -T turns on tracing for specific functions.
- See the included NEWS file for other changes.
* Fri Nov 16 2012 crrodriguez@opensuse.org
- Test suite runs flaky in qemu-arm, disable it for now.
* Fri Oct 26 2012 coolo@suse.com
- buildrequire groff needed to build helpfiles
* Thu Aug 9 2012 idonmez@suse.com
- Version update to 5.0.0
* No real changes since 4.3.17
* Sun Jul 22 2012 coolo@suse.com
- we need tex2html too, which is provided by texinfo
* Thu Jul 19 2012 coolo@suse.com
- buildrequire makeinfo to fix build
* Mon Feb 27 2012 idonmez@suse.com
- Update to version 4.3.17
* Contains fixes for possible speed regression introduced
in 4.3.15 (new option HASH_EXECUTABLES_ONLY)
* Improvements to (bash) completion and shell emulation mode
- Drop all the patches, all upstream
* Tue Feb 7 2012 hmacht@suse.de
- add zsh-enable-openSUSE-completion-functions.patch: Enable
installation of openSUSE completion functions which are upstream
* Tue Jan 31 2012 idonmez@suse.com
- Update _osc completion
* Sat Dec 31 2011 idonmez@suse.com
- Instead of disabling c02cond manually, add upstream patch to
automatically disable it on noatime mounted systems.
* Tue Dec 20 2011 idonmez@suse.com
- Update to zsh 4.3.15
* Fix POSIX compatibility
* Wed Dec 7 2011 idonmez@suse.com
- Update to zsh 4.3.14
* Drop 74eed99c312de05e19b54ba6b5d37a0aeb4ba713.patch and
724fd07a67f135c74eba57e9f25fd342201ec722.patch, fixed upstream
* Fix for nanosecond timestamp support
* Mon Dec 5 2011 idoenmez@suse.de
- Fix license to be MIT, zsh seems to be using the "Modern" variant
of the license text.
- Import git commits 74eed99c312de05e19b54ba6b5d37a0aeb4ba713 and
724fd07a67f135c74eba57e9f25fd342201ec722
* metafy() added null termination even if buffer was not modifiable
* Fix uninitialised memory after lexer realloc
* Wed Nov 30 2011 idoenmez@suse.de
- Update to zsh 4.3.13
* There are no significant feature changes to the shell itself,
although many bug fixes and improvements to functions.
* See included ChangeLog for details
- Drop zsh-4.3.12-ksh-emulation-syntax-checking.patch,
fixed upstream
* Tue Nov 29 2011 idoenmez@suse.de
- Cleanup spec file
- Make /bin/zsh a symlink to /usr/bin/zsh
* Mon Nov 28 2011 idoenmez@suse.de
- Update to 4.3.12-test3
* See included ChangeLog for details
- Drop zsh-findproc.patch and zsh-kill-suspended-job.patch, fixed
upstream.
* Thu Nov 24 2011 idoenmez@suse.de
- Add custom completion support via /etc/zsh_completion.d
- Fix build with new ncurses library
* Mon Aug 1 2011 crrodriguez@opensuse.org
- Enable pcre module
- Build against ncurses6w instead of plain old ncurses5
* Wed Jun 29 2011 chris@computersalat.de
- enable build for RHEL and friends (CentOS, Fedora)
o merge with 4.2.6 from RHEL
o add/rework RHEL patch (BZ-488943-ksh-emulation-syntax-checking)
o add several *.rhs files
o disable E01options test
- add subpkg htmldoc
- fix deps
o fdupes >= suse_version 1110
* Fri Jun 17 2011 idonmez@novell.com
- Add zsh-kill-suspended-job.patch: fix killing suspended jobs
- Add zsh-findproc.patch: fix findproc() to find stopped jobs
* Wed Jun 1 2011 idonmez@novell.com
- Update to zsh 4.3.12
- Dropped openSUSE specific completions, all are upstreamed now
* Tue Apr 26 2011 idoenmez@novell.com
- Enable make check
* Thu Apr 21 2011 idoenmez@novell.com
- Disable zsh debug
- Enable strict aliasing again
* Wed Apr 20 2011 idoenmez@novell.com
- Update to 4.3.11-dev-2, many crash fixes
* Tue Mar 15 2011 ismail@namtrac.org
- Fix crash with ${foo:0:}
* Wed Dec 29 2010 cristian.rodriguez@opensuse.org
- Update to version 4.3.11
* The completion system now has a style path-completion.
* new "zsystem" builtin whose subcommands perform system level tasks
* Added "D" and "Z" flag in parameter expansion
* Lots of other bugfixes/improvements, see Changelog
* Tue Mar 9 2010 hmacht@suse.de
- update completion for _osc:
- add new products openSUSE 11.2 and openSUSE 11.3
- add possibility to extend the list of projects and build
targets with user defined variables
$ZSH_OSC_BUILD_TARGETS_EXTRA and $ZSH_OSC_PROJECTS_EXTRA
* Wed Dec 2 2009 coolo@novell.com
- update patch to apply with fuzz=0
* Thu Oct 8 2009 coolo@novell.com
- disable profiling for now
* Thu Aug 20 2009 hvogel@novell.com
- Fix zshrc. Lost some features by not including bash.bashrc
* Wed Aug 5 2009 hvogel@suse.de
- update to version 4.3.10
o The command "emulate <mode> -c ..." evaluates an expression in
a given emulation.
o The variable CORRECT_IGNORE gives a pattern that can be ignored
in spelling correction.
o The option POSIX_ALIASES improves compatibility of aliases with
other shells.
o The option COMBINING_CHARS has been added. When it is set, the
line editor assumes the terminal is capable of displaying
zero-width combining characters (typically accents) correctly
as modifications to the base character, and will act accordingly.
o The option HIST_FCNTL_LOCK has been added to provide locking of
history files
o The syntax ~[...] provides a dynamic form of directory naming,
supplementing the existing static ~name syntax.
o Patterns can now be used in incremental searches with new widgets
o Highlighting and colouring of sections of the command line is now
supported
o Colouring of prompts is now supported within the shell by prompt
escapes.
o Various changes have been added to make debugging of shell code
easier
o The "fc" builtin has been enhanced to make non-interactive use
possible and output consistent when the history is manipulated
with "print -s".
o The completion style accept-exact-dirs has been added
o cd, chdir, pushd and popd now take a -q option to suppress side effects
- cleanup patches
- use fdupes
- install help files to versioned directory
* Fri Apr 24 2009 hmacht@suse.de
- add completion for osc (_osc)
- add completion for zypper (_zypper)
* Thu Oct 2 2008 hvogel@suse.de
- globally disabling the test was the plan, not only on some archs
* Thu Sep 18 2008 hvogel@suse.de
- disable another test globally which keeps hanging
* Tue Jun 17 2008 hvogel@suse.de
- disable one test globally
* Thu Apr 3 2008 hvogel@suse.de
- update to 4.3.6
* Various bugfixes
* various buildfixes
* for calendar_show use kdialog rather than xmessage if in KDE
* clarify the message printed when compaudit finds problems
* improve compsys option handling
* add -q option to cd, chdir, pushd, popd
* wait shouldn't return immediately on a signal unless it's
trapped
* fix not enough space for ztrftime string with multibyte
characters
* Tue Mar 25 2008 hvogel@suse.de
- Disable some tests on s390, s390x, ppc and ppc64
* Thu Mar 20 2008 hvogel@suse.de
- update to 4.3.5
* Various bugfixes
* stop tindent becoming negative, which causes infinite use of
memory; add debug test to see where it would become negative.
* make malloc(0) allocate a single byte instead of returning
invalid (and unfreeable) memory.
* fix race in POSIX signal blocking
* various completion fixes/updates, mostly git
* tidy up module interface and documentation
* more build tests
* The new extended globbing flag (#cN,M) behaves similarly to
the extended regular expression syntax {N,M}.
* The zsh/datetime module has been enhanced and a calendar function
system has been added along the lines of (but much enhanced from)
* A new module zsh/curses provides a builtin zcurses for access to
to the curses screen manipulation package.
* Mon Dec 3 2007 hvogel@suse.de
- cleanup initialization files
* Dont source profile from zshenv. profile is not for interactive
shells [#343621]
* Instead source profile from zprofile so we dont loose the features
and its easy to get rid of it.
* Source bash.bashrc from zshrc to keep the features and make it
possible to get rid of it easier.
* Wed Jul 4 2007 hvogel@suse.de
- update to version 4.3.4
* various bugfixes
* countless completion fixes
* some new completions
* various UTF8 fixes
- remove autoresume option from default config [#287776]
* Fri Mar 30 2007 rguenther@suse.de
- add ncurses-devel BuildRequires.
* Fri Jul 14 2006 mskibbe@suse.de
- merged in patches from poeml (mruecker@suse.de)
- rediffed patches for -p0 (mruecker@suse.de)
- update to version 4.3.2 which (mruecker@suse.de)
o fix two minor build problems
o contains initial support for multibyte characters in the shell's line editor
- only require libcap for build on 10.0 and older (mruecker@suse.de)
* Wed Jan 25 2006 mls@suse.de
- converted neededforbuild to BuildRequires
* Sat Jan 14 2006 schwab@suse.de
- Don't strip binaries.
* Mon Dec 5 2005 hvogel@suse.de
- clean up specfile
- document profiling builds
* Mon Dec 5 2005 mmj@suse.de
- Fix typo
* Mon Dec 5 2005 mmj@suse.de
- Update to 4.2.6
* Wed Apr 6 2005 mmj@suse.de
- Update to 4.2.5
* Tue Mar 15 2005 mmj@suse.de
- Fix Makefile completion by using the _make from an older zsh
version [#72875]
* Thu Feb 17 2005 poeml@suse.de
- update yast2 completion to also complete *.ycp files
* Thu Feb 3 2005 mmj@suse.de
- Update to 4.2.4
* Mon Jan 31 2005 ro@suse.de
- adapt to texi2html changes
* Wed Jan 26 2005 uli@suse.de
- run configure with --with-tcsetpgrp as suggested by the fail log
(fixes s390*)
* Sat Jan 15 2005 mmj@suse.de
- Update to zsh-4.2.3 which is a bugfix release not really affecting
us, but better keep up to date
* Wed Jan 12 2005 mmj@suse.de
- Update to zsh-4.2.2
* Mon Dec 20 2004 poeml@suse.de
- fix yast2 completion to work without /sbin in PATH [#49374]
- fix yast2 and SuSEconfig completion to not show files from
working directory
- update hwinfo completion
* Fri Aug 13 2004 mmj@suse.de
- Update to zsh-4.2.1
* Tue Jul 27 2004 ro@suse.de
- fix build of helpfiles after groff update
* Fri Mar 19 2004 mmj@suse.de
- Update to zsh-4.2.0 final release
* Mon Mar 8 2004 mmj@suse.de
- Update to zsh-4.2.0-pre-3
* Thu Feb 26 2004 mmj@suse.de
- Update to zsh-4.2.0-pre-1
* Fri Jan 16 2004 mmj@suse.de
- Use -fprofile-arcs when linking and -fno-strict-aliasing for
compiling.
- Fix tail syntax
* Sat Oct 18 2003 mmj@suse.de
- Fix neededforbuild
* Thu Oct 16 2003 mmj@suse.de
- Don't build as root
- Cleanup specfile
* Tue Oct 14 2003 jh@suse.de
- Fix profiling lockup. (we can not profile dl_closed modules yet)
* Thu Jun 19 2003 mmj@suse.de
- Update to 4.1.1
- Enable profiling
* Thu May 8 2003 mmj@suse.de
- And do it even better, thanks Andreas Schwab.
* Thu May 8 2003 mmj@suse.de
- Use a better way of unaliasing 'which'. Thanks Ingo Lameter.
* Thu Apr 24 2003 ro@suse.de
- fix install_info --delete call and move from preun to postun
* Mon Apr 7 2003 mmj@suse.de
- Only delete info entries when removing last version.
* Fri Feb 7 2003 mmj@suse.de
- Use %%install_info macro
- Clean up build root
* Thu Jan 9 2003 mmj@suse.de
- Set the important option 'nopromptcr' to not screw output.
* Mon Sep 16 2002 mmj@suse.de
- Use BuildRoot
* Fri Aug 16 2002 mmj@suse.de
- Move zsh binary to /bin [#17758]
- Use proper libdir
* Thu Aug 15 2002 poeml@suse.de
- update completion for _yast{,2} and add one for _hwinfo
* Wed Aug 14 2002 mmj@suse.de
- Update to 4.0.6 which was released this fast b/c a termcap /
terminfo fix was forgotten together with a fix for _mount.
* Mon Aug 12 2002 mmj@suse.de
- Update to 4.0.5 which includes a lot more completion, modules and
bugfixes.
* Tue Jun 4 2002 mmj@suse.de
- Added the html documentation from the ZSH team.
* Tue Apr 16 2002 mmj@suse.de
- Fix to own %%{_defaultdocdir}/zsh
* Mon Mar 11 2002 mmj@suse.de
- Comment out a completion that a lot of people find broken
* Fri Feb 22 2002 mmj@suse.de
- Added yast2 and SuSEconfig completion from poeml@
* Wed Feb 13 2002 stepan@suse.de
- remove .orig and .rej files from patch set.
* Wed Jan 30 2002 mmj@suse.de
- Moved /etc/zshrc and /etc/zshenv to this package. This is ok b/c
it is only specific zsh options.
* Thu Dec 13 2001 mmj@suse.de
- Fix broken symlink from help/man1 -> ../Doc
* Sat Oct 27 2001 mmj@suse.de
- Update to 4.0.4
* Thu Oct 25 2001 mmj@suse.de
- Update to 4.0.3
* Tue Jun 26 2001 mmj@suse.de
- Update to the newly released 4.0.2
* Sat Jun 2 2001 mmj@suse.de
- Updated to the new stable release, zsh-4.0.1
- Fixed build prob on beta-i386 and beta-ia64
* Tue May 8 2001 mfabian@suse.de
- bzip2 sources
* Sun Apr 15 2001 schwab@suse.de
- Fix missing declarations.
* Thu Apr 12 2001 mmj@suse.de
- Updated to 4.0.1-pre-3
* Wed Mar 14 2001 mmj@suse.de
- Updated to 4.0.1-pre-2
* Sun Feb 18 2001 mmj@suse.de
- Updated to 4.0.1-pre-1
* Fri Dec 15 2000 werner@suse.de
- Update to 3.1.9-dev-8
* Fri Oct 6 2000 kukuk@suse.de
- Change group tag
* Fri May 12 2000 schwab@suse.de
- Update config files.
- Move docs to %%{_defaultdocdir}.
* Thu Jan 27 2000 werner@suse.de
- New zsh version 3.1.6-dev-16
- Install html and info documentation
- Enable run-help help library
- Fix paths of perl and zsh scripts
- Enable command line history
- Enable command line complementation/correction
* Mon Dec 6 1999 schwab@suse.de
- Fix errors from makeinfo
* Mon Sep 13 1999 bs@suse.de
- ran old prepare_spec on spec file to switch to new prepare_spec.
* Tue Nov 17 1998 bs@suse.de
- removed symlink /etc/zshrc -> profile (aaa_base contains a real zshrc now)
* Fri Oct 10 1997 florian@suse.de
- update to version 3.0.5
* Mon Jun 23 1997 florian@suse.de
- update to version 3.0.4
* Wed Jan 22 1997 florian@suse.de
- update to version 3.0.2
* Thu Jan 2 1997 florian@suse.de
- update to version 3.0.1
- added more documentation in binary package
* Thu Jan 2 1997 florian@suse.de
new version 3.0.0