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