ed81ae5
%global       releasedate 2012-08-01
cvsdist 7b811d5
cvsdist 00f58df
Name:         ksh
cvsdist 7b811d5
Summary:      The Original ATT Korn Shell
cvsdist 00f58df
URL:          http://www.kornshell.com/
64f1bf7
Group:        System Environment/Shells
53ba2c5
License:      CPL
ed81ae5
Version:      20120801
400c64a
Release:      4%{?dist}
cvsdist 7b811d5
Source0:      http://www.research.att.com/~gsf/download/tgz/ast-ksh.%{releasedate}.tgz
521d11f
Source1:      http://www.research.att.com/~gsf/download/tgz/INIT.%{releasedate}.tgz
4f90c08
Source2:      kshcomp.conf
9d5844c
Source3:      kshrc.rhs
9d5844c
Source4:      dotkshrc
67ef81e
#expected results of test suite
67ef81e
Source5:      expectedresults.log
b30d358
67ef81e
#don't use not wanted/needed builtins - Fedora/RHEL specific
b30d358
Patch1:       ksh-20070328-builtins.patch
b30d358
67ef81e
#fix regression test suite to be usable during packagebuild - Fedora/RHEL specific
67ef81e
Patch2:       ksh-20100826-fixregr.patch
400c64a
Patch3: rmdirfix.patch
67ef81e
0f16643
BuildRoot:    %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
fd54fb9
Conflicts:    pdksh
8a6e4f2
Requires: coreutils, glibc-common, diffutils
a8955dc
BuildRequires: bison
4e7626d
# regression test suite uses 'ps' from procps
4e7626d
BuildRequires: procps
c1c0ddd
Requires(post): grep, coreutils, systemd-units
0f16643
Requires(preun): grep, coreutils
cvsdist 00f58df
cvsdist 00f58df
%description
a8955dc
KSH-93 is the most recent version of the KornShell by David Korn of
cvsdist 7b811d5
AT&T Bell Laboratories.
cvsdist 7b811d5
KornShell is a shell programming language, which is upward compatible
cvsdist 7b811d5
with "sh" (the Bourne Shell).
cvsdist 7b811d5
cvsdist 00f58df
%prep
cvsdist 7b811d5
%setup -q -c
cvsdist 7b811d5
%setup -q -T -D -a 1
b30d358
%patch1 -p1 -b .builtins
67ef81e
%patch2 -p1 -b .fixregr
400c64a
%patch3 -p1 -b .rmdirfix
cvsdist 00f58df
9577e68
#/dev/fd test does not work because of mock
9577e68
sed -i 's|ls /dev/fd|ls /proc/self/fd|' src/cmd/ksh93/features/options
9577e68
cvsdist 00f58df
%build
67ef81e
./bin/package
67ef81e
./bin/package make mamake ||:
67ef81e
./bin/package make mamake ||:
ed81ae5
export CCFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing -Wno-unknown-pragmas -Wno-parentheses -Wno-unused"
8a6e4f2
export CC=gcc
8a6e4f2
./bin/package "make"
c15de2d
85f580b
#missing in latest tarball
ed81ae5
#cp lib/package/LICENSES/epl LICENSE
cvsdist 00f58df
cvsdist 00f58df
%install
cvsdist 00f58df
rm -rf $RPM_BUILD_ROOT
b30d358
mkdir -p $RPM_BUILD_ROOT{/bin,%{_bindir},%{_mandir}/man1}
59272c8
install -c -m 755 arch/*/bin/ksh $RPM_BUILD_ROOT/bin/ksh
6a00850
install -c -m 755 arch/*/bin/shcomp $RPM_BUILD_ROOT%{_bindir}/shcomp
cvsdist 7b811d5
install -c -m 644 arch/*/man/man1/sh.1 $RPM_BUILD_ROOT%{_mandir}/man1/ksh.1
9d5844c
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/skel
9d5844c
install -m 644 %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/skel/.kshrc
9d5844c
install -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/kshrc
4f90c08
install -D -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/binfmt.d/kshcomp.conf
cvsdist 00f58df
67ef81e
%check
cbec836
%if 0%{?rhel} > 6
cbec836
%ifarch s390
cbec836
exit 0
cbec836
%endif
cbec836
%endif
cbec836
67ef81e
export SHELL=$(ls $(pwd)/arch/*/bin/ksh)
67ef81e
cd src/cmd/ksh93/tests/
67ef81e
ulimit -c unlimited
472d43e
if [ ! -e /dev/fd ]
472d43e
then
472d43e
  echo "ERROR: /dev/fd does not exist, regression tests skipped"
b988ac8
  exit 0
472d43e
fi
67ef81e
$SHELL ./shtests 2>&1 | tee testresults.log
564b328
exit 0
67ef81e
sed -e '/begins at/d' -e '/ 0 error/d' -e 's/at [^\[]*\[/\[/' testresults.log -e '/tests skipped/d' >filteredresults.log
67ef81e
if ! cmp filteredresults.log %{SOURCE5} >/dev/null || ls core.*
67ef81e
then
67ef81e
  echo "Regression tests failed"
472d43e
  diff -Naurp %{SOURCE5} filteredresults.log
67ef81e
  exit -1
67ef81e
fi
67ef81e
cvsdist 7b811d5
%post
cvsdist 00f58df
if [ ! -f /etc/shells ]; then
cvsdist 00f58df
        echo "/bin/ksh" > /etc/shells
cvsdist 00f58df
else
cvsdist 00f58df
        if ! grep -q '^/bin/ksh$' /etc/shells ; then
cvsdist 00f58df
                echo "/bin/ksh" >> /etc/shells
cvsdist 00f58df
        fi
cvsdist 00f58df
fi
cvsdist 00f58df
c1c0ddd
/bin/systemctl try-restart systemd-binfmt.service >/dev/null 2>&1 || :
c1c0ddd
cvsdist 7b811d5
%postun
cvsdist 00f58df
if [ ! -f /bin/ksh ]; then
e9c80e4
	sed -i '/^\/bin\/ksh$/ d' /etc/shells
cvsdist 00f58df
fi
cvsdist 00f58df
cvsdist 7b811d5
%verifyscript
cvsdist 7b811d5
echo -n "Looking for ksh in /etc/shells... "
cvsdist 7b811d5
if ! grep '^/bin/ksh$' /etc/shells > /dev/null; then
cvsdist 7b811d5
    echo "missing"
cvsdist 7b811d5
    echo "ksh missing from /etc/shells" >&2
cvsdist 7b811d5
else
cvsdist 7b811d5
    echo "found"
cvsdist 7b811d5
fi
cvsdist 7b811d5
cvsdist 7b811d5
%files 
0f16643
%defattr(-, root, root,-)
85f580b
# LICENSE missing in latest tarball
85f580b
%doc README
b30d358
/bin/ksh
6a00850
/usr/bin/shcomp
cvsdist 00f58df
%{_mandir}/man1/*
9d5844c
%config(noreplace) %{_sysconfdir}/skel/.kshrc
9d5844c
%config(noreplace) %{_sysconfdir}/kshrc
4f90c08
%config(noreplace) %{_sysconfdir}/binfmt.d/kshcomp.conf
cvsdist 7b811d5
cvsdist 7b811d5
%clean
4f90c08
rm -rf $RPM_BUILD_ROOT
cvsdist 00f58df
cvsdist 00f58df
%changelog
400c64a
* Thu Nov 22 2012 Michal Hlavinka <mhlavink@redhat.com> - 20120801-4
400c64a
- bind Home, End, Delete,... key correctly for emacs mode
400c64a
- do not crash when executed from deleted directory
400c64a
c1c0ddd
* Fri Sep 14 2012 Michal Hlavinka <mhlavink@redhat.com> - 20120801-3
c1c0ddd
- fix typo in binfmt config file
c1c0ddd
- register binary format after package installation
c1c0ddd
4f90c08
* Thu Sep 13 2012 Michal Hlavinka <mhlavink@redhat.com> - 20120801-2
4f90c08
- add support for direct execution of compiled scripts
4f90c08
ed81ae5
* Wed Aug 08 2012 Michal Hlavinka <mhlavink@redhat.com> - 20120801-1
ed81ae5
- ksh updated to 2012-08-01
ed81ae5
d6c310f
* Mon Feb 27 2012 Michal Hlavinka <mhlavink@redhat.com> - 20110630-8
d6c310f
- fix file descriptor leak
d6c310f
0a37883
* Thu Feb 23 2012 Michal Hlavinka <mhlavink@redhat.com> - 20110630-7
0a37883
- do not crash on (incorrect) oop code (#743837)
0a37883
cbec836
* Wed Dec 07 2011 Michal Hlavinka <mhlavink@redhat.com> - 20110630-6
cbec836
- fix: ksh crashes when browsing through history containing comment (#733813)
cbec836
- fix: ksh crashes when two subseguent dots are used in variable or command name (#733544)
cbec836
- fix: ksh can prematurely exit without crash or any error
cbec836
564b328
* Fri Nov 25 2011 Michal Hlavinka <mhlavink@redhat.com> - 20110630-5
564b328
- check test does not work correctly in mock environment, make it optional for now
564b328
11134f0
* Mon Oct 03 2011 Michal Hlavinka <mhlavink@redhat.com> - 20110630-4
11134f0
- restore tty settings after timed out read (#572291)
11134f0
a48d5dd
* Fri Aug 12 2011 Michal Hlavinka <mhlavink@redhat.com> - 20110630-3
a48d5dd
- do not crash when killing last bg job when there is not any
a48d5dd
7e0932a
* Wed Aug 03 2011 Michal Hlavinka <mhlavink@redhat.com> - 20110630-2
7e0932a
- fix: IFS manipulation in a function can cause crash
7e0932a
85f580b
* Fri Jul 01 2011 Michal Hlavinka <mhlavink@redhat.com> - 20110630-1
85f580b
- ksh updated to 2011-06-30
85f580b
99a963d
* Wed Jun 08 2011 Michal Hlavinka <mhlavink@redhat.com> - 20110505-2
99a963d
- fix: resume of suspended process using pipes does not work (#708909)
99a963d
63f9177
* Mon May 09 2011 Michal Hlavinka <mhlavink@redhat.com> - 20110505-1
63f9177
- ksh updated to 2011-05-05
63f9177
1dab511
* Fri Apr 29 2011 Michal Hlavinka <mhlavink@redhat.com> - 20110428-1
1dab511
- ksh updated to 2011-04-28
1dab511
b97b525
* Mon Apr 18 2011 Michal Hlavinka <mhlavink@redhat.com> - 20110415-1
b97b525
- ksh updated to 2011-04-15
b97b525
45d8d3c
* Tue Mar 29 2011 Michal Hlavinka <mhlavink@redhat.com> - 20110208-3
45d8d3c
- fix array definition being treated as fixed array
45d8d3c
- fix suspend crashing ksh
45d8d3c
524fb3b
* Mon Mar 07 2011 Michal Hlavinka <mhlavink@redhat.com> - 20110208-2
524fb3b
- fix ( ) compound list altering environment
524fb3b
54da721
* Wed Feb 09 2011 Michal Hlavinka <mhlavink@redhat.com> - 20110208-1
54da721
- ksh updated to 2011-02-08
54da721
b5a47de
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20110202-2
b5a47de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b5a47de
dc57c15
* Fri Feb 04 2011 Michal Hlavinka <mhlavink@redhat.com> - 20110202-1
dc57c15
- ksh updated to 2011-02-02
dc57c15
26b7903
* Wed Feb 02 2011 Michal Hlavinka <mhlavink@redhat.com> - 20110131-1
26b7903
- ksh updated to 2011-01-31
26b7903
4b5b693
* Fri Jan 28 2011 Michal Hlavinka <mhlavink@redhat.com> - 20110127-1
4b5b693
- ksh updated to 2011-01-27
4b5b693
185ff53
* Thu Jan 20 2011 Michal Hlavinka <mhlavink@redhat.com> - 20110118-1
185ff53
- ksh updated to 2011-01-18
185ff53
ac13542
* Mon Jan 17 2011 Michal Hlavinka <mhlavink@redhat.com> - 20110104-1
ac13542
- ksh updated to 2011-01-04
ac13542
28f1d68
* Thu Dec 23 2010 Michal Hlavinka <mhlavink@redhat.com> - 20101212-2.20101122
28f1d68
- found ugly regression, reverting to 2010-11-22 (with io race patch) for now
28f1d68
9970a53
* Thu Dec 16 2010 Michal Hlavinka <mhlavink@redhat.com> - 20101212-1
9970a53
- ksh updated to 2010-12-12
9970a53
6ef664b
* Mon Dec 06 2010 Michal Hlavinka <mhlavink@redhat.com> - 20101201-2
6ef664b
- fix file io race condition when file was created, but still does not exist
6ef664b
fbb5937
* Fri Dec 03 2010 Michal Hlavinka <mhlavink@redhat.com> - 20101201-1
fbb5937
- ksh updated to 2010-12-01
fbb5937
8f2f757
* Tue Nov 23 2010 Michal Hlavinka <mhlavink@redhat.com> - 20101122-1
8f2f757
- ksh updated to 2010-11-22
8f2f757
3a9a1f3
* Mon Nov 01 2010 Michal Hlavinka <mhlavink@redhat.com> - 20101026-1
3a9a1f3
- ksh updated to 2010-10-26
3a9a1f3
d08af7b
* Tue Oct 12 2010 Michal Hlavinka <mhlavink@redhat.com> - 20101010-1
d08af7b
- ksh updated to 2010-10-10
d08af7b
472d43e
* Fri Oct 08 2010 Michal Hlavinka <mhlavink@redhat.com> - 20100924-2
472d43e
- disable only known to be broken builtins, let other enabled
472d43e
- skip regression tests if /dev/fd is missing
472d43e
13cc038
* Tue Sep 28 2010 Michal Hlavinka <mhlavink@redhat.com> - 20100924-1
13cc038
- ksh updated to 2010-09-24
13cc038
22f40a7
* Mon Aug 30 2010 Michal Hlavinka <mhlavink@redhat.com> - 20100826-1
22f40a7
- ksh updated to 2010-08-26
67ef81e
- make regression test suite usable during package build
22f40a7
Michal Hlavinka 431c5ae
* Fri Aug 13 2010 Michal Hlavinka <mhlavink@redhat.com> - 20100811-1
Michal Hlavinka 431c5ae
- ksh updated to 2010-08-11
Michal Hlavinka 431c5ae
1b6b225
* Thu Jul 08 2010 Michal Hlavinka <mhlavink@redhat.com> - 20100701-1
1b6b225
- updated to 2010-07-01
1b6b225
c15de2d
* Fri Jun 25 2010 Michal Hlavinka <mhlavink@redhat.com> - 20100621-1
b01fe68
- updated to 2010-06-21
c15de2d
6a00850
* Tue Jun 15 2010 Michal Hlavinka <mhlavink@redhat.com> - 20100527-2
6a00850
- add shcomp for shell compiling
6a00850
f8aa9c6
* Thu Jun 10 2010 Michal Hlavinka <mhlavink@redhat.com> - 20100527-1
f8aa9c6
- updated to 2010-05-27
f8aa9c6
e3b3c93
* Mon May 31 2010 Michal Hlavinka <mhlavink@redhat.com> - 20100309-6
e3b3c93
- add pathmunge to /etc/kshrc
e3b3c93
62b429b
* Wed May 05 2010 Michal Hlavinka <mhlavink@redhat.com> - 20100309-5
62b429b
- fix rare cd builtin crash (#578582)
62b429b
4e11346
* Wed May 05 2010 Michal Hlavinka <mhlavink@redhat.com> - 20100309-4
4e11346
- fix infinite loop when whence builtin is used with -q option (#587127)
4e11346
- fix stdin for double command substitution (#584007)
4e11346
9704bfe
* Mon Mar 29 2010 Michal Hlavinka <mhlavink@redhat.com> - 20100309-3
9704bfe
- fix typo in last patch
9704bfe
869fbb9
* Fri Mar 26 2010 Michal Hlavinka <mhlavink@redhat.com> - 20100309-2
869fbb9
- restore tty settings after timed out read for utf-8 locale
869fbb9
9577e68
* Wed Mar 10 2010 Michal Hlavinka <mhlavink@redhat.com> - 20100309-1
9577e68
- updated to 2010-03-09
9577e68
- fix mock building - detection of /dev/fd/X
9577e68
5009ddc
* Mon Jan 04 2010 Michal Hlavinka <mhlavink@redhat.com> - 20100202-1
5009ddc
- updated to 2010-02-02
5009ddc
b69a8bf
* Mon Jan 04 2010 Michal Hlavinka <mhlavink@redhat.com> - 20091224-1
b69a8bf
- updated to 2009-12-24
b69a8bf
bbed53c
* Mon Dec 07 2009 Michal Hlavinka <mhlavink@redhat.com> - 20091206-1
e5ae7db
- updated to 2009-12-06
e5ae7db
86dc5de
* Fri Dec 04 2009 Michal Hlavinka <mhlavink@redhat.com> - 20091130-1
86dc5de
- updated to 2009-11-30
86dc5de
d6838fd
* Wed Nov 18 2009 Michal Hlavinka <mhlavink@redhat.com> - 20091021-1
9419421
- updated to 2009-10-21
9419421
fdff092
* Thu Aug 27 2009 Michal Hlavinka <mhlavink@redhat.com> - 20090630-1
fdff092
- updated to 2009-06-30
fdff092
f532cf1
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20090505-2
f532cf1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
f532cf1
0ec2a03
* Mon May 11 2009 Michal Hlavinka <mhalvink@redhat.com> - 20090505-1
0ec2a03
- updated to 2009-05-05
0ec2a03
9c01939
* Tue May 05 2009 Michal Hlavinka <mhalvink@redhat.com> - 20090501-1
9c01939
- updated to 2009-05-01
9c01939
895e246
* Tue Mar 10 2009 Michal Hlavinka <mhlavink@redhat.com> - 20081104-3
895e246
- fix typos in spec file
895e246
6bc5dc6
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20081104-2
6bc5dc6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
6bc5dc6
895e246
* Tue Jan 21 2009 Michal Hlavinka <mhlavink@redhat.com> 20081104-1
b30d358
- update to 2008-11-04
b30d358
- ast-ksh-locales are not useable remove them
b30d358
895e246
* Tue Oct 21 2008 Michal Hlavinka <mhlavink@redhat.com> 20080725-4
9d5844c
- fix #467025 - Ksh fails to initialise environment when login from graphic console
9d5844c
a8955dc
* Wed Aug 06 2008 Tomas Smetana <tsmetana@redhat.com> 20080725-3
a8955dc
- fix BuildRequires, rebuild
a8955dc
53ba2c5
* Tue Aug  5 2008 Tom "spot" Callaway <tcallawa@redhat.com> 20080725-2
53ba2c5
- fix license tag
53ba2c5
a664599
* Mon Jul 28 2008 Tomas Smetana <tsmetana@redhat.com> 20080725-1
a664599
- new upstream version
a664599
a664599
* Thu Jun 26 2008 Tomas Smetana <tsmetana@redhat.com> 20080624-1
a664599
- new upstream version
a664599
0f1170c
* Mon Feb 11 2008 Tomas Smetana <tsmetana@redhat.com> 20080202-1
0f1170c
- new upstream version
0f1170c
98fd270
* Wed Jan 30 2008 Tomas Smetana <tsmetana@redhat.com> 20071105-3
98fd270
- fix #430602 - ksh segfaults after unsetting OPTIND
98fd270
64f1bf7
* Mon Jan 07 2008 Tomas Smetana <tsmetana@redhat.com> 20071105-2
64f1bf7
- fix #405381 - ksh will not handle $(xxx) when typeset -r IFS
64f1bf7
- fix #386501 - bad group in spec file
64f1bf7
4852349
* Wed Nov 07 2007 Tomas Smetana <tsmetana@redhat.com> 20071105-1
4852349
- new upstream version
4852349
b472a5e
* Wed Aug 22 2007 Tomas Smetana <tsmetana@redhat.com> 20070628-1.1
b472a5e
- rebuild
b472a5e
3de28ba
* Thu Jul 12 2007 Tomas Smetana <tsmetana@redhat.com> 20070628-1
3de28ba
- new upstream version
3de28ba
- fix unaligned access messages (Related: #219420)
3de28ba
8a6e4f2
* Tue May 22 2007 Tomas Smetana <tsmetana@redhat.com> 20070328-2
8a6e4f2
- fix wrong exit status of spawned process after SIGSTOP
8a6e4f2
- fix building of debuginfo package, add %%{?dist} to release
8a6e4f2
- fix handling of SIGTTOU in non-interactive shell
8a6e4f2
- remove useless builtins
8a6e4f2
521d11f
* Thu Apr 19 2007 Tomas Smetana <tsmetana@redhat.com> 20070328-1
521d11f
- new upstream source
521d11f
- fix login shell invocation (#182397)
521d11f
- fix memory leak
521d11f
0f16643
* Wed Feb 21 2007 Karsten Hopp <karsten@redhat.com> 20070111-1
0f16643
- new upstream version
0f16643
- fix invalid write in uname function
0f16643
e275b3a
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 20060214-1.1
e275b3a
- rebuild
e275b3a
a909292
* Thu Jun 01 2006 Karsten Hopp <karsten@redhat.de> 20060214-1
a909292
- new upstream source
a909292
6b025a3
* Mon Feb 27 2006 Karsten Hopp <karsten@redhat.de> 20060124-3
e059c66
- PreReq grep, coreutils (#182835)
e059c66
a5bc967
* Tue Feb 14 2006 Karsten Hopp <karsten@redhat.de> 20060124-2
a5bc967
- make it build in chroots (#180561)
a5bc967
c0b80f3
* Mon Feb 13 2006 Karsten Hopp <karsten@redhat.de> 20060124-1
c0b80f3
- version 20060124
c0b80f3
a9cc8bb
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 20050202-5.1
a9cc8bb
- bump again for double-long bug on ppc(64)
a9cc8bb
d2c1e3e
* Fri Feb 10 2006 Karsten Hopp <karsten@redhat.de> 20050202-5
d2c1e3e
- rebuild
d2c1e3e
ab8bcbe
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 20050202-4.1
ab8bcbe
- rebuilt for new gcc4.1 snapshot and glibc changes
ab8bcbe
997da7f
* Thu Feb 02 2006 Karsten Hopp <karsten@redhat.de> 20050202-4
fd54fb9
- fix uname -i output
fd54fb9
- fix loop (*-path.patch)
fd54fb9
- conflict pdksh instead of obsoleting it
fd54fb9
997da7f
* Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com> 20050202-3.1
2e9b9f6
- rebuilt for new gcj
2e9b9f6
6700d03
* Tue May 10 2005 Karsten Hopp <karsten@redhat.de> 20050202-3
6700d03
- enable debuginfo
6700d03
527ccdf
* Tue Mar 15 2005 Karsten Hopp <karsten@redhat.de> 20050202-2
527ccdf
- add /usr/bin/ksh link for compatibility with pdksh scripts (#151134)
527ccdf
62e78ed
* Wed Mar 02 2005 Karsten Hopp <karsten@redhat.de> 20050202-1 
62e78ed
- update and rebuild with gcc-4
62e78ed
f313d49
* Tue Mar 01 2005 Karsten Hopp <karsten@redhat.de> 20041225-2 
f313d49
- fix gcc4 build 
f313d49
c790c1f
* Fri Jan 21 2005 Karsten Hopp <karsten@redhat.de> 20041225-1
c790c1f
- rebuild with new ksh tarball (license change)
c790c1f
954d490
* Tue Nov 02 2004 Karsten Hopp <karsten@redhat.de> 20040229-11
7e82c20
- disable ia64 for now
7e82c20
df9066f
* Fri Oct 15 2004 Karsten Hopp <karsten@redhat.de> 20040229-9 
df9066f
- rebuild
df9066f
cvsdist 7b811d5
* Thu Sep 02 2004 Nalin Dahyabhai <nalin@redhat.com> 20040229-8
cvsdist 7b811d5
- remove '&' from summary
cvsdist 7b811d5
cvsdist 7b811d5
* Thu Sep 02 2004 Bill Nottingham <notting@redhat.com> 20040229-7
cvsdist 7b811d5
- obsolete pdksh (#131303)
cvsdist 7b811d5
cvsdist 7b811d5
* Mon Aug 02 2004 Karsten Hopp <karsten@redhat.de> 20040229-6
cvsdist 7b811d5
- obsolete ksh93, provide ksh93
cvsdist 7b811d5
cvsdist 7b811d5
* Mon Jul 05 2004 Karsten Hopp <karsten@redhat.de> 20040229-3 
cvsdist 7b811d5
- add /bin/ksh to /etc/shells
cvsdist 7b811d5
cvsdist 7b811d5
* Wed Jun 16 2004 Karsten Hopp <karsten@redhat.de> 20040229-2 
cvsdist 7b811d5
- add ppc64 patch to avoid ppc64 dot symbol problem
cvsdist 7b811d5
cvsdist 7b811d5
* Fri May 28 2004 Karsten Hopp <karsten@redhat.de> 20040229-1 
cvsdist 7b811d5
- initial version
cvsdist 00f58df