cvsdist 2c8e3f
# this file is encoded in UTF-8  -*- coding: utf-8 -*-
cvsdist 2c8e3f
Toshio Kuratomi 4a912f
Summary: Powerful interactive shell
cvsdist abdd31
Name: zsh
Dominic Hopf c7523c
Version: 5.0.0
Dominic Hopf c7523c
Release: 1%{?dist}
Dominic Hopf b9e1bb
License: MIT
Dominic Hopf e74224
URL: http://zsh.sourceforge.net/
cvsdist abdd31
Group: System Environment/Shells
Dominic Hopf 13c039
Source0: http://download.sourceforge.net/%{name}/%{name}-%{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
James Antill f0f47b
# Give me better tools or die!
Toshio Kuratomi 4a912f
%global _default_patch_fuzz 2
cvsdist 92bd44
Patch0: zsh-serial.patch
James Antill 9ed34d
Patch4: zsh-4.3.6-8bit-prompts.patch
James Antill 75e875
Patch5: zsh-test-C02-dev_fd-mock.patch
Peter Robinson 3d4d1c
BuildRequires: coreutils sed ncurses-devel libcap-devel
James Antill 4b7fae
BuildRequires: texinfo tetex texi2html gawk /bin/hostname
jantill 2cc004
Requires(post): /sbin/install-info grep
jantill 2cc004
Requires(preun): /sbin/install-info
Peter Robinson 3d4d1c
Requires(postun): coreutils grep
cvsdist abdd31
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
James Antill eb6b31
%patch4 -p1
James Antill eb6b31
%patch5 -p1
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=""
James Antill 4b7fae
%configure --enable-etcdir=%{_sysconfdir} --with-tcsetpgrp  --enable-maildir-support
cvsdist abdd31
cvsdist 21be85
make all html
jantill dd0745
jantill dd0745
%check
cvsdist 83b6ad
# Run the testsuite
cvsdist 2c8e3f
# the completion tests hang on s390 and s390x
cvsdist 2c8e3f
  ( cd Test
cvsdist 2c8e3f
    mkdir skipped
James Antill d9db35
%ifarch s390 s390x ppc ppc64
James Antill d9db35
    mv Y*.ztst skipped
cvsdist 2c8e3f
%endif
Karsten Hopp bcdc34
%ifarch s390 s390x ppc64
James Antill 4b7fae
    # FIXME: This is a real failure, Debian apparently just don't test.
James Antill 4b7fae
    # RHBZ: 460043
James Antill 4b7fae
    mv D02glob.ztst skipped
James Antill 4b7fae
%endif
James Antill d9db35
    # FIXME: This hangs in mock
James Antill 7cbce2
    # Running test: Test loading of all compiled modules
James Antill 7cbce2
    mv V01zmodload.ztst skipped
James Antill d9db35
    true )
James Antill d9db35
  ZTST_verbose=1 make test
cvsdist abdd31
cvsdist abdd31
%install
cvsdist abdd31
rm -rf $RPM_BUILD_ROOT
cvsdist 2c8e3f
%makeinstall install.info \
jantill dd0745
  fndir=$RPM_BUILD_ROOT%{_datadir}/zsh/%{version}/functions \
James Antill 104f9d
  sitefndir=$RPM_BUILD_ROOT%{_datadir}/zsh/site-functions \
James Antill 104f9d
  scriptdir=$RPM_BUILD_ROOT%{_datadir}/zsh/%{version}/scripts \
James Antill 104f9d
  sitescriptdir=$RPM_BUILD_ROOT%{_datadir}/zsh/scripts
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}
jantill 2cc004
for i in %{SOURCE4} %{SOURCE1} %{SOURCE2} %{SOURCE5} %{SOURCE3}; do
jantill 2cc004
    install -m 644 $i ${RPM_BUILD_ROOT}%{_sysconfdir}/"$(basename $i .rhs)"
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
jantill 2cc004
# This is just here to shut up rpmlint, and is very annoying.
jantill 2cc004
# Note that we can't chmod everything as then rpmlint will complain about
jantill 2cc004
# those without a she-bang line.
jantill 2cc004
for i in checkmail harden run-help zcalc zkbd; do
jantill 2cc004
    sed -i -e 's!/usr/local/bin/zsh!%{_bindir}/zsh!' \
jantill 2cc004
      ${RPM_BUILD_ROOT}%{_datadir}/zsh/*/functions/$i
jantill 2cc004
    chmod +x ${RPM_BUILD_ROOT}%{_datadir}/zsh/*/functions/$i
jantill 2cc004
done
jantill 2cc004
jantill dd0745
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
James Antill 41a26d
if [ -f %{_infodir}/zsh.info.gz ]; then
James Antill 41a26d
# This is needed so that --excludedocs works.
cvsdist abdd31
/sbin/install-info %{_infodir}/zsh.info.gz %{_infodir}/dir \
jantill dd0745
  --entry="* zsh: (zsh).			An enhanced bourne shell."
James Antill 41a26d
fi
James Antill 41a26d
Miroslav Lichvar 4cff86
:
cvsdist abdd31
cvsdist abdd31
%preun
cvsdist abdd31
if [ "$1" = 0 ] ; then
James Antill 41a26d
    if [ -f %{_infodir}/zsh.info.gz ]; then
James Antill 41a26d
    # This is needed so that --excludedocs works.
cvsdist abdd31
    /sbin/install-info --delete %{_infodir}/zsh.info.gz %{_infodir}/dir \
jantill dd0745
      --entry="* zsh: (zsh).			An enhanced bourne shell."
James Antill 41a26d
    fi
cvsdist abdd31
fi
Miroslav Lichvar 4cff86
:
cvsdist abdd31
cvsdist abdd31
%postun
cvsdist abdd31
if [ "$1" = 0 ] ; then
cvsdist 2c8e3f
    if [ -f %{_sysconfdir}/shells ] ; then
jantill dd0745
        TmpFile=`%{_bindir}/mktemp /tmp/.zshrpmXXXXXX`
jantill dd0745
        grep -v '^%{_bindir}/zsh$' %{_sysconfdir}/shells > $TmpFile
jantill 41d85b
        cp -f $TmpFile %{_sysconfdir}/shells
jantill 41d85b
        rm -f $TmpFile
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
jantill 41d85b
%config(noreplace) %{_sysconfdir}/skel/.z*
jantill dd0745
%config(noreplace) %{_sysconfdir}/z*
cvsdist abdd31
cvsdist 21be85
%files html
cvsdist 21be85
%defattr(-,root,root)
James Antill 104f9d
%doc Doc/*.html
cvsdist 21be85
cvsdist abdd31
%changelog
Dominic Hopf c7523c
* Wed Nov 21 2012 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.0-1
Dominic Hopf c7523c
- Update to new upstream version: Zsh 5.0.0
Dominic Hopf c7523c
Dennis Gilmore e409dc
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.17-2
Dennis Gilmore e409dc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
Dennis Gilmore e409dc
Dominic Hopf b1ed0a
* Sat Mar 04 2012 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.17-1
Dominic Hopf b1ed0a
- Update to new upstream version: Zsh 4.3.17
Dominic Hopf b1ed0a
Dennis Gilmore f0a3a9
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.15-2
Dennis Gilmore f0a3a9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
Dennis Gilmore f0a3a9
Dominic Hopf 9283c3
* Sat Dec 24 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.15-1
Dominic Hopf 9283c3
- Update to new upstream version: Zsh 4.3.15
Dominic Hopf 9283c3
Dominic Hopf b9e1bb
* Sat Dec 17 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.14-2
Dominic Hopf b9e1bb
- change the License field to MIT (RHBZ#768548)
Dominic Hopf b9e1bb
Dominic Hopf 13c039
* Fri Dec 10 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.14-1
Dominic Hopf 13c039
- Update to new upstream version: Zsh 4.3.14
Dominic Hopf 13c039
Dominic Hopf 273f53
* Sat Dec 03 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.13-1
Dominic Hopf 273f53
- Update to new upstream version: Zsh 4.3.13
Dominic Hopf 273f53
Dominic Hopf 3f163a
* Sat Aug 13 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.12-1
Dominic Hopf 3f163a
- Update to new upstream version: Zsh 4.3.12
Dominic Hopf 3f163a
Dennis Gilmore d425c2
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.11-2
Dennis Gilmore d425c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
Dennis Gilmore d425c2
Christopher Aillon 42493e
* Thu Jan 20 2011 Christopher Ailon <caillon@redhat.com> - 4.3.11-1
Christopher Aillon 42493e
- Rebase to upstream version 4.3.11
Christopher Aillon 42493e
Toshio Kuratomi 4a912f
* Tue Dec 7 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 4.3.10-6
Toshio Kuratomi 4a912f
- Rebuild for FTBFS https://bugzilla.redhat.com/show_bug.cgi?id=631197
Toshio Kuratomi 4a912f
- Remove deprecated PreReq, the packages aren't needed at runtime and they're
Toshio Kuratomi 4a912f
  already in Requires(post,preun,etc): lines.
Toshio Kuratomi 4a912f
James Antill 901bc0
* Mon Mar 22 2010 James Antill <james@fedoraproject.org> - 4.3.10-5
James Antill 901bc0
- Add pathmunge to our /etc/zshrc, for profile.d compat.
James Antill 901bc0
- Resolves: bug#548960
James Antill 901bc0
James Antill 41a26d
* Fri Aug  7 2009 James Antill <james@fedoraproject.org> - 4.3.10-4
James Antill 41a26d
- Allow --excludedocs command to work!
James Antill 41a26d
- Resolves: bug#515986
James Antill 41a26d
Jesse Keating 3fcc40
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.10-3
Jesse Keating 3fcc40
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
Jesse Keating 3fcc40
James Antill d3e623
* Mon Jul 20 2009 James Antill <james@fedoraproject.org> - 4.3.10-1
James Antill d3e623
- Import new upstream 4.3.10
James Antill d3e623
Karsten Hopp bcdc34
* Wed Jun 10 2009 Karsten Hopp <karsten@redhat.com> 4.3.9-4.1
Karsten Hopp bcdc34
- skip D02glob test on s390, too
Karsten Hopp bcdc34
James Antill 4b7fae
* Mon Mar  2 2009 James Antill <james@fedoraproject.org> - 4.3.9-4
James Antill 4b7fae
- Remove D02glob testcase on ppc/ppc64, and hope noone cares
James Antill 629e05
Jesse Keating 21ca26
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.9-2
Jesse Keating 21ca26
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
Jesse Keating 21ca26
James Antill e49b97
* Fri Dec 20 2008 James Antill <james@fedoraproject.org> - 4.3.9-1
James Antill ec7299
- Import new upstream 4.3.9
James Antill ec7299
James Antill 7a97d8
* Mon Aug 25 2008 James Antill <james@fedoraproject.org> - 4.3.6-5
James Antill 9ed34d
- Import new upstream 4.3.6
James Antill 7cbce2
- Rebase 8bit prompt patch
James Antill 09bc5e
- Add patch fuzz=2
James Antill 75e875
- Add BuildReq on /bin/hostname directly
James Antill 7a97d8
- FIXME: These should all be unpatched, at some point.
James Antill 75e875
- Don't test /dev/fd as mock doesn't like it
James Antill 7cbce2
- Don't test the modload module, as mock doesn't like loading them all
James Antill 7a97d8
- Don't test the select test in A01grammar, stdin/stderr racy?
James Antill 9ed34d
James Antill fec3f9
* Thu Jan 31 2008 James Antill <james@fedoraproject.org> - 4.3.4-7
James Antill 85380a
- Tweak /etc/zshrc to source /etc/profile.d/*.sh in ksh compat. mode
James Antill fec3f9
- Tweak /etc/zprofile to source /etc/profile in ksh compat. mode
James Antill 85380a
- Resolves: rhbz#430665
James Antill 85380a
James Antill 3e4841
* Mon Nov  3 2007 James Antill <jantill@redhat.com> - 4.3.4-5
James Antill 3e4841
- Fix 8bit chars in prompts.
James Antill 3e4841
- Resolves: 375211
James Antill 3e4841
James Antill 2fc798
* Thu Oct 11 2007 James Antill <jantill@redhat.com> - 4.3.4-4
James Antill 2fc798
- Fix login shell detection.
James Antill 2fc798
- Resolves: 244684
James Antill 2fc798
Jesse Keating 68edd3
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 4.3.4-3
Jesse Keating 68edd3
- BuildRequire gawk.
Jesse Keating 68edd3
Jesse Keating 72491e
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 4.3.4-2
Jesse Keating 72491e
- Rebuild for selinux ppc32 issue.
Jesse Keating 72491e
James Antill f0fa87
* Tue Aug 28 2007 James Antill <jantill@redhat.com> - 4.3.4-1
James Antill f0fa87
- Rebuild for buildid/ppc32
James Antill f0fa87
James Antill 104f9d
* Wed Jul 25 2007 James Antill <jantill@redhat.com> - 4.3.4-0
James Antill 104f9d
- Move to upstream 4.3.4, the stable non-stable release
James Antill 104f9d
jantill 2cc004
* Mon Mar  5 2007 James Antill <james@and.org> - 4.2.6-6
jantill 2cc004
- Move requires to be scriptlet specific
jantill 2cc004
- chmod functions, to shut rpmlint up (false positive warning)
jantill 2cc004
- sed only the requied functions (again, shuts rpmlint up)
jantill 2cc004
- Remove zsh-4.0.6-make-test-fail.patch
jantill 2cc004
- Remove RPM_SOURCE_DIR var, using %%{SOURCEx} and basename
jantill 2cc004
Resolves: rhbz#226813
jantill 2cc004
jantill 41d85b
* Tue Feb 27 2007 James Antill <james@and.org> - 4.2.6-5
jantill 41d85b
- Fix sed typo.
jantill 41d85b
- Fix skel expansion problem.
jantill 41d85b
- Add Requires for mktemp/info/etc.
jantill 2cc004
- Use cp again due to SELinux context
jantill 41d85b
Resolves: rhbz#226813
jantill 41d85b
jantill dd0745
* Tue Feb 27 2007 James Antill <james@and.org> - 4.2.6-4
jantill dd0745
- Fix buildroot to new Fedora default.
jantill dd0745
- Remove /etc/skel from ownership.
jantill dd0745
- Remove explicit libcap dep.
jantill dd0745
- Tweak postun script.
jantill dd0745
- Move checking to generic rpm infrastructure.
jantill dd0745
Resolves: rhbz#226813
jantill dd0745
Miroslav Lichvar 4cff86
* Tue Jan 16 2007 Miroslav Lichvar <mlichvar@redhat.com> - 4.2.6-3
Miroslav Lichvar 4cff86
- Link with ncurses
Miroslav Lichvar 4cff86
- Add dist tag
Miroslav Lichvar 4cff86
- Make scriptlets safer
Miroslav Lichvar 4cff86
jantill d93775
* Tue Sep 19 2006 James Antill <jantill@redhat.com> - 4.2.6-2
jantill d93775
- Add --enable-maildir-support BZ#186281
jantill d93775
Christopher Aillon c7ed63
* Mon Sep 11 2006 Christopher Aillon <caillon@redhat.com> - 4.2.6-1
Christopher Aillon c7ed63
- Update to 4.2.6
Christopher Aillon c7ed63
Jesse Keating 465bd3
* Wed Jul 13 2006 Jesse Keating <jkeating@redhat.com> - 4.2.5-2
Jesse Keating 61263a
- rebuild
Jesse Keating 465bd3
- add mising br texi2html
Jesse Keating 61263a
Jesse Keating 28e179
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 4.2.5-1.2.2
Jesse Keating 28e179
- bump again for double-long bug on ppc(64)
Jesse Keating 28e179
jantill dd0745
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 4.2.5
Jesse Keating 6bd980
- rebuilt for new gcc4.1 snapshot and glibc changes
Jesse Keating 6bd980
Jesse Keating 823b07
* Wed Jan  4 2006 Jesse Keating <jkeating@redhat.com> 0 4.2.5-1.2
Jesse Keating 823b07
- rebuilt again
Jesse Keating 823b07
Jesse Keating 3c971c
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
Jesse Keating 3c971c
- rebuilt
Jesse Keating 3c971c
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
jantill dd0745
- 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