8de4c6
Summary: Powerful interactive shell
8de4c6
Name: zsh
8de4c6
Version: 5.5.1
7262f0
Release: 9%{?dist}
8de4c6
License: MIT
8de4c6
URL: http://zsh.sourceforge.net/
8de4c6
Source0: https://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.xz
8de4c6
Source1: zlogin.rhs
8de4c6
Source2: zlogout.rhs
8de4c6
Source3: zprofile.rhs
8de4c6
Source4: zshrc.rhs
8de4c6
Source5: zshenv.rhs
8de4c6
Source6: dotzshrc
8de4c6
8de4c6
# fix two security issues in shebang line parsing (CVE-2018-0502 CVE-2018-13259)
8de4c6
Patch1:  0001-zsh-5.5.1-CVE-2018-0502-CVE-2018-13259.patch
8de4c6
8de4c6
# fix programming mistakes detected by static analysis (#1602743)
8de4c6
Patch2:  0002-zsh-5.5.1-static-analysis.patch
8de4c6
8de4c6
# return non-zero exit status on nested parse error (#1654989)
8de4c6
Patch3:  0003-zsh-5.5.1-parse-error-exit-status.patch
8de4c6
d51014
# drop privileges securely when unsetting PRIVILEGED option (CVE-2019-20044)
d51014
Patch4:  0004-zsh-5.5.1-CVE-2019-20044.patch
d51014
7262f0
# do not perform PROMPT_SUBST evaluation on %F/%K arguments (CVE-2021-45444)
7262f0
Patch5:  0005-zsh-5.5.1-CVE-2021-45444.patch
7262f0
8de4c6
BuildRequires: autoconf
8de4c6
BuildRequires: coreutils
8de4c6
BuildRequires: gawk
8de4c6
BuildRequires: gcc
8de4c6
BuildRequires: gdbm-devel
8de4c6
BuildRequires: libcap-devel
8de4c6
BuildRequires: ncurses-devel
8de4c6
BuildRequires: pcre-devel
8de4c6
BuildRequires: sed
8de4c6
BuildRequires: texi2html
8de4c6
BuildRequires: texinfo
8de4c6
Requires(post): info grep
8de4c6
Requires(preun): info
8de4c6
Requires(postun): coreutils grep
8de4c6
8de4c6
# the hostname package is not available on RHEL-6
8de4c6
%if 12 < 0%{?fedora} || 6 < 0%{?rhel}
8de4c6
BuildRequires: hostname
8de4c6
%else
8de4c6
# /bin and /usr/bin are separate directories on RHEL-6
8de4c6
%define _bindir /bin
8de4c6
%endif
8de4c6
8de4c6
Provides: /bin/zsh
8de4c6
8de4c6
%description
8de4c6
The zsh shell is a command interpreter usable as an interactive login
8de4c6
shell and as a shell script command processor.  Zsh resembles the ksh
8de4c6
shell (the Korn shell), but includes many enhancements.  Zsh supports
8de4c6
command line editing, built-in spelling correction, programmable
8de4c6
command completion, shell functions (with autoloading), a history
8de4c6
mechanism, and more.
8de4c6
8de4c6
%package html
8de4c6
Summary: Zsh shell manual in html format
8de4c6
BuildArch:	noarch
8de4c6
8de4c6
%description html
8de4c6
The zsh shell is a command interpreter usable as an interactive login
8de4c6
shell and as a shell script command processor.  Zsh resembles the ksh
8de4c6
shell (the Korn shell), but includes many enhancements.  Zsh supports
8de4c6
command line editing, built-in spelling correction, programmable
8de4c6
command completion, shell functions (with autoloading), a history
8de4c6
mechanism, and more.
8de4c6
8de4c6
This package contains the Zsh manual in html format.
8de4c6
8de4c6
%prep
8de4c6
%autosetup -p1
8de4c6
autoreconf -fiv
8de4c6
8de4c6
# enable parallel build
8de4c6
sed -e 's|^\.NOTPARALLEL|#.NOTPARALLEL|' -i 'Config/defs.mk.in'
8de4c6
8de4c6
%build
8de4c6
# make build of run-time loadable modules work again (#1535422)
8de4c6
%undefine _strict_symbol_defs_build
8de4c6
8de4c6
# make loading of module's dependencies work again (#1277996)
8de4c6
export LIBLDFLAGS='-z lazy'
8de4c6
8de4c6
%configure \
8de4c6
    --enable-etcdir=%{_sysconfdir} \
8de4c6
    --with-tcsetpgrp \
8de4c6
    --enable-maildir-support \
8de4c6
    --enable-pcre
8de4c6
8de4c6
# prevent the build from failing while running in parallel
8de4c6
make -C Src headers
8de4c6
make -C Src -f Makemod zsh{path,xmod}s.h version.h
8de4c6
8de4c6
make %{?_smp_mflags} all html
8de4c6
8de4c6
%check
8de4c6
# Run the testsuite
8de4c6
make check
8de4c6
8de4c6
%install
8de4c6
%make_install install.info \
8de4c6
  fndir=%{_datadir}/%{name}/%{version}/functions \
8de4c6
  sitefndir=%{_datadir}/%{name}/site-functions \
8de4c6
  scriptdir=%{_datadir}/%{name}/%{version}/scripts \
8de4c6
  sitescriptdir=%{_datadir}/%{name}/scripts \
8de4c6
  runhelpdir=%{_datadir}/%{name}/%{version}/help
8de4c6
8de4c6
rm -f $RPM_BUILD_ROOT%{_bindir}/zsh-%{version}
8de4c6
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
8de4c6
8de4c6
mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}
8de4c6
for i in %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} %{SOURCE5}; do
8de4c6
    install -m 644 $i $RPM_BUILD_ROOT%{_sysconfdir}/"$(basename $i .rhs)"
8de4c6
done
8de4c6
8de4c6
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/skel
8de4c6
install -m 644 %{SOURCE6} $RPM_BUILD_ROOT%{_sysconfdir}/skel/.zshrc
8de4c6
8de4c6
# This is just here to shut up rpmlint, and is very annoying.
8de4c6
# Note that we can't chmod everything as then rpmlint will complain about
8de4c6
# those without a she-bang line.
8de4c6
for i in checkmail harden run-help zcalc zkbd; do
8de4c6
    sed -i -e 's!/usr/local/bin/zsh!%{_bindir}/zsh!' \
8de4c6
    $RPM_BUILD_ROOT%{_datadir}/zsh/%{version}/functions/$i
8de4c6
    chmod +x $RPM_BUILD_ROOT%{_datadir}/zsh/%{version}/functions/$i
8de4c6
done
8de4c6
8de4c6
8de4c6
%post
8de4c6
if [ "$1" = 1 ]; then
8de4c6
  if [ ! -f %{_sysconfdir}/shells ] ; then
8de4c6
    echo "%{_bindir}/%{name}" > %{_sysconfdir}/shells
8de4c6
    echo "/bin/%{name}" >> %{_sysconfdir}/shells
8de4c6
  else
8de4c6
    grep -q "^%{_bindir}/%{name}$" %{_sysconfdir}/shells || echo "%{_bindir}/%{name}" >> %{_sysconfdir}/shells
8de4c6
    grep -q "^/bin/%{name}$" %{_sysconfdir}/shells || echo "/bin/%{name}" >> %{_sysconfdir}/shells
8de4c6
  fi
8de4c6
fi
8de4c6
8de4c6
if [ -f %{_infodir}/zsh.info.gz ]; then
8de4c6
# This is needed so that --excludedocs works.
8de4c6
/sbin/install-info %{_infodir}/zsh.info.gz %{_infodir}/dir \
8de4c6
  --entry="* zsh: (zsh).			An enhanced bourne shell."
8de4c6
fi
8de4c6
8de4c6
8de4c6
%preun
8de4c6
if [ "$1" = 0 ] ; then
8de4c6
    if [ -f %{_infodir}/zsh.info.gz ]; then
8de4c6
    # This is needed so that --excludedocs works.
8de4c6
    /sbin/install-info --delete %{_infodir}/zsh.info.gz %{_infodir}/dir \
8de4c6
      --entry="* zsh: (zsh).			An enhanced bourne shell."
8de4c6
    fi
8de4c6
fi
8de4c6
8de4c6
%postun
8de4c6
if [ "$1" = 0 ] && [ -f %{_sysconfdir}/shells ] ; then
8de4c6
  sed -i '\!^%{_bindir}/%{name}$!d' %{_sysconfdir}/shells
8de4c6
  sed -i '\!^/bin/%{name}$!d' %{_sysconfdir}/shells
8de4c6
fi
8de4c6
8de4c6
8de4c6
%files
8de4c6
%doc README LICENCE Etc/BUGS Etc/CONTRIBUTORS Etc/FAQ FEATURES MACHINES
8de4c6
%doc NEWS Etc/zsh-development-guide Etc/completion-style-guide
8de4c6
%attr(755,root,root) %{_bindir}/zsh
8de4c6
%{_mandir}/*/*
8de4c6
%{_infodir}/*
8de4c6
%{_datadir}/zsh
8de4c6
%{_libdir}/zsh
8de4c6
%config(noreplace) %{_sysconfdir}/skel/.z*
8de4c6
%config(noreplace) %{_sysconfdir}/z*
8de4c6
8de4c6
%files html
8de4c6
%doc Doc/*.html
8de4c6
8de4c6
%changelog
7262f0
* Tue Feb 22 2022 Kamil Dudka <kdudka@redhat.com> - 5.5.1-9
7262f0
- do not perform PROMPT_SUBST evaluation on %F/%K arguments (CVE-2021-45444)
7262f0
7262f0
* Tue Mar 03 2020 Kamil Dudka <kdudka@redhat.com> - 5.5.1-8
d51014
- improve printing of error messages introduced by the fix of CVE-2019-20044
d51014
7262f0
* Mon Feb 24 2020 Kamil Dudka <kdudka@redhat.com> - 5.5.1-7
d51014
- drop privileges securely when unsetting PRIVILEGED option (CVE-2019-20044)
d51014
8de4c6
* Mon Dec 17 2018 Kamil Dudka <kdudka@redhat.com> - 5.5.1-6
8de4c6
- return non-zero exit status on nested parse error (#1654989)
8de4c6
8de4c6
* Mon Nov 12 2018 Kamil Dudka <kdudka@redhat.com> - 5.5.1-5
8de4c6
- fix programming mistakes detected by static analysis (#1602743)
8de4c6
8de4c6
* Thu Oct 11 2018 Kamil Dudka <kdudka@redhat.com> - 5.5.1-4
8de4c6
- fix two security issues in shebang line parsing (CVE-2018-0502 CVE-2018-13259)
8de4c6
8de4c6
* Mon Jul 30 2018 Florian Weimer <fweimer@redhat.com> - 5.5.1-3
8de4c6
- Rebuild with fixed binutils
8de4c6
8de4c6
* Wed Jul 25 2018 Petr Kubat <pkubat@redhat.com> - 5.5.1-2
8de4c6
- Rebuilt for gdbm
8de4c6
8de4c6
* Tue Apr 17 2018 Kamil Dudka <kdudka@redhat.com> - 5.5.1-1
8de4c6
- update to latest upstream release
8de4c6
8de4c6
* Mon Apr 09 2018 Kamil Dudka <kdudka@redhat.com> - 5.5-1
8de4c6
- update to latest upstream release, which fixes the following vulnerabilities:
8de4c6
    CVE-2018-1100 - stack-based buffer overflow in utils.c:checkmailpath()
8de4c6
    CVE-2018-1083 - stack-based buffer overflow in compctl.c:gen_matches_files()
8de4c6
    CVE-2018-1071 - stack-based buffer overflow in exec.c:hashcmd()
8de4c6
8de4c6
* Tue Mar 06 2018 Kamil Dudka <kdudka@redhat.com> - 5.4.2-7
8de4c6
- avoid crash when copying empty hash table (CVE-2018-7549)
8de4c6
- avoid NULL dereference when using ${(PA)...} on an empty array (CVE-2018-7548)
8de4c6
8de4c6
* Mon Feb 19 2018 Kamil Dudka <kdudka@redhat.com> - 5.4.2-6
8de4c6
- add explicit BR for the gcc compiler
8de4c6
8de4c6
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.4.2-5
8de4c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
8de4c6
8de4c6
* Mon Jan 22 2018 Kamil Dudka <kdudka@redhat.com> - 5.4.2-4
8de4c6
- make build of run-time loadable modules work again (#1535422)
8de4c6
8de4c6
* Tue Jan 16 2018 Kamil Dudka <kdudka@redhat.com> - 5.4.2-3
8de4c6
- rebuild against latest gdbm-devel (#1533176)
8de4c6
8de4c6
* Wed Oct 04 2017 Kamil Dudka <kdudka@redhat.com> - 5.4.2-2
8de4c6
- make the call depth limit configurable by $FUNCNEST (#1441092)
8de4c6
8de4c6
* Mon Aug 28 2017 Kamil Dudka <kdudka@redhat.com> - 5.4.2-1
8de4c6
- update to latest upstream release
8de4c6
8de4c6
* Wed Aug 09 2017 Kamil Dudka <kdudka@redhat.com> - 5.4.1-1
8de4c6
- update to latest upstream release
8de4c6
8de4c6
* Tue Aug 01 2017 Kamil Dudka <kdudka@redhat.com> - 5.3.1-12
8de4c6
- use %%make_install instead of %%makeinstall, which is deprecated
8de4c6
- modernize spec file (Group tag, %%clean, %%defattr)
8de4c6
8de4c6
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.3.1-11
8de4c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
8de4c6
8de4c6
* Fri Jul 07 2017 Kamil Dudka <kdudka@redhat.com> - 5.3.1-10
8de4c6
- enable parallel build
8de4c6
8de4c6
* Wed Jun 14 2017 Kamil Dudka <kdudka@redhat.com> - 5.3.1-9
8de4c6
- fix unsafe use of a static buffer in history isearch (#1461483)
8de4c6
8de4c6
* Thu Jun 08 2017 Kamil Dudka <kdudka@redhat.com> - 5.3.1-8
8de4c6
- make the zsh-html subpackage noarch (#1459657)
8de4c6
8de4c6
* Thu May 25 2017 Kamil Dudka <kdudka@redhat.com> - 5.3.1-7
8de4c6
- drop unmaintained and undocumented zshprompt.pl script
8de4c6
8de4c6
* Wed May 17 2017 Kamil Dudka <kdudka@redhat.com> - 5.3.1-6
8de4c6
- drop workaround for broken terminals over serial port (#56353)
8de4c6
8de4c6
* Thu May 11 2017 Kamil Dudka <kdudka@redhat.com> - 5.3.1-5
8de4c6
- compile with -fconserve-stack to prevent stack overflow (#1441092)
8de4c6
8de4c6
* Fri Mar 31 2017 Jason L Tibbitts III <tibbs@math.uh.edu> - 5.3.1-4
8de4c6
- Add build deps on gdbm-devel and pcre-devel.  Pass --enable-pcre to
8de4c6
  configure.  These should ensure that the pcre and gdbm modules are built.
8de4c6
  (#1438009)
8de4c6
8de4c6
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.3.1-3
8de4c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
8de4c6
8de4c6
* Thu Dec 22 2016 Kamil Dudka <kdudka@redhat.com> - 5.3.1-2
8de4c6
- do not require the hostname package when being built on RHEL-6
8de4c6
8de4c6
* Wed Dec 21 2016 Kamil Dudka <kdudka@redhat.com> - 5.3.1-1
8de4c6
- Update to latest upstream release: Zsh 5.3.1
8de4c6
8de4c6
* Wed Dec 14 2016 Kamil Dudka <kdudka@redhat.com> - 5.3-2
8de4c6
- drop zsh-4.3.6-8bit-prompts.patch which was superseeded by an upstream patch
8de4c6
  (see http://www.zsh.org/mla/users/2007/msg00468.html for details)
8de4c6
- drop undocumented zsh-test-C02-dev_fd-mock.patch
8de4c6
8de4c6
* Tue Dec 13 2016 Kamil Dudka <kdudka@redhat.com> - 5.3-1
8de4c6
- apply patches automatically to ease maintenance
8de4c6
- Update to latest upstream release: Zsh 5.3
8de4c6
8de4c6
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.2-5
8de4c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
8de4c6
8de4c6
* Wed Jan 27 2016 Kamil Dudka <kdudka@redhat.com> - 5.2-4
8de4c6
- prevent zsh from crashing when printing the "out of memory" message (#1300958)
8de4c6
8de4c6
* Thu Jan 07 2016 Jason L Tibbitts III <tibbs@math.uh.edu> - 5.2-3
8de4c6
- Add patch to fix VCS_INFO_nbvsformats bug.
8de4c6
8de4c6
* Fri Dec 25 2015 Adrien Vergé <adrienverge@gmail.com> - 5.2-2
8de4c6
- update zsh completion script for dnf to the latest upstream version
8de4c6
8de4c6
* Thu Dec 03 2015 Kamil Dudka <kdudka@redhat.com> - 5.2-1
8de4c6
- Update to latest upstream release: Zsh 5.2
8de4c6
8de4c6
* Thu Nov 05 2015 Kamil Dudka <kdudka@redhat.com> - 5.1.1-3
8de4c6
- make loading of module's dependencies work again (#1277996)
8de4c6
8de4c6
* Thu Oct 08 2015 Kamil Dudka <kdudka@redhat.com> - 5.1.1-2
8de4c6
- fix crash in ksh mode with -n and $HOME (#1269883)
8de4c6
8de4c6
* Mon Sep 14 2015 Kamil Dudka <kdudka@redhat.com> - 5.1.1-1
8de4c6
- Update to latest upstream release: Zsh 5.1.1
8de4c6
8de4c6
* Mon Aug 31 2015 Kamil Dudka <kdudka@redhat.com> - 5.1-1
8de4c6
- Update to latest upstream release: Zsh 5.1
8de4c6
- remove outdated workarounds in %%check
8de4c6
8de4c6
* Thu Jul 30 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.8-6
8de4c6
- fix handling of command substitution in math context
8de4c6
8de4c6
* Wed Jul 22 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.8-5
8de4c6
- prevent infinite recursion in ihungetc() (#1245712)
8de4c6
8de4c6
* Tue Jul 07 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.8-4
8de4c6
- backport completion for dnf (#1239337)
8de4c6
8de4c6
* Thu Jul 02 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.8-3
8de4c6
- backport completion-related upstream fixes (#1238544)
8de4c6
8de4c6
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.0.8-2
8de4c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
8de4c6
8de4c6
* Wed Jun 03 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.8-1
8de4c6
- Update to latest upstream release: Zsh 5.0.8
8de4c6
8de4c6
* Fri May 22 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.7-8
8de4c6
- fix SIGSEGV of the syntax check in ksh emulation mode (#1222867)
8de4c6
8de4c6
* Mon Apr 20 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.7-7
8de4c6
- fix SIGSEGV when handling heredocs and keyboard interrupt (#972624)
8de4c6
- queue signals when manipulating global state to avoid deadlock
8de4c6
8de4c6
* Sun Jan 25 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.7-6
8de4c6
- use correct allocation function in the new 'cd' code (#1183238)
8de4c6
8de4c6
* Fri Jan 23 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.7-5
8de4c6
- suppress a warning about closing an already closed file descriptor (#1184002)
8de4c6
- improve handling of NULL in the 'cd' built-in (#1183238)
8de4c6
8de4c6
* Wed Nov 19 2014 Kamil Dudka <kdudka@redhat.com> - 5.0.7-4
8de4c6
- update documentation of POSIX_JOBS in the zshoptions.1 man page (#1162198)
8de4c6
8de4c6
* Tue Nov 18 2014 Kamil Dudka <kdudka@redhat.com> - 5.0.7-3
8de4c6
- replace an incorrect comment in /etc/zshenv (#1164313)
8de4c6
8de4c6
* Mon Nov 10 2014 Kamil Dudka <kdudka@redhat.com> - 5.0.7-2
8de4c6
- make the wait built-in work for already exited processes (#1162198)
8de4c6
8de4c6
* Wed Oct 08 2014 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.7-1
8de4c6
- Update to latest upstream release: Zsh 5.0.7
8de4c6
8de4c6
* Thu Aug 28 2014 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.6-1
8de4c6
- Update to latest upstream release: Zsh 5.0.6
8de4c6
8de4c6
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.0.5-8
8de4c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
8de4c6
8de4c6
* Thu Jul 17 2014 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.5-7
8de4c6
- apply upstream patch which fixes CPU load issue (RHBZ#1120424)
8de4c6
8de4c6
* Wed Jul 09 2014 Adam Jackson <ajax@redhat.com> 5.0.5-6
8de4c6
- Fix missing 'fi' in %%post
8de4c6
8de4c6
* Thu Jul 03 2014 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.5-5
8de4c6
- improve handling of /etc/shells
8de4c6
8de4c6
* Wed Jul 02 2014 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.5-4
8de4c6
- fix FTBFS issue (RHBZ#1106713)
8de4c6
- remove individual _bindir setting; install to /usr/bin/ (RHBZ#1034060)
8de4c6
- require info package instead of /sbin/install-info binary
8de4c6
8de4c6
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.0.5-2
8de4c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
8de4c6
8de4c6
* Tue Apr 08 2014 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.5-1
8de4c6
- Update to latest upstream release: Zsh 5.0.5
8de4c6
8de4c6
* Thu Jan 16 2014 James Antill <james@fedoraproject.org> - 5.0.2-8
8de4c6
- Remove unneeded build require on tetex.
8de4c6
8de4c6
* Sat Oct 26 2013 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.2-7
8de4c6
- Require hostname package instead of /bin/hostname
8de4c6
8de4c6
* Tue Oct 22 2013 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.2-6
8de4c6
- remove systemd completion, it delivers it's own now (RHBZ#1022039)
8de4c6
8de4c6
* Thu Aug 01 2013 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.2-5
8de4c6
- update systemd completion (adds machinectl command)
8de4c6
8de4c6
* Tue Jun 25 2013 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.2-4
8de4c6
- up-to-date systemd completion (#949003)
8de4c6
- apply patch for building for aarch64 (#926864)
8de4c6
8de4c6
* Mon Apr 15 2013 James Antill <james@fedoraproject.org> - 5.0.2-3
8de4c6
- Fix the changelog dates.
8de4c6
- Fix the texi itemx bug.
8de4c6
- Resolves: bug#927863
8de4c6
8de4c6
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.0.2-2
8de4c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
8de4c6
8de4c6
* Tue Jan 08 2013 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.2-1
8de4c6
- Update to new upstream version: Zsh 5.0.2
8de4c6
8de4c6
* Wed Nov 21 2012 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.0-1
8de4c6
- Update to new upstream version: Zsh 5.0.0
8de4c6
8de4c6
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.17-2
8de4c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
8de4c6
8de4c6
* Sun Mar 04 2012 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.17-1
8de4c6
- Update to new upstream version: Zsh 4.3.17
8de4c6
8de4c6
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.15-2
8de4c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
8de4c6
8de4c6
* Sat Dec 24 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.15-1
8de4c6
- Update to new upstream version: Zsh 4.3.15
8de4c6
8de4c6
* Sat Dec 17 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.14-2
8de4c6
- change the License field to MIT (RHBZ#768548)
8de4c6
8de4c6
* Sat Dec 10 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.14-1
8de4c6
- Update to new upstream version: Zsh 4.3.14
8de4c6
8de4c6
* Sat Dec 03 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.13-1
8de4c6
- Update to new upstream version: Zsh 4.3.13
8de4c6
8de4c6
* Sat Aug 13 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.12-1
8de4c6
- Update to new upstream version: Zsh 4.3.12
8de4c6
8de4c6
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.11-2
8de4c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8de4c6
8de4c6
* Thu Jan 20 2011 Christopher Ailon <caillon@redhat.com> - 4.3.11-1
8de4c6
- Rebase to upstream version 4.3.11
8de4c6
8de4c6
* Tue Dec 7 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 4.3.10-6
8de4c6
- Rebuild for FTBFS https://bugzilla.redhat.com/show_bug.cgi?id=631197
8de4c6
- Remove deprecated PreReq, the packages aren't needed at runtime and they're
8de4c6
  already in Requires(post,preun,etc): lines.
8de4c6
8de4c6
* Mon Mar 22 2010 James Antill <james@fedoraproject.org> - 4.3.10-5
8de4c6
- Add pathmunge to our /etc/zshrc, for profile.d compat.
8de4c6
- Resolves: bug#548960
8de4c6
8de4c6
* Fri Aug  7 2009 James Antill <james@fedoraproject.org> - 4.3.10-4
8de4c6
- Allow --excludedocs command to work!
8de4c6
- Resolves: bug#515986
8de4c6
8de4c6
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.10-3
8de4c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
8de4c6
8de4c6
* Mon Jul 20 2009 James Antill <james@fedoraproject.org> - 4.3.10-1
8de4c6
- Import new upstream 4.3.10
8de4c6
8de4c6
* Wed Jun 10 2009 Karsten Hopp <karsten@redhat.com> 4.3.9-4.1
8de4c6
- skip D02glob test on s390, too
8de4c6
8de4c6
* Mon Mar  2 2009 James Antill <james@fedoraproject.org> - 4.3.9-4
8de4c6
- Remove D02glob testcase on ppc/ppc64, and hope noone cares
8de4c6
8de4c6
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.9-2
8de4c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild