auto-import changelog data from bison-1.34-1.src.rpm
Sun Mar 17 2002 Florian La Roche <Florian.LaRoche@redhat.de> - update to 1.34 Sat Feb 09 2002 Florian La Roche <Florian.LaRoche@redhat.de> - update to 1.33 Sat Jan 26 2002 Florian La Roche <Florian.LaRoche@redhat.de> - update to 1.32 Tue Jan 15 2002 Florian La Roche <Florian.LaRoche@redhat.de> - update to 1.31 Wed Jan 09 2002 Tim Powers <timp@redhat.com> - automated rebuild Tue Nov 27 2001 Than Ngo <than@redhat.com> 1.30-4 - add missing Url Sun Nov 25 2001 Than Ngo <than@redhat.com> 1.30-3 - fixed coredumps on some input bug #56607i, thanks to Enrico for locating this bug Tue Nov 06 2001 Than Ngo <than@redhat.com> 1.30-2 - FHS packaging - use find_lang Sun Nov 04 2001 Florian La Roche <Florian.LaRoche@redhat.de> - update to 1.30 Mon Oct 15 2001 Than Ngo <than@redhat.de> 1.29-1 - update to 1.29 - update Url (bug #54597)
This commit is contained in:
parent
5d8adbfc62
commit
8148f5920d
@ -1 +1 @@
|
|||||||
bison-1.28.tar.gz
|
bison-1.34.tar.bz2
|
||||||
|
76
bison.spec
76
bison.spec
@ -1,37 +1,43 @@
|
|||||||
Summary: A GNU general-purpose parser generator.
|
Summary: A GNU general-purpose parser generator.
|
||||||
Name: bison
|
Name: bison
|
||||||
Version: 1.28
|
Version: 1.34
|
||||||
Release: 7
|
Release: 1
|
||||||
Copyright: GPL
|
License: GPL
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
Source: ftp://prep.ai.mit.edu/pub/gnu/bison/bison-%{version}.tar.gz
|
Source: ftp://ftp.gnu.org/pub/gnu/bison/bison-%{version}.tar.bz2
|
||||||
|
Url: http://www.gnu.org/software/bison/bison.html
|
||||||
|
Patch: bison-1.30-man.patch
|
||||||
Prereq: /sbin/install-info
|
Prereq: /sbin/install-info
|
||||||
BuildRoot: %{_tmppath}/%{name}-root
|
BuildRoot: %{_tmppath}/%{name}-root
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Bison is a general purpose parser generator which converts a grammar
|
Bison is a general purpose parser generator that converts a grammar
|
||||||
description for an LALR(1) context-free grammar into a C program to parse
|
description for an LALR(1) context-free grammar into a C program to
|
||||||
that grammar. Bison can be used to develop a wide range of language
|
parse that grammar. Bison can be used to develop a wide range of
|
||||||
parsers, from ones used in simple desk calculators to complex programming
|
language parsers, from ones used in simple desk calculators to complex
|
||||||
languages. Bison is upwardly compatible with Yacc, so any correctly
|
programming languages. Bison is upwardly compatible with Yacc, so any
|
||||||
written Yacc grammar should work with Bison without any changes. If
|
correctly written Yacc grammar should work with Bison without any
|
||||||
you know Yacc, you shouldn't have any trouble using Bison. You do need
|
changes. If you know Yacc, you shouldn't have any trouble using
|
||||||
to be very proficient in C programming to be able to use Bison). Bison
|
Bison. You do need to be very proficient in C programming to be able
|
||||||
is only needed on systems that are used for development.
|
to use Bison. Bison is only needed on systems that are used for
|
||||||
|
development.
|
||||||
|
|
||||||
If your system will be used for C development, you should install Bison
|
If your system will be used for C development, you should install
|
||||||
since it is used to build many C programs.
|
Bison.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
%patch -p1 -b .man
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --datadir=%{_libdir}
|
%configure
|
||||||
make LDFLAGS=-s
|
make LDFLAGS=-s
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
%makeinstall datadir=${RPM_BUILD_ROOT}%{_libdir}
|
%makeinstall
|
||||||
|
|
||||||
|
%find_lang %{name}
|
||||||
|
|
||||||
gzip -9nf ${RPM_BUILD_ROOT}%{_infodir}/bison.info*
|
gzip -9nf ${RPM_BUILD_ROOT}%{_infodir}/bison.info*
|
||||||
|
|
||||||
@ -43,10 +49,10 @@ if [ $1 = 0 ]; then
|
|||||||
/sbin/install-info --delete %{_infodir}/bison.info.gz %{_infodir}/dir --entry="* bison: (bison). The GNU parser generator."
|
/sbin/install-info --delete %{_infodir}/bison.info.gz %{_infodir}/dir --entry="* bison: (bison). The GNU parser generator."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
%files
|
%files -f %{name}.lang
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_mandir}/*/*
|
%{_mandir}/*/*
|
||||||
%{_libdir}/*
|
%{_datadir}/bison
|
||||||
%{_infodir}/bison.info*
|
%{_infodir}/bison.info*
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
|
|
||||||
@ -54,6 +60,38 @@ fi
|
|||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Mar 17 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
||||||
|
- update to 1.34
|
||||||
|
|
||||||
|
* Sat Feb 09 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
||||||
|
- update to 1.33
|
||||||
|
|
||||||
|
* Sat Jan 26 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
||||||
|
- update to 1.32
|
||||||
|
|
||||||
|
* Tue Jan 15 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
||||||
|
- update to 1.31
|
||||||
|
|
||||||
|
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
||||||
|
- automated rebuild
|
||||||
|
|
||||||
|
* Mon Nov 27 2001 Than Ngo <than@redhat.com> 1.30-4
|
||||||
|
- add missing Url
|
||||||
|
|
||||||
|
* Sun Nov 25 2001 Than Ngo <than@redhat.com> 1.30-3
|
||||||
|
- fixed coredumps on some input bug #56607i, thanks to Enrico for locating this bug
|
||||||
|
|
||||||
|
* Tue Nov 06 2001 Than Ngo <than@redhat.com> 1.30-2
|
||||||
|
- FHS packaging
|
||||||
|
- use find_lang
|
||||||
|
|
||||||
|
* Sun Nov 04 2001 Florian La Roche <Florian.LaRoche@redhat.de>
|
||||||
|
- update to 1.30
|
||||||
|
|
||||||
|
* Mon Oct 15 2001 Than Ngo <than@redhat.de> 1.29-1
|
||||||
|
- update to 1.29
|
||||||
|
- update Url (bug #54597)
|
||||||
|
|
||||||
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
|
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
|
||||||
- Bump release + rebuild.
|
- Bump release + rebuild.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user