Blame SPECS/mksh.spec

98323c
Summary:          MirBSD enhanced version of the Korn Shell
98323c
Name:             mksh
98323c
Version:          59c
98323c
Release:          5%{?dist}
98323c
# BSD (setmode.c), ISC (strlcpy.c), MirOS (the rest)
98323c
License:          MirOS and ISC and BSD
98323c
URL:              https://www.mirbsd.org/mksh.htm
98323c
Source0:          https://www.mirbsd.org/MirOS/dist/mir/%{name}/%{name}-R%{version}.tgz
98323c
Source1:          dot-mkshrc
98323c
Source2:          rtchecks.expected
98323c
Conflicts:        filesystem < 3
98323c
Provides:         /bin/ksh
98323c
Provides:         /bin/lksh
98323c
Provides:         /bin/mksh
98323c
%if 0%{?fedora} > 33 || 0%{?rhel} > 8
98323c
Provides:         /bin/rksh
98323c
%endif
98323c
Provides:         /bin/rlksh
98323c
Provides:         /bin/rmksh
98323c
Requires(post):   grep
98323c
Requires(post):   %{_sbindir}/alternatives
98323c
Requires(preun):  %{_sbindir}/alternatives
98323c
Requires(postun): sed
98323c
BuildRequires:    gcc
98323c
BuildRequires:    util-linux
98323c
BuildRequires:    ed
98323c
BuildRequires:    perl-interpreter
98323c
BuildRequires:    perl(Getopt::Std)
98323c
BuildRequires:    sed
98323c
98323c
%description
98323c
mksh is the MirBSD enhanced version of the Public Domain Korn shell (pdksh),
98323c
a bourne-compatible shell which is largely similar to the original AT&T Korn
98323c
shell. It includes bug fixes and feature improvements in order to produce a
98323c
modern, robust shell good for interactive and especially script use, being a
98323c
bourne shell replacement, pdksh successor and an alternative to the C shell.
98323c
98323c
%prep
98323c
%setup -q -n %{name}
98323c
98323c
# we'll need this later
98323c
cat >rtchecks <<'EOF'
98323c
typeset -i sari=0
98323c
typeset -Ui uari=0
98323c
typeset -i x=0
98323c
print -r -- $((x++)):$sari=$uari. #0
98323c
let --sari --uari
98323c
print -r -- $((x++)):$sari=$uari. #1
98323c
sari=2147483647 uari=2147483647
98323c
print -r -- $((x++)):$sari=$uari. #2
98323c
let ++sari ++uari
98323c
print -r -- $((x++)):$sari=$uari. #3
98323c
let --sari --uari
98323c
let 'sari *= 2' 'uari *= 2'
98323c
let ++sari ++uari
98323c
print -r -- $((x++)):$sari=$uari. #4
98323c
let ++sari ++uari
98323c
print -r -- $((x++)):$sari=$uari. #5
98323c
sari=-2147483648 uari=-2147483648
98323c
print -r -- $((x++)):$sari=$uari. #6
98323c
let --sari --uari
98323c
print -r -- $((x++)):$sari=$uari. #7
98323c
(( sari = -5 >> 1 ))
98323c
((# uari = -5 >> 1 ))
98323c
print -r -- $((x++)):$sari=$uari. #8
98323c
(( sari = -2 ))
98323c
((# uari = sari ))
98323c
print -r -- $((x++)):$sari=$uari. #9
98323c
EOF
98323c
98323c
%build
98323c
CFLAGS="$RPM_OPT_FLAGS -DMKSH_DISABLE_EXPERIMENTAL" LDFLAGS="$RPM_LD_FLAGS" sh Build.sh -r
98323c
cp test.sh test_mksh.sh
98323c
HAVE_PERSISTENT_HISTORY=0; export HAVE_PERSISTENT_HISTORY
98323c
CFLAGS="$RPM_OPT_FLAGS -DMKSH_DISABLE_EXPERIMENTAL" LDFLAGS="$RPM_LD_FLAGS" sh Build.sh -L -r
98323c
cp -f test.sh test_lksh.sh
98323c
./mksh FAQ2HTML.sh
98323c
98323c
%install
98323c
install -D -m 755 %{name} $RPM_BUILD_ROOT%{_bindir}/%{name}
98323c
install -D -m 755 lksh $RPM_BUILD_ROOT%{_bindir}/lksh
98323c
install -D -m 644 %{name}.1 $RPM_BUILD_ROOT%{_mandir}/man1/%{name}.1
98323c
install -D -m 644 lksh.1 $RPM_BUILD_ROOT%{_mandir}/man1/lksh.1
98323c
install -D -p -m 644 dot.mkshrc $RPM_BUILD_ROOT%{_sysconfdir}/mkshrc
98323c
install -D -p -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/skel/.mkshrc
98323c
ln -s %{name} $RPM_BUILD_ROOT%{_bindir}/rmksh
98323c
ln -s lksh $RPM_BUILD_ROOT%{_bindir}/rlksh
98323c
ln -s %{name}.1 $RPM_BUILD_ROOT%{_mandir}/man1/rmksh.1
98323c
ln -s lksh.1 $RPM_BUILD_ROOT%{_mandir}/man1/rlksh.1
98323c
%if 0%{?fedora} > 33 || 0%{?rhel} > 8
98323c
touch $RPM_BUILD_ROOT{%{_bindir}/{ksh,rksh},%{_mandir}/man1/{ksh,rksh}.1}
98323c
%else
98323c
touch $RPM_BUILD_ROOT{%{_bindir}/ksh,%{_mandir}/man1/ksh.1}
98323c
%endif
98323c
98323c
%check
98323c
./mksh rtchecks >rtchecks.got 2>&1
98323c
if ! cmp --quiet rtchecks.got %{SOURCE2}
98323c
then
98323c
  echo "rtchecks failed"
98323c
  diff -Naurp %{SOURCE2} rtchecks.got
98323c
  exit 1
98323c
fi
98323c
98323c
for tf in test_mksh.sh test_lksh.sh
98323c
do
98323c
  echo > test.wait
98323c
  script -qc "./$tf"' -v; x=$?; rm -f test.wait; exit $x'
98323c
  maxwait=0
98323c
  while test -e test.wait; do
98323c
    sleep 1
98323c
    maxwait=$(expr $maxwait + 1)
98323c
    test $maxwait -lt 900 || break
98323c
  done
98323c
done
98323c
98323c
%post
98323c
for d in /bin %{_bindir}; do
98323c
%if 0%{?fedora} > 33 || 0%{?rhel} > 8
98323c
  for s in ksh %{name} rksh rmksh; do
98323c
%else
98323c
  for s in ksh %{name} rmksh; do
98323c
%endif
98323c
    grep -q '^'"$d/$s"'$' %{_sysconfdir}/shells 2>/dev/null || echo "$d/$s" >> /etc/shells
98323c
  done
98323c
done
98323c
98323c
%{_sbindir}/alternatives --install %{_bindir}/ksh ksh %{_bindir}/%{name} 10 \
98323c
%if 0%{?fedora} > 33 || 0%{?rhel} > 8
98323c
  --slave %{_bindir}/rksh rksh %{_bindir}/%{name} \
98323c
%endif
98323c
  --slave %{_mandir}/man1/ksh.1.gz ksh-man %{_mandir}/man1/%{name}.1.gz \
98323c
%if 0%{?fedora} > 33 || 0%{?rhel} > 8
98323c
  --slave %{_mandir}/man1/rksh.1.gz rksh-man %{_mandir}/man1/%{name}.1.gz
98323c
%endif
98323c
98323c
%preun
98323c
if [ $1 -eq 0 ]; then
98323c
  %{_sbindir}/alternatives --remove ksh %{_bindir}/%{name}
98323c
fi
98323c
98323c
%postun
98323c
for d in /bin %{_bindir}; do
98323c
  for s in ksh %{name} rksh rmksh; do
98323c
    [ ! -x "$d/$s" ] && sed -e 's@^'"$d/$s"'$@POSTUNREMOVE@' -e '/^POSTUNREMOVE$/d' -i %{_sysconfdir}/shells
98323c
  done
98323c
done
98323c
98323c
%files
98323c
%doc dot.mkshrc FAQ.htm
98323c
%ghost %{_bindir}/ksh
98323c
%{_bindir}/lksh
98323c
%{_bindir}/%{name}
98323c
%if 0%{?fedora} > 33 || 0%{?rhel} > 8
98323c
%ghost %{_bindir}/rksh
98323c
%endif
98323c
%{_bindir}/rlksh
98323c
%{_bindir}/rmksh
98323c
%config(noreplace) %{_sysconfdir}/mkshrc
98323c
%config(noreplace) %{_sysconfdir}/skel/.mkshrc
98323c
%ghost %{_mandir}/man1/ksh.1*
98323c
%{_mandir}/man1/lksh.1*
98323c
%{_mandir}/man1/%{name}.1*
98323c
%if 0%{?fedora} > 33 || 0%{?rhel} > 8
98323c
%ghost %{_mandir}/man1/rksh.1*
98323c
%endif
98323c
%{_mandir}/man1/rlksh.1*
98323c
%{_mandir}/man1/rmksh.1*
98323c
98323c
%changelog
98323c
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 59c-5
98323c
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
98323c
  Related: rhbz#1991688
98323c
98323c
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 59c-4
98323c
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
98323c
98323c
* Wed Mar 24 2021 Robert Scheck <robert@fedoraproject.org> 59c-3
98323c
- Add alternatives switching for rksh
98323c
98323c
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 59c-2
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
98323c
98323c
* Mon Nov 02 2020 Robert Scheck <robert@fedoraproject.org> 59c-1
98323c
- Upgrade to 59c (#1893414)
98323c
- Add alternatives switching for ksh (#1879002)
98323c
98323c
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 59b-2
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
98323c
98323c
* Sun May 17 2020 Robert Scheck <robert@fedoraproject.org> 59b-1
98323c
- Upgrade to 59b (#1836572)
98323c
98323c
* Wed Apr 15 2020 Robert Scheck <robert@fedoraproject.org> 59-1
98323c
- Upgrade to 59 (#1823973)
98323c
98323c
* Fri Mar 27 2020 Robert Scheck <robert@fedoraproject.org> 58-1
98323c
- Upgrade to 58 (#1817981)
98323c
98323c
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 57-3
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
98323c
98323c
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 57-2
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
98323c
98323c
* Mon Mar 25 2019 Robert Scheck <robert@fedoraproject.org> 57-1
98323c
- Upgrade to 57 (#1684737)
98323c
98323c
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 56c-5
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
98323c
98323c
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 56c-4
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
98323c
98323c
* Sun Feb 18 2018 Robert Scheck <robert@fedoraproject.org> 56c-3
98323c
- Build flags injection is only partially successful (#1543842)
98323c
 
98323c
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 56c-2
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
98323c
98323c
* Sun Jan 14 2018 Robert Scheck <robert@fedoraproject.org> 56c-1
98323c
- Upgrade to 56c
98323c
98323c
* Tue Aug 29 2017 Robert Scheck <robert@fedoraproject.org> 56b-1
98323c
- Upgrade to 56b
98323c
98323c
* Wed Aug 09 2017 Michal Hlavinka <mhlavink@redhat.com> 56-1
98323c
- Upgrade to 56 (#1479800)
98323c
- fixes wait exit codes of co-processes when run in interactive mode (#1479320)
98323c
98323c
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 55-3
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
98323c
98323c
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 55-2
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
98323c
98323c
* Thu Apr 13 2017 Robert Scheck <robert@fedoraproject.org> 55-1
98323c
- Upgrade to 55
98323c
98323c
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 54-2
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
98323c
98323c
* Sun Nov 13 2016 Robert Scheck <robert@fedoraproject.org> 54-1
98323c
- Upgrade to 54 (#1394477)
98323c
98323c
* Sun Aug 28 2016 Robert Scheck <robert@fedoraproject.org> 53a-1
98323c
- Upgrade to 53a (#1370764)
98323c
98323c
* Mon Mar 07 2016 Robert Scheck <robert@fedoraproject.org> 52c-1
98323c
- Upgrade to 52c
98323c
98323c
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 52b-2
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
98323c
98323c
* Thu Jan 21 2016 Robert Scheck <robert@fedoraproject.org> 52b-1
98323c
- Upgrade to 52b (#1300482)
98323c
98323c
* Sun Dec 13 2015 Robert Scheck <robert@fedoraproject.org> 52-1
98323c
- Upgrade to 52 (#1291069)
98323c
98323c
* Sat Jul 11 2015 Robert Scheck <robert@fedoraproject.org> 51-1
98323c
- Upgrade to 51 (#1242108)
98323c
98323c
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 50f-2
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
98323c
98323c
* Mon Apr 20 2015 Robert Scheck <robert@fedoraproject.org> 50f-1
98323c
- Upgrade to 50f
98323c
98323c
* Thu Mar 19 2015 Robert Scheck <robert@fedoraproject.org> 50e-1
98323c
- Upgrade to 50e
98323c
- Apply https://fedoraproject.org/wiki/Features/UsrMove
98323c
98323c
* Wed Oct 08 2014 Robert Scheck <robert@fedoraproject.org> 50d-1
98323c
- Upgrade to 50d (#1150493)
98323c
98323c
* Fri Oct 03 2014 Robert Scheck <robert@fedoraproject.org> 50c-1
98323c
- Upgrade to 50c
98323c
98323c
* Thu Sep 11 2014 Robert Scheck <robert@fedoraproject.org> 50b-1
98323c
- Upgrade to 50b
98323c
98323c
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 50-2
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
98323c
98323c
* Thu Jul 03 2014 Robert Scheck <robert@fedoraproject.org> 50-1
98323c
- Upgrade to 50
98323c
98323c
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 49-2
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
98323c
98323c
* Tue Jan 14 2014 Robert Scheck <robert@fedoraproject.org> 49-1
98323c
- Upgrade to 49
98323c
98323c
* Sun Aug 25 2013 Robert Scheck <robert@fedoraproject.org> 48b-1
98323c
- Upgrade to 48b
98323c
98323c
* Sat Aug 03 2013 Robert Scheck <robert@fedoraproject.org> 47-1
98323c
- Upgrade to 47
98323c
98323c
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 46-2
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
98323c
98323c
* Fri May 03 2013 Thorsten Glaser <tg@mirbsd.org> 46-1
98323c
- Upgrade mksh to R46
98323c
98323c
* Wed May 01 2013 Thorsten Glaser <tg@mirbsd.org> 45-1
98323c
- Upgrade mksh to R45 and the other files to the accompanying versions
98323c
- Drop workaround for GCC PR55009 (no longer needed)
98323c
- Use https for homepage
98323c
98323c
* Mon Mar 18 2013 Robert Scheck <robert@fedoraproject.org> 44-1
98323c
- Upgrade to 44 and work around bug in GCC 4.8 (#922974)
98323c
98323c
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 41-2
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
98323c
98323c
* Mon Dec 03 2012 Michal Hlavinka <mhlavink@redhat.com> - 41-1
98323c
- Upgrade to 41
98323c
98323c
* Fri Jul 20 2012 Michal Hlavinka <mhlavink@redhat.com> - 40i-0.20120630
98323c
- Upgrade to pre-release of 40i
98323c
- includes new legacy shell lksh for old scripts requiring pdksh or similar old
98323c
  ksh-88 shell, see man lksh for differences
98323c
98323c
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 40d-3
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
98323c
98323c
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 40d-2
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
98323c
98323c
* Sun Dec 11 2011 Robert Scheck <robert@fedoraproject.org> 40d-1
98323c
- Upgrade to 40d
98323c
98323c
* Tue Nov 22 2011 Robert Scheck <robert@fedoraproject.org> 40c-1
98323c
- Upgrade to 40c
98323c
98323c
* Thu Jul 28 2011 Robert Scheck <robert@fedoraproject.org> 40b-2
98323c
- Use new "Build.sh -r -c lto" rather "Build.sh -r -combine"
98323c
98323c
* Thu Jul 28 2011 Robert Scheck <robert@fedoraproject.org> 40b-1
98323c
- Upgrade to 40b
98323c
98323c
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 39c-5
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
98323c
98323c
* Tue Jan 04 2011 Michal Hlavinka <mhlavink@redhat.com> 39c-4
98323c
- fix crash when bad substitution is used
98323c
98323c
* Wed Jul 21 2010 Michal Hlavinka <mhlavink@redhat.com> 39c-3
98323c
- fix crash when alias contains alias
98323c
- fix crash when xtrace is enabled
98323c
98323c
* Sun Jul 11 2010 Robert Scheck <robert@fedoraproject.org> 39c-2
98323c
- Added default configuration /etc/mkshrc & /etc/skel/.mkshrc
98323c
  as default skel (like at bash; thanks to Michal Hlavinka)
98323c
- Corrected the license tag (thanks to Michal Hlavinka)
98323c
- Removed the arc4random.c file (upstream is phasing it out)
98323c
98323c
* Sat Feb 27 2010 Robert Scheck <robert@fedoraproject.org> 39c-1
98323c
- Upgrade to 39c and updated arc4random.c file
98323c
98323c
* Thu Aug 13 2009 Robert Scheck <robert@fedoraproject.org> 39-1
98323c
- Upgrade to 39 and updated arc4random.c file
98323c
98323c
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 38b-2
98323c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
98323c
98323c
* Sun May 31 2009 Robert Scheck <robert@fedoraproject.org> 38b-1
98323c
- Upgrade to 38b
98323c
98323c
* Sun May 31 2009 Robert Scheck <robert@fedoraproject.org> 38-1
98323c
- Upgrade to 38 and updated arc4random.c file
98323c
- Used -combine (-fwhole-program) rather the old -j switch
98323c
98323c
* Sun Apr 05 2009 Robert Scheck <robert@fedoraproject.org> 37b-1
98323c
- Upgrade to 37b
98323c
98323c
* Mon Feb 23 2009 Robert Scheck <robert@fedoraproject.org> 36b-2
98323c
- Rebuild against gcc 4.4 and rpm 4.6
98323c
98323c
* Sun Dec 14 2008 Robert Scheck <robert@fedoraproject.org> 36b-1
98323c
- Upgrade to 36b and updated arc4random.c file
98323c
98323c
* Tue Dec 02 2008 Robert Scheck <robert@fedoraproject.org> 36-2
98323c
- Upstream patch for command hang/high cpu workload (#474115)
98323c
98323c
* Sat Oct 25 2008 Robert Scheck <robert@fedoraproject.org> 36-1
98323c
- Upgrade to 36
98323c
98323c
* Sat Jul 19 2008 Robert Scheck <robert@fedoraproject.org> 35b-1
98323c
- Upgrade to 35b
98323c
98323c
* Sun Jul 13 2008 Robert Scheck <robert@fedoraproject.org> 35-1
98323c
- Upgrade to 35
98323c
98323c
* Sat Apr 12 2008 Robert Scheck <robert@fedoraproject.org> 33d-1
98323c
- Upgrade to 33d
98323c
98323c
* Fri Apr 04 2008 Robert Scheck <robert@fedoraproject.org> 33c-1
98323c
- Upgrade to 33c and updated arc4random.c file
98323c
98323c
* Mon Mar 03 2008 Robert Scheck <robert@fedoraproject.org> 33-1
98323c
- Upgrade to 33
98323c
98323c
* Sun Feb 10 2008 Robert Scheck <robert@fedoraproject.org> 32-2
98323c
- Rebuild against gcc 4.3
98323c
98323c
* Sat Nov 10 2007 Robert Scheck <robert@fedoraproject.org> 32-1
98323c
- Upgrade to 32
98323c
- Solved fork problems in %%check (thanks to Thorsten Glaser)
98323c
98323c
* Mon Oct 15 2007 Robert Scheck <robert@fedoraproject.org> 31d-1
98323c
- Upgrade to 31d
98323c
98323c
* Wed Sep 12 2007 Robert Scheck <robert@fedoraproject.org> 31c-1
98323c
- Upgrade to 31c
98323c
- Added a buildrequirement to ed, added arc4random.c file
98323c
98323c
* Tue Sep 11 2007 Robert Scheck <robert@fedoraproject.org> 31b-1
98323c
- Upgrade to 31b
98323c
- Use script to get %%check happy (thanks to Thorsten Glaser)
98323c
98323c
* Sat Sep 08 2007 Robert Scheck <robert@fedoraproject.org> 31-1
98323c
- Upgrade to 31
98323c
98323c
* Tue Aug 28 2007 Robert Scheck <robert@fedoraproject.org> 30-2
98323c
- Updated the license tag according to the guidelines
98323c
98323c
* Sat Jul 28 2007 Robert Scheck <robert@fedoraproject.org> 30-1
98323c
- Upgrade to 30
98323c
98323c
* Sat Jul 14 2007 Robert Scheck <robert@fedoraproject.org> 29g-1
98323c
- Upgrade to 29g
98323c
98323c
* Sun Jun 03 2007 Robert Scheck <robert@fedoraproject.org> 29f-1
98323c
- Upgrade to 29f
98323c
- Initial spec file for Fedora and Red Hat Enterprise Linux