2004-09-09 15:20:34 +00:00
|
|
|
# this file is encoded in UTF-8 -*- coding: utf-8 -*-
|
|
|
|
|
2010-12-07 17:07:18 +00:00
|
|
|
Summary: Powerful interactive shell
|
2004-09-09 15:18:48 +00:00
|
|
|
Name: zsh
|
2015-12-03 09:31:16 +00:00
|
|
|
Version: 5.2
|
2015-12-25 12:02:15 +00:00
|
|
|
Release: 2%{?dist}
|
2011-12-17 18:28:11 +00:00
|
|
|
License: MIT
|
2011-12-03 18:56:39 +00:00
|
|
|
URL: http://zsh.sourceforge.net/
|
2004-09-09 15:18:48 +00:00
|
|
|
Group: System Environment/Shells
|
2015-12-03 09:31:16 +00:00
|
|
|
Source0: http://www.zsh.org/pub/%{name}-%{version}.tar.xz
|
2004-09-09 15:18:48 +00:00
|
|
|
Source1: zlogin.rhs
|
|
|
|
Source2: zlogout.rhs
|
|
|
|
Source3: zprofile.rhs
|
|
|
|
Source4: zshrc.rhs
|
|
|
|
Source5: zshenv.rhs
|
2004-09-09 15:20:34 +00:00
|
|
|
Source6: dotzshrc
|
2004-09-09 15:21:32 +00:00
|
|
|
Source7: zshprompt.pl
|
2015-01-23 12:30:44 +00:00
|
|
|
|
2015-06-01 11:51:46 +00:00
|
|
|
# legacy downstream patches, TODO: either get them upstream or drop them
|
|
|
|
Patch0: zsh-serial.patch
|
|
|
|
Patch1: zsh-4.3.6-8bit-prompts.patch
|
|
|
|
Patch2: zsh-test-C02-dev_fd-mock.patch
|
2015-05-22 12:48:51 +00:00
|
|
|
|
2015-12-25 12:02:15 +00:00
|
|
|
# update zsh completion script for dnf to the latest upstream version
|
|
|
|
Patch3: zsh-5.2-comp-dnf.patch
|
|
|
|
|
2012-01-11 10:48:23 +00:00
|
|
|
BuildRequires: coreutils sed ncurses-devel libcap-devel
|
2014-01-16 14:49:27 +00:00
|
|
|
BuildRequires: texinfo texi2html gawk hostname
|
2014-07-02 22:46:37 +00:00
|
|
|
Requires(post): info grep
|
|
|
|
Requires(preun): info
|
2012-01-11 10:48:23 +00:00
|
|
|
Requires(postun): coreutils grep
|
2004-09-09 15:18:48 +00:00
|
|
|
|
2014-07-02 22:46:37 +00:00
|
|
|
Provides: /bin/zsh
|
|
|
|
|
2004-09-09 15:18:48 +00:00
|
|
|
%description
|
|
|
|
The zsh shell is a command interpreter usable as an interactive login
|
|
|
|
shell and as a shell script command processor. Zsh resembles the ksh
|
|
|
|
shell (the Korn shell), but includes many enhancements. Zsh supports
|
|
|
|
command line editing, built-in spelling correction, programmable
|
|
|
|
command completion, shell functions (with autoloading), a history
|
2004-09-09 15:19:24 +00:00
|
|
|
mechanism, and more.
|
2004-09-09 15:18:48 +00:00
|
|
|
|
2004-09-09 15:21:07 +00:00
|
|
|
%package html
|
|
|
|
Summary: Zsh shell manual in html format
|
|
|
|
Group: System Environment/Shells
|
|
|
|
|
|
|
|
%description html
|
|
|
|
The zsh shell is a command interpreter usable as an interactive login
|
|
|
|
shell and as a shell script command processor. Zsh resembles the ksh
|
|
|
|
shell (the Korn shell), but includes many enhancements. Zsh supports
|
|
|
|
command line editing, built-in spelling correction, programmable
|
|
|
|
command completion, shell functions (with autoloading), a history
|
|
|
|
mechanism, and more.
|
|
|
|
|
|
|
|
This package contains the Zsh manual in html format.
|
|
|
|
|
2004-09-09 15:18:48 +00:00
|
|
|
%prep
|
|
|
|
|
|
|
|
%setup -q
|
2015-06-01 11:51:46 +00:00
|
|
|
%patch0 -p1
|
|
|
|
%patch1 -p1
|
|
|
|
%patch2 -p1
|
2015-12-25 12:02:15 +00:00
|
|
|
%patch3 -p1
|
2004-09-09 15:21:32 +00:00
|
|
|
|
|
|
|
cp -p %SOURCE7 .
|
2004-09-09 15:18:48 +00:00
|
|
|
|
|
|
|
%build
|
2015-11-05 13:17:21 +00:00
|
|
|
# make loading of module's dependencies work again (#1277996)
|
|
|
|
export LIBLDFLAGS='-z lazy'
|
|
|
|
|
2014-07-02 22:46:37 +00:00
|
|
|
%configure --enable-etcdir=%{_sysconfdir} --with-tcsetpgrp --enable-maildir-support
|
2004-09-09 15:18:48 +00:00
|
|
|
|
2004-09-09 15:21:07 +00:00
|
|
|
make all html
|
2007-02-27 22:20:14 +00:00
|
|
|
|
|
|
|
%check
|
2004-09-09 15:19:18 +00:00
|
|
|
# Run the testsuite
|
2015-08-31 08:30:26 +00:00
|
|
|
make check
|
2004-09-09 15:18:48 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2014-07-02 21:20:00 +00:00
|
|
|
|
2004-09-09 15:20:34 +00:00
|
|
|
%makeinstall install.info \
|
2014-07-02 21:20:00 +00:00
|
|
|
fndir=$RPM_BUILD_ROOT%{_datadir}/%{name}/%{version}/functions \
|
|
|
|
sitefndir=$RPM_BUILD_ROOT%{_datadir}/%{name}/site-functions \
|
|
|
|
scriptdir=$RPM_BUILD_ROOT%{_datadir}/%{name}/%{version}/scripts \
|
|
|
|
sitescriptdir=$RPM_BUILD_ROOT%{_datadir}/%{name}/scripts \
|
|
|
|
runhelpdir=$RPM_BUILD_ROOT%{_datadir}/%{name}/%{version}/help
|
2004-09-09 15:18:48 +00:00
|
|
|
|
2004-09-09 15:20:34 +00:00
|
|
|
rm -f ${RPM_BUILD_ROOT}%{_bindir}/zsh-%{version}
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
2004-09-09 15:18:48 +00:00
|
|
|
|
2004-09-09 15:20:34 +00:00
|
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}
|
2014-07-02 21:20:00 +00:00
|
|
|
for i in %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} %{SOURCE5}; do
|
|
|
|
install -m 644 $i $RPM_BUILD_ROOT%{_sysconfdir}/"$(basename $i .rhs)"
|
2004-09-09 15:18:48 +00:00
|
|
|
done
|
|
|
|
|
2014-07-02 21:20:00 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/skel
|
|
|
|
install -m 644 %{SOURCE6} $RPM_BUILD_ROOT%{_sysconfdir}/skel/.zshrc
|
2004-09-09 15:20:34 +00:00
|
|
|
|
2007-03-05 20:20:09 +00:00
|
|
|
# This is just here to shut up rpmlint, and is very annoying.
|
|
|
|
# Note that we can't chmod everything as then rpmlint will complain about
|
|
|
|
# those without a she-bang line.
|
|
|
|
for i in checkmail harden run-help zcalc zkbd; do
|
|
|
|
sed -i -e 's!/usr/local/bin/zsh!%{_bindir}/zsh!' \
|
2014-07-02 21:20:00 +00:00
|
|
|
$RPM_BUILD_ROOT%{_datadir}/zsh/%{version}/functions/$i
|
|
|
|
chmod +x $RPM_BUILD_ROOT%{_datadir}/zsh/%{version}/functions/$i
|
2007-03-05 20:20:09 +00:00
|
|
|
done
|
|
|
|
|
2014-07-02 21:20:00 +00:00
|
|
|
sed -i "s!$RPM_BUILD_ROOT%{_datadir}/%{name}/%{version}/help!%{_datadir}/%{name}/%{version}/help!" \
|
2014-07-17 17:49:15 +00:00
|
|
|
$RPM_BUILD_ROOT%{_datadir}/zsh/%{version}/functions/{run-help,_run-help}
|
2014-07-02 21:20:00 +00:00
|
|
|
|
2007-02-27 22:20:14 +00:00
|
|
|
|
2004-09-09 15:18:48 +00:00
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post
|
2014-07-03 10:13:38 +00:00
|
|
|
if [ "$1" = 1 ]; then
|
|
|
|
if [ ! -f %{_sysconfdir}/shells ] ; then
|
|
|
|
echo "%{_bindir}/%{name}" > %{_sysconfdir}/shells
|
|
|
|
echo "/bin/%{name}" >> %{_sysconfdir}/shells
|
|
|
|
else
|
|
|
|
grep -q "^%{_bindir}/%{name}$" %{_sysconfdir}/shells || echo "%{_bindir}/%{name}" >> %{_sysconfdir}/shells
|
|
|
|
grep -q "^/bin/%{name}$" %{_sysconfdir}/shells || echo "/bin/%{name}" >> %{_sysconfdir}/shells
|
2014-07-09 15:57:13 +00:00
|
|
|
fi
|
2004-09-09 15:18:48 +00:00
|
|
|
fi
|
|
|
|
|
2009-08-07 15:45:10 +00:00
|
|
|
if [ -f %{_infodir}/zsh.info.gz ]; then
|
|
|
|
# This is needed so that --excludedocs works.
|
2004-09-09 15:18:48 +00:00
|
|
|
/sbin/install-info %{_infodir}/zsh.info.gz %{_infodir}/dir \
|
2007-02-27 22:20:14 +00:00
|
|
|
--entry="* zsh: (zsh). An enhanced bourne shell."
|
2009-08-07 15:45:10 +00:00
|
|
|
fi
|
|
|
|
|
2004-09-09 15:18:48 +00:00
|
|
|
|
|
|
|
%preun
|
|
|
|
if [ "$1" = 0 ] ; then
|
2009-08-07 15:45:10 +00:00
|
|
|
if [ -f %{_infodir}/zsh.info.gz ]; then
|
|
|
|
# This is needed so that --excludedocs works.
|
2004-09-09 15:18:48 +00:00
|
|
|
/sbin/install-info --delete %{_infodir}/zsh.info.gz %{_infodir}/dir \
|
2007-02-27 22:20:14 +00:00
|
|
|
--entry="* zsh: (zsh). An enhanced bourne shell."
|
2009-08-07 15:45:10 +00:00
|
|
|
fi
|
2004-09-09 15:18:48 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
%postun
|
2014-07-03 10:13:38 +00:00
|
|
|
if [ "$1" = 0 ] && [ -f %{_sysconfdir}/shells ] ; then
|
|
|
|
sed -i '\!^%{_bindir}/%{name}$!d' %{_sysconfdir}/shells
|
|
|
|
sed -i '\!^/bin/%{name}$!d' %{_sysconfdir}/shells
|
2004-09-09 15:18:48 +00:00
|
|
|
fi
|
|
|
|
|
2014-07-03 10:13:38 +00:00
|
|
|
|
2004-09-09 15:18:48 +00:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2005-01-03 21:20:49 +00:00
|
|
|
%doc README LICENCE Etc/BUGS Etc/CONTRIBUTORS Etc/FAQ FEATURES MACHINES
|
|
|
|
%doc NEWS Etc/zsh-development-guide Etc/completion-style-guide zshprompt.pl
|
2004-09-09 15:20:34 +00:00
|
|
|
%attr(755,root,root) %{_bindir}/zsh
|
2004-09-09 15:18:48 +00:00
|
|
|
%{_mandir}/*/*
|
|
|
|
%{_infodir}/*
|
2004-09-09 15:19:18 +00:00
|
|
|
%{_datadir}/zsh
|
2004-09-09 15:20:34 +00:00
|
|
|
%{_libdir}/zsh
|
2007-02-28 03:46:10 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/skel/.z*
|
2007-02-27 22:20:14 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/z*
|
2004-09-09 15:18:48 +00:00
|
|
|
|
2004-09-09 15:21:07 +00:00
|
|
|
%files html
|
|
|
|
%defattr(-,root,root)
|
2007-07-25 14:57:18 +00:00
|
|
|
%doc Doc/*.html
|
2004-09-09 15:21:07 +00:00
|
|
|
|
2004-09-09 15:18:48 +00:00
|
|
|
%changelog
|
2015-12-25 12:02:15 +00:00
|
|
|
* Fri Dec 25 2015 Adrien Vergé <adrienverge@gmail.com> - 5.2-2
|
|
|
|
- update zsh completion script for dnf to the latest upstream version
|
|
|
|
|
2015-12-03 09:31:16 +00:00
|
|
|
* Thu Dec 03 2015 Kamil Dudka <kdudka@redhat.com> - 5.2-1
|
|
|
|
- Update to latest upstream release: Zsh 5.2
|
|
|
|
|
2015-11-05 13:17:21 +00:00
|
|
|
* Thu Nov 05 2015 Kamil Dudka <kdudka@redhat.com> - 5.1.1-3
|
|
|
|
- make loading of module's dependencies work again (#1277996)
|
|
|
|
|
2015-10-08 13:00:31 +00:00
|
|
|
* Thu Oct 08 2015 Kamil Dudka <kdudka@redhat.com> - 5.1.1-2
|
|
|
|
- fix crash in ksh mode with -n and $HOME (#1269883)
|
|
|
|
|
2015-09-14 11:00:19 +00:00
|
|
|
* Mon Sep 14 2015 Kamil Dudka <kdudka@redhat.com> - 5.1.1-1
|
|
|
|
- Update to latest upstream release: Zsh 5.1.1
|
|
|
|
|
2015-08-31 08:24:37 +00:00
|
|
|
* Mon Aug 31 2015 Kamil Dudka <kdudka@redhat.com> - 5.1-1
|
|
|
|
- Update to latest upstream release: Zsh 5.1
|
2015-08-31 08:30:26 +00:00
|
|
|
- remove outdated workarounds in %%check
|
2015-08-31 08:24:37 +00:00
|
|
|
|
2015-07-30 15:46:51 +00:00
|
|
|
* Thu Jul 30 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.8-6
|
|
|
|
- fix handling of command substitution in math context
|
|
|
|
|
2015-07-22 15:46:28 +00:00
|
|
|
* Wed Jul 22 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.8-5
|
|
|
|
- prevent infinite recursion in ihungetc() (#1245712)
|
|
|
|
|
2015-07-07 09:45:32 +00:00
|
|
|
* Tue Jul 07 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.8-4
|
|
|
|
- backport completion for dnf (#1239337)
|
|
|
|
|
2015-07-02 09:00:36 +00:00
|
|
|
* Thu Jul 02 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.8-3
|
|
|
|
- backport completion-related upstream fixes (#1238544)
|
|
|
|
|
2015-06-19 04:50:44 +00:00
|
|
|
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.0.8-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-06-01 11:51:46 +00:00
|
|
|
* Wed Jun 03 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.8-1
|
|
|
|
- Update to latest upstream release: Zsh 5.0.8
|
|
|
|
|
2015-05-22 12:48:51 +00:00
|
|
|
* Fri May 22 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.7-8
|
|
|
|
- fix SIGSEGV of the syntax check in ksh emulation mode (#1222867)
|
|
|
|
|
2015-04-20 10:26:16 +00:00
|
|
|
* Mon Apr 20 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.7-7
|
|
|
|
- fix SIGSEGV when handling heredocs and keyboard interrupt (#972624)
|
2015-04-20 10:44:30 +00:00
|
|
|
- queue signals when manipulating global state to avoid deadlock
|
2015-04-20 10:26:16 +00:00
|
|
|
|
2015-01-25 21:26:59 +00:00
|
|
|
* Sun Jan 25 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.7-6
|
|
|
|
- use correct allocation function in the new 'cd' code (#1183238)
|
|
|
|
|
2015-01-20 13:44:36 +00:00
|
|
|
* Fri Jan 23 2015 Kamil Dudka <kdudka@redhat.com> - 5.0.7-5
|
|
|
|
- suppress a warning about closing an already closed file descriptor (#1184002)
|
2015-01-23 12:30:44 +00:00
|
|
|
- improve handling of NULL in the 'cd' built-in (#1183238)
|
2015-01-20 13:44:36 +00:00
|
|
|
|
2014-11-19 17:43:57 +00:00
|
|
|
* Wed Nov 19 2014 Kamil Dudka <kdudka@redhat.com> - 5.0.7-4
|
|
|
|
- update documentation of POSIX_JOBS in the zshoptions.1 man page (#1162198)
|
|
|
|
|
2014-11-18 12:50:45 +00:00
|
|
|
* Tue Nov 18 2014 Kamil Dudka <kdudka@redhat.com> - 5.0.7-3
|
|
|
|
- replace an incorrect comment in /etc/zshenv (#1164313)
|
|
|
|
|
2014-11-10 14:38:40 +00:00
|
|
|
* Mon Nov 10 2014 Kamil Dudka <kdudka@redhat.com> - 5.0.7-2
|
|
|
|
- make the wait built-in work for already exited processes (#1162198)
|
|
|
|
|
2014-10-07 20:27:11 +00:00
|
|
|
* Wed Oct 08 2014 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.7-1
|
|
|
|
- Update to latest upstream release: Zsh 5.0.7
|
|
|
|
|
2014-08-28 20:20:51 +00:00
|
|
|
* Thu Aug 28 2014 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.6-1
|
|
|
|
- Update to latest upstream release: Zsh 5.0.6
|
|
|
|
|
2014-08-18 11:49:29 +00:00
|
|
|
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.0.5-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-17 17:49:15 +00:00
|
|
|
* Thu Jul 17 2014 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.5-7
|
|
|
|
- apply upstream patch which fixes CPU load issue (RHBZ#1120424)
|
|
|
|
|
2014-07-09 15:57:13 +00:00
|
|
|
* Wed Jul 09 2014 Adam Jackson <ajax@redhat.com> 5.0.5-6
|
|
|
|
- Fix missing 'fi' in %%post
|
|
|
|
|
2014-07-03 10:13:38 +00:00
|
|
|
* Thu Jul 03 2014 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.5-5
|
|
|
|
- improve handling of /etc/shells
|
|
|
|
|
2014-07-02 22:46:37 +00:00
|
|
|
* Wed Jul 02 2014 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.5-4
|
2014-07-02 21:20:00 +00:00
|
|
|
- fix FTBFS issue (RHBZ#1106713)
|
2014-07-02 22:46:37 +00:00
|
|
|
- remove individual _bindir setting; install to /usr/bin/ (RHBZ#1034060)
|
|
|
|
- require info package instead of /sbin/install-info binary
|
2014-07-02 21:20:00 +00:00
|
|
|
|
2014-06-07 18:18:42 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.0.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-04-08 21:20:34 +00:00
|
|
|
* Tue Apr 08 2014 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.5-1
|
|
|
|
- Update to latest upstream release: Zsh 5.0.5
|
|
|
|
|
2014-01-16 14:49:27 +00:00
|
|
|
* Thu Jan 16 2014 James Antill <james@fedoraproject.org> - 5.0.2-8
|
|
|
|
- Remove unneeded build require on tetex.
|
|
|
|
|
2013-10-25 23:17:58 +00:00
|
|
|
* Sat Oct 26 2013 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.2-7
|
|
|
|
- Require hostname package instead of /bin/hostname
|
|
|
|
|
2013-10-22 21:28:06 +00:00
|
|
|
* Tue Oct 22 2013 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.2-6
|
|
|
|
- remove systemd completion, it delivers it's own now (RHBZ#1022039)
|
|
|
|
|
2013-08-01 00:47:37 +00:00
|
|
|
* Thu Aug 01 2013 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.2-5
|
|
|
|
- update systemd completion (adds machinectl command)
|
|
|
|
|
2013-06-25 21:56:17 +00:00
|
|
|
* Tue Jun 25 2013 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.2-4
|
|
|
|
- up-to-date systemd completion (#949003)
|
|
|
|
- apply patch for building for aarch64 (#926864)
|
|
|
|
|
2013-04-15 21:39:18 +00:00
|
|
|
* Mon Apr 15 2013 James Antill <james@fedoraproject.org> - 5.0.2-3
|
2013-04-15 22:36:23 +00:00
|
|
|
- Fix the changelog dates.
|
|
|
|
- Fix the texi itemx bug.
|
2013-04-15 21:39:18 +00:00
|
|
|
- Resolves: bug#927863
|
|
|
|
|
2013-02-15 04:24:32 +00:00
|
|
|
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.0.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2013-01-08 22:49:15 +00:00
|
|
|
* Tue Jan 08 2013 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.2-1
|
|
|
|
- Update to new upstream version: Zsh 5.0.2
|
|
|
|
|
2012-11-21 22:18:20 +00:00
|
|
|
* Wed Nov 21 2012 Dominic Hopf <dmaphy@fedoraproject.org> - 5.0.0-1
|
|
|
|
- Update to new upstream version: Zsh 5.0.0
|
|
|
|
|
2012-07-22 08:34:02 +00:00
|
|
|
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.17-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2013-04-15 22:03:25 +00:00
|
|
|
* Sun Mar 04 2012 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.17-1
|
2012-03-04 13:52:40 +00:00
|
|
|
- Update to new upstream version: Zsh 4.3.17
|
|
|
|
|
2012-01-14 09:39:41 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.15-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-12-24 18:23:41 +00:00
|
|
|
* Sat Dec 24 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.15-1
|
|
|
|
- Update to new upstream version: Zsh 4.3.15
|
|
|
|
|
2011-12-17 18:28:11 +00:00
|
|
|
* Sat Dec 17 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.14-2
|
|
|
|
- change the License field to MIT (RHBZ#768548)
|
|
|
|
|
2013-04-15 21:39:18 +00:00
|
|
|
* Sat Dec 10 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.14-1
|
2011-12-09 23:37:09 +00:00
|
|
|
- Update to new upstream version: Zsh 4.3.14
|
|
|
|
|
2011-12-03 16:48:26 +00:00
|
|
|
* Sat Dec 03 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.13-1
|
|
|
|
- Update to new upstream version: Zsh 4.3.13
|
|
|
|
|
2011-12-03 16:37:23 +00:00
|
|
|
* Sat Aug 13 2011 Dominic Hopf <dmaphy@fedoraproject.org> - 4.3.12-1
|
|
|
|
- Update to new upstream version: Zsh 4.3.12
|
|
|
|
|
2011-02-08 09:15:46 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.11-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-20 22:59:03 +00:00
|
|
|
* Thu Jan 20 2011 Christopher Ailon <caillon@redhat.com> - 4.3.11-1
|
|
|
|
- Rebase to upstream version 4.3.11
|
|
|
|
|
2010-12-07 17:07:18 +00:00
|
|
|
* Tue Dec 7 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 4.3.10-6
|
|
|
|
- Rebuild for FTBFS https://bugzilla.redhat.com/show_bug.cgi?id=631197
|
|
|
|
- Remove deprecated PreReq, the packages aren't needed at runtime and they're
|
|
|
|
already in Requires(post,preun,etc): lines.
|
|
|
|
|
2010-03-22 14:06:04 +00:00
|
|
|
* Mon Mar 22 2010 James Antill <james@fedoraproject.org> - 4.3.10-5
|
|
|
|
- Add pathmunge to our /etc/zshrc, for profile.d compat.
|
|
|
|
- Resolves: bug#548960
|
|
|
|
|
2009-08-07 15:45:10 +00:00
|
|
|
* Fri Aug 7 2009 James Antill <james@fedoraproject.org> - 4.3.10-4
|
|
|
|
- Allow --excludedocs command to work!
|
|
|
|
- Resolves: bug#515986
|
|
|
|
|
2009-07-27 09:04:54 +00:00
|
|
|
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.10-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-07-21 04:23:12 +00:00
|
|
|
* Mon Jul 20 2009 James Antill <james@fedoraproject.org> - 4.3.10-1
|
|
|
|
- Import new upstream 4.3.10
|
|
|
|
|
2009-06-10 12:43:06 +00:00
|
|
|
* Wed Jun 10 2009 Karsten Hopp <karsten@redhat.com> 4.3.9-4.1
|
|
|
|
- skip D02glob test on s390, too
|
|
|
|
|
2009-03-02 16:53:31 +00:00
|
|
|
* Mon Mar 2 2009 James Antill <james@fedoraproject.org> - 4.3.9-4
|
|
|
|
- Remove D02glob testcase on ppc/ppc64, and hope noone cares
|
2009-03-02 15:38:22 +00:00
|
|
|
|
2009-02-25 18:45:43 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.9-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|