psss / rpms / zsh

Forked from rpms/zsh 5 years ago
Clone
4a912ff
Summary: Powerful interactive shell
cvsdist abdd31b
Name: zsh
cf91222
Version: 5.6.1
80f10cc
Release: 1%{?dist}
b9e1bb9
License: MIT
e74224a
URL: http://zsh.sourceforge.net/
3f5fc8c
Source0: https://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.xz
cvsdist abdd31b
Source1: zlogin.rhs
cvsdist abdd31b
Source2: zlogout.rhs
cvsdist abdd31b
Source3: zprofile.rhs
cvsdist abdd31b
Source4: zshrc.rhs
cvsdist abdd31b
Source5: zshenv.rhs
cvsdist 2c8e3f3
Source6: dotzshrc
0a55867
bde7c93
BuildRequires: autoconf
aeca120
BuildRequires: coreutils
aeca120
BuildRequires: gawk
d8fb0ec
BuildRequires: gcc
3174c77
BuildRequires: gdbm-devel
aeca120
BuildRequires: libcap-devel
aeca120
BuildRequires: ncurses-devel
3174c77
BuildRequires: pcre-devel
aeca120
BuildRequires: sed
aeca120
BuildRequires: texi2html
aeca120
BuildRequires: texinfo
536e457
Requires(post): info grep
536e457
Requires(preun): info
3d4d1c8
Requires(postun): coreutils grep
cvsdist abdd31b
f927889
# the hostname package is not available on RHEL-6
f927889
%if 12 < 0%{?fedora} || 6 < 0%{?rhel}
f927889
BuildRequires: hostname
0facfde
%else
0facfde
# /bin and /usr/bin are separate directories on RHEL-6
0facfde
%define _bindir /bin
f927889
%endif
f927889
536e457
Provides: /bin/zsh
536e457
cvsdist abdd31b
%description
cvsdist abdd31b
The zsh shell is a command interpreter usable as an interactive login
cvsdist abdd31b
shell and as a shell script command processor.  Zsh resembles the ksh
cvsdist abdd31b
shell (the Korn shell), but includes many enhancements.  Zsh supports
cvsdist abdd31b
command line editing, built-in spelling correction, programmable
cvsdist abdd31b
command completion, shell functions (with autoloading), a history
cvsdist 538cfb0
mechanism, and more.
cvsdist abdd31b
cvsdist 21be858
%package html
cvsdist 21be858
Summary: Zsh shell manual in html format
53b1ddc
BuildArch:	noarch
cvsdist 21be858
cvsdist 21be858
%description html
cvsdist 21be858
The zsh shell is a command interpreter usable as an interactive login
cvsdist 21be858
shell and as a shell script command processor.  Zsh resembles the ksh
cvsdist 21be858
shell (the Korn shell), but includes many enhancements.  Zsh supports
cvsdist 21be858
command line editing, built-in spelling correction, programmable
cvsdist 21be858
command completion, shell functions (with autoloading), a history
cvsdist 21be858
mechanism, and more.
cvsdist 21be858
cvsdist 21be858
This package contains the Zsh manual in html format.
cvsdist 21be858
cvsdist abdd31b
%prep
a130c3c
%autosetup -p1
bde7c93
autoreconf -fiv
cvsdist abdd31b
296a50b
# enable parallel build
296a50b
sed -e 's|^\.NOTPARALLEL|#.NOTPARALLEL|' -i 'Config/defs.mk.in'
296a50b
cvsdist abdd31b
%build
024b754
# make build of run-time loadable modules work again (#1535422)
024b754
%undefine _strict_symbol_defs_build
024b754
b5cac6b
# make loading of module's dependencies work again (#1277996)
b5cac6b
export LIBLDFLAGS='-z lazy'
b5cac6b
3174c77
%configure \
3174c77
    --enable-etcdir=%{_sysconfdir} \
3174c77
    --with-tcsetpgrp \
3174c77
    --enable-maildir-support \
3174c77
    --enable-pcre
cvsdist abdd31b
296a50b
# prevent the build from failing while running in parallel
5e1d734
make -C Src headers
5e1d734
make -C Src -f Makemod zsh{path,xmod}s.h version.h
296a50b
296a50b
make %{?_smp_mflags} all html
jantill dd07451
jantill dd07451
%check
cvsdist 83b6adb
# Run the testsuite
9335e8c
make check
cvsdist abdd31b
cvsdist abdd31b
%install
0f6b2f9
%make_install install.info \
0f6b2f9
  fndir=%{_datadir}/%{name}/%{version}/functions \
0f6b2f9
  sitefndir=%{_datadir}/%{name}/site-functions \
0f6b2f9
  scriptdir=%{_datadir}/%{name}/%{version}/scripts \
0f6b2f9
  sitescriptdir=%{_datadir}/%{name}/scripts \
0f6b2f9
  runhelpdir=%{_datadir}/%{name}/%{version}/help
cvsdist abdd31b
c7a0df2
rm -f $RPM_BUILD_ROOT%{_bindir}/zsh-%{version}
cvsdist 2c8e3f3
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
cvsdist abdd31b
cvsdist 2c8e3f3
mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}
0adc038
for i in %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} %{SOURCE5}; do
0adc038
    install -m 644 $i $RPM_BUILD_ROOT%{_sysconfdir}/"$(basename $i .rhs)"
cvsdist abdd31b
done
cvsdist abdd31b
0adc038
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/skel
0adc038
install -m 644 %{SOURCE6} $RPM_BUILD_ROOT%{_sysconfdir}/skel/.zshrc
cvsdist 2c8e3f3
jantill 2cc004c
# This is just here to shut up rpmlint, and is very annoying.
jantill 2cc004c
# Note that we can't chmod everything as then rpmlint will complain about
jantill 2cc004c
# those without a she-bang line.
jantill 2cc004c
for i in checkmail harden run-help zcalc zkbd; do
jantill 2cc004c
    sed -i -e 's!/usr/local/bin/zsh!%{_bindir}/zsh!' \
0adc038
    $RPM_BUILD_ROOT%{_datadir}/zsh/%{version}/functions/$i
0adc038
    chmod +x $RPM_BUILD_ROOT%{_datadir}/zsh/%{version}/functions/$i
jantill 2cc004c
done
jantill 2cc004c
jantill dd07451
cvsdist abdd31b
%post
370e715
if [ "$1" = 1 ]; then
370e715
  if [ ! -f %{_sysconfdir}/shells ] ; then
370e715
    echo "%{_bindir}/%{name}" > %{_sysconfdir}/shells
370e715
    echo "/bin/%{name}" >> %{_sysconfdir}/shells
370e715
  else
370e715
    grep -q "^%{_bindir}/%{name}$" %{_sysconfdir}/shells || echo "%{_bindir}/%{name}" >> %{_sysconfdir}/shells
370e715
    grep -q "^/bin/%{name}$" %{_sysconfdir}/shells || echo "/bin/%{name}" >> %{_sysconfdir}/shells
c18d189
  fi
cvsdist abdd31b
fi
cvsdist abdd31b
41a26d8
if [ -f %{_infodir}/zsh.info.gz ]; then
41a26d8
# This is needed so that --excludedocs works.
cvsdist abdd31b
/sbin/install-info %{_infodir}/zsh.info.gz %{_infodir}/dir \
jantill dd07451
  --entry="* zsh: (zsh).			An enhanced bourne shell."
41a26d8
fi
41a26d8
cvsdist abdd31b
cvsdist abdd31b
%preun
cvsdist abdd31b
if [ "$1" = 0 ] ; then
41a26d8
    if [ -f %{_infodir}/zsh.info.gz ]; then
41a26d8
    # This is needed so that --excludedocs works.
cvsdist abdd31b
    /sbin/install-info --delete %{_infodir}/zsh.info.gz %{_infodir}/dir \
jantill dd07451
      --entry="* zsh: (zsh).			An enhanced bourne shell."
41a26d8
    fi
cvsdist abdd31b
fi
cvsdist abdd31b
cvsdist abdd31b
%postun
370e715
if [ "$1" = 0 ] && [ -f %{_sysconfdir}/shells ] ; then
370e715
  sed -i '\!^%{_bindir}/%{name}$!d' %{_sysconfdir}/shells
370e715
  sed -i '\!^/bin/%{name}$!d' %{_sysconfdir}/shells
cvsdist abdd31b
fi
cvsdist abdd31b
370e715
cvsdist abdd31b
%files
e473665
%doc README LICENCE Etc/BUGS Etc/CONTRIBUTORS Etc/FAQ FEATURES MACHINES
79b8b89
%doc NEWS Etc/zsh-development-guide Etc/completion-style-guide
cvsdist 2c8e3f3
%attr(755,root,root) %{_bindir}/zsh
cvsdist abdd31b
%{_mandir}/*/*
cvsdist abdd31b
%{_infodir}/*
cvsdist 83b6adb
%{_datadir}/zsh
cvsdist 2c8e3f3
%{_libdir}/zsh
jantill 41d85bb
%config(noreplace) %{_sysconfdir}/skel/.z*
jantill dd07451
%config(noreplace) %{_sysconfdir}/z*
cvsdist abdd31b
cvsdist 21be858
%files html
104f9d3
%doc Doc/*.html
cvsdist 21be858
cvsdist abdd31b
%changelog
cf91222
* Mon Sep 10 2018 Kamil Dudka <kdudka@redhat.com> - 5.6.1-1
cf91222
- update to latest upstream release
cf91222
80f10cc
* Tue Sep 04 2018 Kamil Dudka <kdudka@redhat.com> - 5.6-1
80f10cc
- update to latest upstream release (fixes CVE-2018-0502 and CVE-2018-13259)
80f10cc
c32c635
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.1-2
c32c635
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
c32c635
3f5fc8c
* Tue Apr 17 2018 Kamil Dudka <kdudka@redhat.com> - 5.5.1-1
3f5fc8c
- update to latest upstream release
3f5fc8c
b106d63
* Mon Apr 09 2018 Kamil Dudka <kdudka@redhat.com> - 5.5-1
b106d63
- update to latest upstream release, which fixes the following vulnerabilities:
b106d63
    CVE-2018-1100 - stack-based buffer overflow in utils.c:checkmailpath()
b106d63
    CVE-2018-1083 - stack-based buffer overflow in compctl.c:gen_matches_files()
b106d63
    CVE-2018-1071 - stack-based buffer overflow in exec.c:hashcmd()
b106d63
1ae6264
* Tue Mar 06 2018 Kamil Dudka <kdudka@redhat.com> - 5.4.2-7
1313177
- avoid crash when copying empty hash table (CVE-2018-7549)
1ae6264
- avoid NULL dereference when using ${(PA)...} on an empty array (CVE-2018-7548)
1ae6264
d8fb0ec
* Mon Feb 19 2018 Kamil Dudka <kdudka@redhat.com> - 5.4.2-6
d8fb0ec
- add explicit BR for the gcc compiler
d8fb0ec
35751b4
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.4.2-5
35751b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
35751b4
024b754
* Mon Jan 22 2018 Kamil Dudka <kdudka@redhat.com> - 5.4.2-4
024b754
- make build of run-time loadable modules work again (#1535422)
024b754
71407aa
* Tue Jan 16 2018 Kamil Dudka <kdudka@redhat.com> - 5.4.2-3
71407aa
- rebuild against latest gdbm-devel (#1533176)
71407aa
bde7c93
* Wed Oct 04 2017 Kamil Dudka <kdudka@redhat.com> - 5.4.2-2
bde7c93
- make the call depth limit configurable by $FUNCNEST (#1441092)
bde7c93
71a7860
* Mon Aug 28 2017 Kamil Dudka <kdudka@redhat.com> - 5.4.2-1
71a7860
- update to latest upstream release
71a7860
0facfde
* Wed Aug 09 2017 Kamil Dudka <kdudka@redhat.com> - 5.4.1-1
0facfde
- update to latest upstream release
0facfde
c7a0df2
* Tue Aug 01 2017 Kamil Dudka <kdudka@redhat.com> - 5.3.1-12
0f6b2f9
- use %%make_install instead of %%makeinstall, which is deprecated
c7a0df2
- modernize spec file (Group tag, %%clean, %%defattr)
c7a0df2
9b9d0e1
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.3.1-11
9b9d0e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
9b9d0e1
296a50b
* Fri Jul 07 2017 Kamil Dudka <kdudka@redhat.com> - 5.3.1-10
296a50b
- enable parallel build
296a50b
914fcff
* Wed Jun 14 2017 Kamil Dudka <kdudka@redhat.com> - 5.3.1-9
914fcff
- fix unsafe use of a static buffer in history isearch (#1461483)
914fcff
53b1ddc
* Thu Jun 08 2017 Kamil Dudka <kdudka@redhat.com> - 5.3.1-8
53b1ddc
- make the zsh-html subpackage noarch (#1459657)
53b1ddc
79b8b89
* Thu May 25 2017 Kamil Dudka <kdudka@redhat.com> - 5.3.1-7
79b8b89
- drop unmaintained and undocumented zshprompt.pl script
79b8b89
16616a0
* Wed May 17 2017 Kamil Dudka <kdudka@redhat.com> - 5.3.1-6
16616a0
- drop workaround for broken terminals over serial port (#56353)
16616a0
2524ac4
* Thu May 11 2017 Kamil Dudka <kdudka@redhat.com> - 5.3.1-5
2524ac4
- compile with -fconserve-stack to prevent stack overflow (#1441092)
2524ac4
3174c77
* Fri Mar 31 2017 Jason L Tibbitts III <tibbs@math.uh.edu> - 5.3.1-4
3174c77
- Add build deps on gdbm-devel and pcre-devel.  Pass --enable-pcre to
3174c77
  configure.  These should ensure that the pcre and gdbm modules are built.
2524ac4
  (#1438009)
3174c77
971da55
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.3.1-3
971da55
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
971da55
f927889
* Thu Dec 22 2016 Kamil Dudka <kdudka@redhat.com> - 5.3.1-2
f927889
- do not require the hostname package when being built on RHEL-6
f927889
45dc16f
* Wed Dec 21 2016 Kamil Dudka <kdudka@redhat.com> - 5.3.1-1
45dc16f
- Update to latest upstream release: Zsh 5.3.1
45dc16f
6250bc1
* Wed Dec 14 2016 Kamil Dudka <kdudka@redhat.com> - 5.3-2
91b32e7
- drop zsh-4.3.6-8bit-prompts.patch which was superseeded by an upstream patch
91b32e7
  (see http://www.zsh.org/mla/users/2007/msg00468.html for details)
6250bc1
- drop undocumented zsh-test-C02-dev_fd-mock.patch
6250bc1
f760987
* Tue Dec 13 2016 Kamil Dudka <kdudka@redhat.com> - 5.3-1
a130c3c
- apply patches automatically to ease maintenance
f760987
- Update to latest upstream release: Zsh 5.3
f760987
b1af2d5
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.2-5
b1af2d5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b1af2d5
47196ec
* Wed Jan 27 2016 Kamil Dudka <kdudka@redhat.com> - 5.2-4
47196ec
- prevent zsh from crashing when printing the "out of memory" message (#1300958)
47196ec
6fca6da
* Thu Jan 07 2016 Jason L Tibbitts III <tibbs@math.uh.edu> - 5.2-3
6fca6da
- Add patch to fix VCS_INFO_nbvsformats bug.
6fca6da
d4994fb
* Fri Dec 25 2015 Adrien Vergé <adrienverge@gmail.com> - 5.2-2
d4994fb
- update zsh completion script for dnf to the latest upstream version
d4994fb
624aa08
* Thu Dec 03 2015 Kamil Dudka <kdudka@redhat.com> - 5.2-1
624aa08
- Update to latest upstream release: Zsh 5.2
624aa08
b5cac6b
* Thu Nov 05 2015 Kamil Dudka <kdudka@redhat.com> - 5.1.1-3
b5cac6b
- make loading of module's dependencies work again (#1277996)
b5cac6b
01a2dcb
* Thu Oct 08 2015 Kamil Dudka <kdudka@redhat.com> - 5.1.1-2
01a2dcb
- fix crash in ksh mode with -n and $HOME (#1269883)
01a2dcb
10ded2c
* Mon Sep 14 2015 Kamil Dudka <kdudka@redhat.com> - 5.1.1-1
10ded2c
- Update to latest upstream release: Zsh 5.1.1
10ded2c
818fbe1
* Mon Aug 31 2015 Kamil Dudka <kdudka@redhat.com> - 5.1-1
818fbe1
- Update to latest upstream release: Zsh 5.1
9335e8c
- remove outdated workarounds in %%check
818fbe1
b8ecd59
* Thu Jul 30 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.8-6
b8ecd59
- fix handling of command substitution in math context
b8ecd59
daebc62
* Wed Jul 22 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.8-5
daebc62
- prevent infinite recursion in ihungetc() (#1245712)
daebc62
6f88cea
* Tue Jul 07 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.8-4
6f88cea
- backport completion for dnf (#1239337)
6f88cea
97afa7b
* Thu Jul 02 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.8-3
97afa7b
- backport completion-related upstream fixes (#1238544)
97afa7b
c0bde13
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.0.8-2
c0bde13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
c0bde13
b84eb4b
* Wed Jun 03 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.8-1
b84eb4b
- Update to latest upstream release: Zsh 5.0.8
b84eb4b
724b3ef
* Fri May 22 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.7-8
724b3ef
- fix SIGSEGV of the syntax check in ksh emulation mode (#1222867)
724b3ef
2aa4672
* Mon Apr 20 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.7-7
2aa4672
- fix SIGSEGV when handling heredocs and keyboard interrupt (#972624)
f449934
- queue signals when manipulating global state to avoid deadlock
2aa4672
6a607c8
* Sun Jan 25 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.7-6
6a607c8
- use correct allocation function in the new 'cd' code (#1183238)
6a607c8
cb022db
* Fri Jan 23 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.7-5
cb022db
- suppress a warning about closing an already closed file descriptor (#1184002)
0a55867
- improve handling of NULL in the 'cd' built-in (#1183238)
cb022db
5385c4a
* Wed Nov 19 2014 Kamil Dudka <kdudka@redhat.com> - 5.0.7-4
5385c4a
- update documentation of POSIX_JOBS in the zshoptions.1 man page (#1162198)
5385c4a
00e87b8
* Tue Nov 18 2014 Kamil Dudka <kdudka@redhat.com> - 5.0.7-3
00e87b8
- replace an incorrect comment in /etc/zshenv (#1164313)
00e87b8
7e97ffe
* Mon Nov 10 2014 Kamil Dudka <kdudka@redhat.com> - 5.0.7-2
7e97ffe
- make the wait built-in work for already exited processes (#1162198)
7e97ffe
91eafeb
* Wed Oct 08 2014 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.7-1
91eafeb
- Update to latest upstream release: Zsh 5.0.7
91eafeb
4a1cd94
* Thu Aug 28 2014 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.6-1
4a1cd94
- Update to latest upstream release: Zsh 5.0.6
4a1cd94
a1eea49
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.0.5-8
a1eea49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
a1eea49
54f9ac2
* Thu Jul 17 2014 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.5-7
54f9ac2
- apply upstream patch which fixes CPU load issue (RHBZ#1120424)
54f9ac2
c18d189
* Wed Jul 09 2014 Adam Jackson <ajax@redhat.com> 5.0.5-6
c18d189
- Fix missing 'fi' in %%post
c18d189
370e715
* Thu Jul 03 2014 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.5-5
370e715
- improve handling of /etc/shells
370e715
536e457
* Wed Jul 02 2014 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.5-4
0adc038
- fix FTBFS issue (RHBZ#1106713)
536e457
- remove individual _bindir setting; install to /usr/bin/ (RHBZ#1034060)
536e457
- require info package instead of /sbin/install-info binary
0adc038
f4ae700
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.0.5-2
f4ae700
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
f4ae700
04261fe
* Tue Apr 08 2014 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.5-1
04261fe
- Update to latest upstream release: Zsh 5.0.5
04261fe
James Antill 965dc7d
* Thu Jan 16 2014 James Antill <james@fedoraproject.org> - 5.0.2-8
James Antill 965dc7d
- Remove unneeded build require on tetex.
James Antill 965dc7d
69de01e
* Sat Oct 26 2013 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.2-7
69de01e
- Require hostname package instead of /bin/hostname
69de01e
3ec3062
* Tue Oct 22 2013 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.2-6
3ec3062
- remove systemd completion, it delivers it's own now (RHBZ#1022039)
3ec3062
6f0b000
* Thu Aug 01 2013 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.2-5
6f0b000
- update systemd completion (adds machinectl command)
6f0b000
d4b3a69
* Tue Jun 25 2013 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.2-4
d4b3a69
- up-to-date systemd completion (#949003)
d4b3a69
- apply patch for building for aarch64 (#926864)
d4b3a69
James Antill eed19bb
* Mon Apr 15 2013 James Antill <james@fedoraproject.org> - 5.0.2-3
James Antill 06d9066
- Fix the changelog dates.
James Antill 06d9066
- Fix the texi itemx bug.
James Antill eed19bb
- Resolves: bug#927863
James Antill eed19bb
eef328c
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.0.2-2
eef328c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
eef328c
68051d9
* Tue Jan 08 2013 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.2-1
68051d9
- Update to new upstream version: Zsh 5.0.2
68051d9
c7523c4
* Wed Nov 21 2012 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.0-1
c7523c4
- Update to new upstream version: Zsh 5.0.0
c7523c4
e409dc3
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.17-2
e409dc3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e409dc3
James Antill f1aca06
* Sun Mar 04 2012 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.17-1
b1ed0a2
- Update to new upstream version: Zsh 4.3.17
b1ed0a2
f0a3a93
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.15-2
f0a3a93
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
f0a3a93
9283c33
* Sat Dec 24 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.15-1
9283c33
- Update to new upstream version: Zsh 4.3.15
9283c33
b9e1bb9
* Sat Dec 17 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.14-2
b9e1bb9
- change the License field to MIT (RHBZ#768548)
b9e1bb9
James Antill eed19bb
* Sat Dec 10 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.14-1
13c0390
- Update to new upstream version: Zsh 4.3.14
13c0390
273f53f
* Sat Dec 03 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.13-1
273f53f
- Update to new upstream version: Zsh 4.3.13
273f53f
3f163a2
* Sat Aug 13 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.12-1
3f163a2
- Update to new upstream version: Zsh 4.3.12
3f163a2
d425c25
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.11-2
d425c25
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
d425c25
Christopher Aillon 42493ed
* Thu Jan 20 2011 Christopher Ailon <caillon@redhat.com> - 4.3.11-1
Christopher Aillon 42493ed
- Rebase to upstream version 4.3.11
Christopher Aillon 42493ed
4a912ff
* Tue Dec 7 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 4.3.10-6
4a912ff
- Rebuild for FTBFS https://bugzilla.redhat.com/show_bug.cgi?id=631197
4a912ff
- Remove deprecated PreReq, the packages aren't needed at runtime and they're
4a912ff
  already in Requires(post,preun,etc): lines.
4a912ff
901bc01
* Mon Mar 22 2010 James Antill <james@fedoraproject.org> - 4.3.10-5
901bc01
- Add pathmunge to our /etc/zshrc, for profile.d compat.
901bc01
- Resolves: bug#548960
901bc01
41a26d8
* Fri Aug  7 2009 James Antill <james@fedoraproject.org> - 4.3.10-4
41a26d8
- Allow --excludedocs command to work!
41a26d8
- Resolves: bug#515986
41a26d8
3fcc40f
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.10-3
3fcc40f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
3fcc40f
d3e6239
* Mon Jul 20 2009 James Antill <james@fedoraproject.org> - 4.3.10-1
d3e6239
- Import new upstream 4.3.10
d3e6239
bcdc344
* Wed Jun 10 2009 Karsten Hopp <karsten@redhat.com> 4.3.9-4.1
bcdc344
- skip D02glob test on s390, too
bcdc344
4b7fae2
* Mon Mar  2 2009 James Antill <james@fedoraproject.org> - 4.3.9-4
4b7fae2
- Remove D02glob testcase on ppc/ppc64, and hope noone cares
629e052
21ca26d
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.9-2
21ca26d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild