auto-import changelog data from gawk-3.1.1-9.src.rpm

Wed Jan 22 2003 Tim Powers <timp@redhat.com>
- rebuilt
Mon Dec 02 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- add find_lang to specfile
Wed Nov 20 2002 Elliot Lee <sopwith@redhat.com> 3.1.1-7
- Add gawk-3.1.1-ngroups.patch, because NGROUPS_MAX comes from sys/param.h,
    and awk.h changes behaviour depending on whether NGROUPS_MAX is defined
    or not. (For ppc64)
Wed Nov 06 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- remove /usr/share/info/dir
Sun Nov 03 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- ugly fix to get locale files into the right location #74360
Sun Aug 11 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- simplify install part of spec file
- do not package /bin/gawk-<version> anymore
Fri Jun 21 2002 Tim Powers <timp@redhat.com>
- automated rebuild
Thu May 23 2002 Tim Powers <timp@redhat.com>
- automated rebuild
Thu May 09 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- update to 3.1.1
This commit is contained in:
cvsdist 2004-09-09 04:58:41 +00:00
parent 0b4e9f0954
commit fb7eed6d11
3 changed files with 50 additions and 19 deletions

View File

@ -1,2 +1,2 @@
gawk-3.1.0-ps.tar.gz gawk-3.1.1-ps.tar.gz
gawk-3.1.0.tar.gz gawk-3.1.1.tar.gz

View File

@ -1,14 +1,14 @@
Summary: The GNU version of the awk text processing utility. Summary: The GNU version of the awk text processing utility.
Name: gawk Name: gawk
Version: 3.1.0 Version: 3.1.1
Release: 4 Release: 9
License: GPL License: GPL
Group: Applications/Text Group: Applications/Text
Source0: ftp://ftp.gnu.org/gnu/gawk/gawk-%{version}.tar.gz Source0: ftp://ftp.gnu.org/gnu/gawk/gawk-%{version}.tar.gz
Source1: ftp://ftp.gnu.org/gnu/gawk/gawk-%{version}-ps.tar.gz Source1: ftp://ftp.gnu.org/gnu/gawk/gawk-%{version}-ps.tar.gz
Patch0: gawk-3.1.0-newsecurity.patch Patch0: gawk-3.1.0-newsecurity.patch
Patch1: gawk-3.1.0-shutup.patch Patch1: gawk-3.1.0-shutup.patch
Patch2: gawk-3.1.0-hex.patch Patch2: gawk-3.1.1-ngroups.patch
Prereq: /sbin/install-info Prereq: /sbin/install-info
Requires: /bin/mktemp Requires: /bin/mktemp
Buildroot: %{_tmppath}/%{name}-root Buildroot: %{_tmppath}/%{name}-root
@ -25,7 +25,7 @@ considered to be a standard Linux tool for processing text.
%setup -q -b 1 %setup -q -b 1
%patch0 -p1 -b .mktemp %patch0 -p1 -b .mktemp
%patch1 -p1 %patch1 -p1
%patch2 -p0 %patch2 -p1
%build %build
%configure %configure
@ -37,15 +37,16 @@ rm -rf $RPM_BUILD_ROOT
libexecdir=${RPM_BUILD_ROOT}%{_libexecdir}/awk \ libexecdir=${RPM_BUILD_ROOT}%{_libexecdir}/awk \
datadir=${RPM_BUILD_ROOT}%{_datadir}/awk datadir=${RPM_BUILD_ROOT}%{_datadir}/awk
( cd $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_bindir}
rm -f .%{_infodir}/dir ln -sf gawk.1.gz $RPM_BUILD_ROOT%{_mandir}/man1/awk.1.gz
gzip -9nf .%{_infodir}/gawk.info* ln -sf ../../bin/gawk $RPM_BUILD_ROOT%{_bindir}/awk
mkdir -p .%{_prefix}/bin ln -sf ../../bin/gawk $RPM_BUILD_ROOT%{_bindir}/gawk
ln -sf gawk.1.gz .%{_mandir}/man1/awk.1.gz rm -f $RPM_BUILD_ROOT/bin/{,p}gawk-%{version}
cd bin
ln -sf ../../bin/gawk ../usr/bin/awk rm -f $RPM_BUILD_ROOT%{_infodir}/dir
ln -sf ../../bin/gawk ../usr/bin/gawk mv -f $RPM_BUILD_ROOT%{_datadir}/awk/locale $RPM_BUILD_ROOT%{_datadir}/locale
)
%find_lang %name
%clean %clean
rm -rf $RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT
@ -60,16 +61,46 @@ fi
%files %files
%defattr(-,root,root,-) %defattr(-,root,root,-)
%doc README COPYING ACKNOWLEDGMENT FUTURES INSTALL LIMITATIONS NEWS PORTS %doc README COPYING FUTURES INSTALL LIMITATIONS NEWS
%doc README_d POSIX.STD doc/gawk.ps doc/awkcard.ps %doc README_d POSIX.STD doc/gawk.ps doc/awkcard.ps
/bin/* /bin/*
%{_bindir}/* %{_bindir}/*
%{_mandir}/man1/* %{_mandir}/man1/*
%{_infodir}/gawk.info* %{_infodir}/gawk.info*
%{_libexecdir}/awk %{_libexecdir}/awk
%{_datadir}/awk %{_datadir}
%changelog %changelog
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
- rebuilt
* Mon Dec 02 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- add find_lang to specfile
* Wed Nov 20 2002 Elliot Lee <sopwith@redhat.com> 3.1.1-7
- Add gawk-3.1.1-ngroups.patch, because NGROUPS_MAX comes from
sys/param.h, and awk.h changes behaviour depending on whether NGROUPS_MAX
is defined or not. (For ppc64)
* Wed Nov 06 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- remove /usr/share/info/dir
* Sun Nov 03 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- ugly fix to get locale files into the right location #74360
* Sun Aug 11 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- simplify install part of spec file
- do not package /bin/gawk-<version> anymore
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
- automated rebuild
* Thu May 23 2002 Tim Powers <timp@redhat.com>
- automated rebuild
* Thu May 09 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- update to 3.1.1
* Sun Mar 17 2002 Florian La Roche <Florian.LaRoche@redhat.de> * Sun Mar 17 2002 Florian La Roche <Florian.LaRoche@redhat.de>
- add patch from #61316 to ignore wrong hex numbers and treat them as text - add patch from #61316 to ignore wrong hex numbers and treat them as text

View File

@ -1,2 +1,2 @@
b12a7e87342df959fefb3620ec4587d7 gawk-3.1.0-ps.tar.gz 2446147a3a985168e52d08cae8aeabcd gawk-3.1.1-ps.tar.gz
789d223fc7ee4ada694071e04124a3ae gawk-3.1.0.tar.gz 47e3754195bf32c8b78ad632bab903cd gawk-3.1.1.tar.gz