Blame SPECS/bison.spec

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