Blame SPECS/bison.spec

89d4b4
Summary: A GNU general-purpose parser generator
89d4b4
Name: bison
89d4b4
Version: 3.0.4
89d4b4
Release: 10%{?dist}
89d4b4
License: GPLv3+
89d4b4
Group: Development/Tools
89d4b4
Source: ftp://ftp.gnu.org/pub/gnu/bison/bison-%{version}.tar.xz
89d4b4
89d4b4
# https://bugzilla.redhat.com/show_bug.cgi?id=948856
89d4b4
# Submitted for upstream inclusion on 2013-05-17.
89d4b4
Patch0: bison-3.0.4-c++-test-failure.patch
89d4b4
Patch1: bison-3.0.4-gnulib-fseterr.patch
89d4b4
89d4b4
# testsuite dependency
89d4b4
BuildRequires: autoconf
89d4b4
BuildRequires: flex
89d4b4
BuildRequires: gcc-c++
89d4b4
89d4b4
URL: http://www.gnu.org/software/bison/
89d4b4
BuildRoot: %{_tmppath}/%{name}-root
89d4b4
BuildRequires: m4 >= 1.4
89d4b4
#java-1.7.0-openjdk-devel
89d4b4
Requires: m4 >= 1.4
89d4b4
Requires(post): /sbin/install-info
89d4b4
Requires(preun): /sbin/install-info
89d4b4
89d4b4
# bison contains a copy of gnulib.  As a copylib, gnulib was granted
89d4b4
# an exception that allows bundling it with other software.  For
89d4b4
# details, see:
89d4b4
# https://fedoraproject.org/wiki/Packaging:No_Bundled_Libraries#Exceptions
89d4b4
Provides: bundled(gnulib)
89d4b4
89d4b4
%description
89d4b4
Bison is a general purpose parser generator that converts a grammar
89d4b4
description for an LALR(1) context-free grammar into a C program to
89d4b4
parse that grammar. Bison can be used to develop a wide range of
89d4b4
language parsers, from ones used in simple desk calculators to complex
89d4b4
programming languages. Bison is upwardly compatible with Yacc, so any
89d4b4
correctly written Yacc grammar should work with Bison without any
89d4b4
changes. If you know Yacc, you shouldn't have any trouble using
89d4b4
Bison. You do need to be very proficient in C programming to be able
89d4b4
to use Bison. Bison is only needed on systems that are used for
89d4b4
development.
89d4b4
89d4b4
If your system will be used for C development, you should install
89d4b4
Bison.
89d4b4
89d4b4
%package devel
89d4b4
Summary: -ly library for development using Bison-generated parsers
89d4b4
Group: Development/Libraries
89d4b4
Provides: bison-static = %{version}-%{release}
89d4b4
89d4b4
%description devel
89d4b4
The bison-devel package contains the -ly library sometimes used by
89d4b4
programs using Bison-generated parsers.  If you are developing programs
89d4b4
using Bison, you might want to link with this library.  This library
89d4b4
is not required by all Bison-generated parsers, but may be employed by
89d4b4
simple programs to supply minimal support for the generated parsers.
89d4b4
89d4b4
# -ly is kept static.  It only contains two symbols: main and yyerror,
89d4b4
# and both of these are extremely simple (couple lines of C total).
89d4b4
# It doesn't really pay off to introduce a shared library for that.
89d4b4
#
89d4b4
# Therefore -devel subpackage could have been created as -static, but
89d4b4
# the split was done in Jan 2005, which predates current guidelines.
89d4b4
# Besides there is logic to that: the library is devel in the sense
89d4b4
# that the generated parser could be distributed together with other
89d4b4
# sources, and only bison-devel would be necessary to wrap the build.
89d4b4
89d4b4
%package runtime
89d4b4
Summary: Runtime support files used by Bison-generated parsers
89d4b4
Group: Development/Libraries
89d4b4
89d4b4
%description runtime
89d4b4
The bison-runtime package contains files used at runtime by parsers
89d4b4
that Bison generates.  Packages whose binaries contain parsers
89d4b4
generated by Bison should depend on bison-runtime to ensure that
89d4b4
these files are available.  See the Internationalization in the
89d4b4
Bison manual section for more information.
89d4b4
89d4b4
%prep
89d4b4
%setup -q
89d4b4
%patch0 -p1
89d4b4
%patch1 -p1
89d4b4
89d4b4
%build
89d4b4
%configure
89d4b4
make
89d4b4
89d4b4
%check
89d4b4
make check
89d4b4
#make maintainer-check
89d4b4
89d4b4
%install
89d4b4
rm -rf $RPM_BUILD_ROOT
89d4b4
%makeinstall
89d4b4
89d4b4
# Remove unpackaged files.
89d4b4
rm -f $RPM_BUILD_ROOT/%{_bindir}/yacc
89d4b4
rm -f $RPM_BUILD_ROOT/%{_infodir}/dir
89d4b4
rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/yacc*
89d4b4
rm -f $RPM_BUILD_ROOT/%{_docdir}/%{name}/examples/calc++/*
89d4b4
rm -f $RPM_BUILD_ROOT/%{_docdir}/%{name}/examples/mfcalc/*
89d4b4
rm -f $RPM_BUILD_ROOT/%{_docdir}/%{name}/examples/rpcalc/*
89d4b4
89d4b4
%find_lang %{name}
89d4b4
%find_lang %{name}-runtime
89d4b4
89d4b4
gzip -9nf ${RPM_BUILD_ROOT}%{_infodir}/bison.info*
89d4b4
89d4b4
%post
89d4b4
if [ -f %{_infodir}/bison.info.gz ]; then # for --excludedocs
89d4b4
   /sbin/install-info %{_infodir}/bison.info.gz %{_infodir}/dir --entry="* bison: (bison).                        The GNU parser generator." || :
89d4b4
fi
89d4b4
89d4b4
%preun
89d4b4
if [ $1 = 0 ]; then
89d4b4
    if [ -f %{_infodir}/bison.info.gz ]; then # for --excludedocs
89d4b4
      /sbin/install-info --delete %{_infodir}/bison.info.gz %{_infodir}/dir --entry="* bison: (bison).                        The GNU parser generator." || :
89d4b4
    fi
89d4b4
fi
89d4b4
89d4b4
# The distribution contains also source files.  These are used by m4
89d4b4
# when the target parser file is generated.
89d4b4
%files -f %{name}.lang
89d4b4
%defattr(-,root,root)
89d4b4
%doc AUTHORS ChangeLog NEWS README THANKS TODO COPYING
89d4b4
%{_mandir}/*/bison*
89d4b4
%{_datadir}/bison
89d4b4
%{_infodir}/bison.info*
89d4b4
%{_bindir}/bison
89d4b4
%{_datadir}/aclocal/bison*.m4
89d4b4
89d4b4
%files -f %{name}-runtime.lang runtime
89d4b4
%doc COPYING
89d4b4
89d4b4
%files devel
89d4b4
%doc COPYING
89d4b4
%defattr(-,root,root)
89d4b4
%{_libdir}/liby.a
89d4b4
89d4b4
%clean
89d4b4
rm -rf $RPM_BUILD_ROOT
89d4b4
89d4b4
%changelog
89d4b4
* Sun Aug 05 2018 Patsy Griffin Franklin <pfrankli@redhat.com> - 3.0.4-10
89d4b4
- Add changes needed to gnulib fseterr.c since libio.h has been removed.
89d4b4
 
89d4b4
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.4-9
89d4b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
89d4b4
89d4b4
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.4-8
89d4b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
89d4b4
89d4b4
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.4-7
89d4b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
89d4b4
89d4b4
* Mon Feb 13 2017 Patsy Franklin <pfrankli@redhat.com> - 3.0.4-6
89d4b4
- Proposed upstream patch to fix testsuite failures for tests 430-432.
89d4b4
  BZ #1422261
89d4b4
89d4b4
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.4-5
89d4b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
89d4b4
89d4b4
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.4-4
89d4b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
89d4b4
89d4b4
* Thu Oct 22 2015 Patsy Franklin <pfrankli@redhat.com> - 3.0.4-3
89d4b4
- Remove unpackaged files.
89d4b4
89d4b4
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.4-2
89d4b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
89d4b4
89d4b4
* Mon Mar 02 2015 Patsy Franklin <pfrankli@redhat.com> - 2.0.4-1
89d4b4
- Rebase to 3.0.4.
89d4b4
89d4b4
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.2-3
89d4b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
89d4b4
89d4b4
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.2-2
89d4b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
89d4b4
89d4b4
* Mon Dec 09 2013 Patsy Franklin <pfrankli@redhat.com> - 3.0.2-1
89d4b4
- Rebase to 3.0.2.  Add BuildRequires: flex for testsuite.
89d4b4
89d4b4
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7-3
89d4b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
89d4b4
89d4b4
* Fri May 17 2013 Petr Machata <pmachata@redhat.com> - 2.7-2
89d4b4
- Drop unused options --raw, -n, -e, --include and -I
89d4b4
89d4b4
* Thu Mar 21 2013 Petr Machata <pmachata@redhat.com> - 2.7-1
89d4b4
- Rebase to 2.7
89d4b4
89d4b4
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.4-2
89d4b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
89d4b4
89d4b4
* Fri Nov  2 2012 Orion Poplawski <orion@cora.nwra.com> - 2.6.4-1
89d4b4
- Update to 2.6.4
89d4b4
89d4b4
* Tue Jul 31 2012 Petr Machata <pmachata@redhat.com> - 2.6.1-1
89d4b4
- Rebase to 2.6.1
89d4b4
  - Drop bison-2.4.2-drop-test-67.patch
89d4b4
- Resolves: #829028
89d4b4
89d4b4
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-5
89d4b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
89d4b4
89d4b4
* Tue May 15 2012 Petr Machata <pmachata@redhat.com> - 2.5-4
89d4b4
- Add a virtual provides for bundled(gnulib).
89d4b4
- Resolves: #821746
89d4b4
89d4b4
* Tue Apr 17 2012 Bill Nottingham <notting@redhat.com> - 2.5-2
89d4b4
- swap java-openjdk-1.6.0 for 1.7.0 in buildrequirements
89d4b4
89d4b4
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-2
89d4b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
89d4b4
89d4b4
* Wed Jun 22 2011 Petr Machata <pmachata@redhat.com> - 2.5-1
89d4b4
- Upstream 2.5
89d4b4
89d4b4
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.3-2
89d4b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
89d4b4
89d4b4
* Wed Aug 11 2010 Petr Machata <pmachata@redhat.com> - 2.4.3-1
89d4b4
- Rebase to 2.4.3
89d4b4
- Resolves: #621854
89d4b4
89d4b4
* Thu Jul  1 2010 Petr Machata <pmachata@redhat.com> - 2.4.2-3
89d4b4
- Devel subpackage now provides boost-static, as per Fedora
89d4b4
  guidelines.
89d4b4
- Resolves: #609599
89d4b4
89d4b4
* Thu Apr  8 2010 Petr Machata <pmachata@redhat.com> - 2.4.2-2
89d4b4
- Disable the mysteriously failing test no. 67.  Details in associated
89d4b4
  bugreport. (bison-2.4.2-drop-test-67.patch)
89d4b4
- Resolves: #576513
89d4b4
89d4b4
* Wed Apr  7 2010 Petr Machata <pmachata@redhat.com> - 2.4.2-1
89d4b4
- Rebase to 2.4.2
89d4b4
- Drop reap_subpipe patch, upstream has a fix
89d4b4
- Resolves: #576513
89d4b4
89d4b4
* Fri Mar  5 2010 Petr Machata <pmachata@redhat.com> - 2.4.1-5
89d4b4
- Fix the license tag
89d4b4
- Install COPYING
89d4b4
89d4b4
* Mon Aug 24 2009 Petr Machata <pmachata@redhat.com> - 2.4.1-4
89d4b4
- Fix installation with --excludedocs
89d4b4
- Resolves: #515939
89d4b4
89d4b4
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.1-3
89d4b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
89d4b4
89d4b4
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.1-2
89d4b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
89d4b4
89d4b4
* Sun Dec 28 2008 Petr Machata <pmachata@redhat.com> - 2.4.1-1
89d4b4
- Rebase to 2.4.1
89d4b4
- Resolves: #478348
89d4b4
89d4b4
* Wed Nov 12 2008 Petr Machata <pmachata@redhat.com> - 2.4-2
89d4b4
- Rebase to 2.4
89d4b4
- Resolves: #471183
89d4b4
89d4b4
* Mon Sep 15 2008 Petr Machata <pmachata@redhat.com> - 2.3-6
89d4b4
- Merge review:
89d4b4
  - Drop terminating dot from Summary
89d4b4
  - Escape macros inadvertently left in changelog
89d4b4
  - Explain why are there source files in the main package
89d4b4
89d4b4
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.3-5
89d4b4
- Autorebuild for GCC 4.3
89d4b4
89d4b4
* Tue Aug 28 2007 Roland McGrath <roland@redhat.com> - 2.3-4
89d4b4
- Canonicalize License tag.
89d4b4
89d4b4
* Sun Jan 21 2007 Roland McGrath <roland@redhat.com> - 2.3-3
89d4b4
- Canonicalize post/preun use of install-info.
89d4b4
- Resolves: 223679
89d4b4
89d4b4
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.3-2.1
89d4b4
- rebuild
89d4b4
89d4b4
* Wed Jun  7 2006 Roland McGrath <roland@redhat.com> - 2.3-2
89d4b4
- Add BuildRequires on m4.
89d4b4
89d4b4
* Wed Jun  7 2006 Roland McGrath <roland@redhat.com> - 2.3-1
89d4b4
- New upstream version 2.3
89d4b4
89d4b4
* Mon May 22 2006 Roland McGrath <roland@redhat.com> - 2.2-1
89d4b4
- New upstream version 2.2
89d4b4
89d4b4
* Mon May  1 2006 Roland McGrath <roland@redhat.com> - 2.1-3
89d4b4
- Fix K&R parser definition when it has no arguments (#190376).
89d4b4
89d4b4
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.1-1.2.1
89d4b4
- bump again for double-long bug on ppc(64)
89d4b4
89d4b4
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.1-1.2
89d4b4
- rebuilt for new gcc4.1 snapshot and glibc changes
89d4b4
89d4b4
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
89d4b4
- rebuilt
89d4b4
89d4b4
* Fri Oct 14 2005 Roland McGrath <roland@redhat.com> - 2.1-1
89d4b4
- New upstream version 2.1
89d4b4
- New subpackage bison-runtime for i18n support files used by parsers.
89d4b4
89d4b4
* Thu Apr  7 2005 Roland McGrath <roland@redhat.com> - 2.0-6
89d4b4
- run test suite in %%check
89d4b4
89d4b4
* Mon Mar 14 2005 Roland McGrath <roland@redhat.com> - 2.0-5
89d4b4
- rebuilt
89d4b4
89d4b4
* Thu Jan  6 2005 Roland McGrath <roland@redhat.com> - 2.0-4
89d4b4
- update upstream URLs, add doc files (#144346)
89d4b4
89d4b4
* Thu Jan  6 2005 Roland McGrath <roland@redhat.com> - 2.0-3
89d4b4
- missing %%defattr for subpackage
89d4b4
89d4b4
* Thu Jan  6 2005 Roland McGrath <roland@redhat.com> - 2.0-2
89d4b4
- split liby.a into bison-devel package
89d4b4
89d4b4
* Tue Jan  4 2005 Roland McGrath <roland@redhat.com> - 2.0-1
89d4b4
- new upstream version
89d4b4
89d4b4
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
89d4b4
- rebuilt
89d4b4
89d4b4
* Fri Jun  4 2004 Roland McGrath <roland@redhat.com> 1.875c-1
89d4b4
- new upstream version (fixes bug #116823)
89d4b4
89d4b4
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
89d4b4
- rebuilt
89d4b4
89d4b4
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
89d4b4
- rebuilt
89d4b4
89d4b4
* Thu Oct 30 2003 Roland McGrath <roland@redhat.com> 1.875-6
89d4b4
- add dependency on m4 (bug #108655)
89d4b4
89d4b4
* Wed Sep 24 2003 Roland McGrath <roland@redhat.com> 1.875-5
89d4b4
- remove problematic __attribute__ use for label (bug #105034)
89d4b4
89d4b4
* Fri Aug  1 2003 Havoc Pennington <hp@redhat.com> 1.875-3
89d4b4
- put #ifndef __cplusplus around attribute(unused) on goto label in yacc.c
89d4b4
89d4b4
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
89d4b4
- rebuilt
89d4b4
89d4b4
* Sat Mar 22 2003 Roland McGrath <roland@redhat.com> 1.875-2
89d4b4
- update specs for new files installed by new version
89d4b4
89d4b4
* Wed Mar 19 2003 Roland McGrath <roland@redhat.com> 1.875-1
89d4b4
- new upstream version 1.875 (bug #83184)
89d4b4
89d4b4
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
89d4b4
- rebuilt
89d4b4
89d4b4
* Wed Nov 27 2002 Than Ngo <than@redhat.com> 1.35-5
89d4b4
- rebuild in new build enviroment
89d4b4
- remove unneeded file
89d4b4
89d4b4
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
89d4b4
- automated rebuild
89d4b4
89d4b4
* Tue Jun 18 2002 Than Ngo <than@redhat.com> 1.35-3
89d4b4
- don't forcibly strip binaries
89d4b4
89d4b4
* Thu May 23 2002 Tim Powers <timp@redhat.com>
89d4b4
- automated rebuild
89d4b4
89d4b4
* Wed Mar 27 2002 Than Ngo <than@redhat.com> 1.35-1
89d4b4
- 1.35 fix incompatible with C++ compilers (bug #62121)
89d4b4
89d4b4
* Sun Mar 17 2002 Florian La Roche <Florian.LaRoche@redhat.de>
89d4b4
- update to 1.34
89d4b4
89d4b4
* Sat Feb 09 2002 Florian La Roche <Florian.LaRoche@redhat.de>
89d4b4
- update to 1.33
89d4b4
89d4b4
* Sat Jan 26 2002 Florian La Roche <Florian.LaRoche@redhat.de>
89d4b4
- update to 1.32
89d4b4
89d4b4
* Tue Jan 15 2002 Florian La Roche <Florian.LaRoche@redhat.de>
89d4b4
- update to 1.31
89d4b4
89d4b4
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
89d4b4
- automated rebuild
89d4b4
89d4b4
* Tue Nov 27 2001 Than Ngo <than@redhat.com> 1.30-4
89d4b4
- add missing Url
89d4b4
89d4b4
* Sun Nov 25 2001 Than Ngo <than@redhat.com> 1.30-3
89d4b4
- fixed coredumps on some input bug #56607i, thanks to Enrico for locating this bug
89d4b4
89d4b4
* Tue Nov 06 2001 Than Ngo <than@redhat.com> 1.30-2
89d4b4
- FHS packaging
89d4b4
- use find_lang
89d4b4
89d4b4
* Sun Nov 04 2001 Florian La Roche <Florian.LaRoche@redhat.de>
89d4b4
- update to 1.30
89d4b4
89d4b4
* Mon Oct 15 2001 Than Ngo <than@redhat.de> 1.29-1
89d4b4
- update to 1.29
89d4b4
- update Url (bug #54597)
89d4b4
89d4b4
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
89d4b4
- Bump release + rebuild.
89d4b4
89d4b4
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
89d4b4
- automatic rebuild
89d4b4
89d4b4
* Sun Jun 18 2000 Than Ngo <than@redhat.de>
89d4b4
- rebuilt in the new build environment
89d4b4
- FHS packaging
89d4b4
89d4b4
* Sat May 27 2000 Ngo Than <than@redhat.de>
89d4b4
- rebuild for 7.0
89d4b4
- put man pages and info files to correct place
89d4b4
89d4b4
* Thu Feb 03 2000 Preston Brown <pbrown@redhat.com>
89d4b4
- rebuild to gzip man page.
89d4b4
89d4b4
* Fri Jul 16 1999 Jeff Johnson <jbj@redhat.com>
89d4b4
- update to 1.28.
89d4b4
89d4b4
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
89d4b4
- auto rebuild in the new build environment (release 3)
89d4b4
89d4b4
* Mon Mar  8 1999 Jeff Johnson <jbj@redhat.com>
89d4b4
- configure with datadir=/usr/lib (#1386).
89d4b4
89d4b4
* Mon Feb 22 1999 Jeff Johnson <jbj@redhat.com>
89d4b4
- updated text in spec file.
89d4b4
- update to 1.27
89d4b4
89d4b4
* Thu Dec 17 1998 Cristian Gafton <gafton@redhat.com>
89d4b4
- build for glibc 2.1
89d4b4
89d4b4
* Fri Apr 24 1998 Prospector System <bugs@redhat.com>
89d4b4
- translations modified for de, fr, tr
89d4b4
89d4b4
* Wed Apr 08 1998 Cristian Gafton <gafton@redhat.com>
89d4b4
- built for Manhattan
89d4b4
- added build root
89d4b4
89d4b4
* Wed Oct 15 1997 Donnie Barnes <djb@redhat.com>
89d4b4
- various spec file cleanups
89d4b4
89d4b4
* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
89d4b4
- built against glibc