auto-import changelog data from bc-1.06-4.src.rpm
Fri May 11 2001 Preston Brown <pbrown@redhat.com> 1.06-4 - use mktemp, not the pid shell variable, in rpm scriptlets Fri May 11 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.06-3 - rebuild with new readline - Add patch to fix compilation with recent readline versions
This commit is contained in:
parent
2d5cf094e4
commit
93eb2defda
@ -1 +1 @@
|
|||||||
bc-1.06.tar.gz
|
bc-1.06.tar.bz2
|
||||||
|
10
bc-1.06-readline42.patch
Normal file
10
bc-1.06-readline42.patch
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
--- bc-1.06/bc/scan.l.sux Fri May 11 14:27:20 2001
|
||||||
|
+++ bc-1.06/bc/scan.l Fri May 11 14:27:32 2001
|
||||||
|
@@ -143,7 +143,6 @@
|
||||||
|
|
||||||
|
/* Definitions for readline access. */
|
||||||
|
extern FILE *rl_instream;
|
||||||
|
-_PROTOTYPE(char *readline, (char *));
|
||||||
|
|
||||||
|
/* rl_input puts upto MAX characters into BUF with the number put in
|
||||||
|
BUF placed in *RESULT. If the yy input file is the same as
|
18
bc.spec
18
bc.spec
@ -1,11 +1,12 @@
|
|||||||
Summary: GNU's bc (a numeric processing language) and dc (a calculator).
|
Summary: GNU's bc (a numeric processing language) and dc (a calculator).
|
||||||
Name: bc
|
Name: bc
|
||||||
Version: 1.06
|
Version: 1.06
|
||||||
Release: 2
|
Release: 4
|
||||||
Copyright: GPL
|
Copyright: GPL
|
||||||
URL: http://www.gnu.org/software/bc/
|
URL: http://www.gnu.org/software/bc/
|
||||||
Group: Applications/Engineering
|
Group: Applications/Engineering
|
||||||
Source: ftp://ftp.gnu.org/gnu/bc/bc-%{version}.tar.gz
|
Source: ftp://ftp.gnu.org/gnu/bc/bc-%{version}.tar.bz2
|
||||||
|
Patch: bc-1.06-readline42.patch
|
||||||
Prereq: /sbin/install-info grep
|
Prereq: /sbin/install-info grep
|
||||||
Buildroot: %{_tmppath}/%{name}-%{version}-root
|
Buildroot: %{_tmppath}/%{name}-%{version}-root
|
||||||
|
|
||||||
@ -20,6 +21,7 @@ if you would like to use its text mode calculator.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
%patch -p1 -b .rl22
|
||||||
|
|
||||||
%build
|
%build
|
||||||
autoconf
|
autoconf
|
||||||
@ -41,8 +43,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
# previous versions of bc put an improper entry into %{_infodir}/dir -- remove
|
# previous versions of bc put an improper entry into %{_infodir}/dir -- remove
|
||||||
# it
|
# it
|
||||||
if grep 'dc: (bc)' %{_infodir}/dir > /dev/null; then
|
if grep 'dc: (bc)' %{_infodir}/dir > /dev/null; then
|
||||||
grep -v 'The GNU RPN calculator' < %{_infodir}/dir > %{_infodir}/dir.$$
|
tmpfile=`mktemp ${_infodir}/dir.XXXXXX`
|
||||||
mv -f %{_infodir}/dir.$$ %{_infodir}/dir
|
grep -v 'The GNU RPN calculator' < %{_infodir}/dir > $tmpfile
|
||||||
|
mv -f $tmpfile %{_infodir}/dir
|
||||||
fi
|
fi
|
||||||
|
|
||||||
/sbin/install-info %{_infodir}/dc.info.gz %{_infodir}/dir --entry="* dc: (dc). The GNU RPN calculator."
|
/sbin/install-info %{_infodir}/dc.info.gz %{_infodir}/dir --entry="* dc: (dc). The GNU RPN calculator."
|
||||||
@ -61,6 +64,13 @@ fi
|
|||||||
%{_infodir}/*
|
%{_infodir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri May 11 2001 Preston Brown <pbrown@redhat.com> 1.06-4
|
||||||
|
- use mktemp, not the pid shell variable, in rpm scriptlets
|
||||||
|
|
||||||
|
* Fri May 11 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.06-3
|
||||||
|
- rebuild with new readline
|
||||||
|
- Add patch to fix compilation with recent readline versions
|
||||||
|
|
||||||
* Fri Dec 01 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
* Fri Dec 01 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
||||||
- Add COPYING, COPYING.LIB, FAQ, AUTHORS, NEWS, README
|
- Add COPYING, COPYING.LIB, FAQ, AUTHORS, NEWS, README
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user