Blame SPECS/bison.spec

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