auto-import changelog data from grep-2.4.2-4.src.rpm
Sun Aug 20 2000 Jakub Jelinek <jakub@redhat.com> - i18n character ranges patch from Ulrich Drepper Thu Jul 13 2000 Prospector <bugzilla@redhat.com> - automatic rebuild Mon Jun 19 2000 Bernhard Rosenkraenzer <bero@redhat.com> - FHSify Tue Mar 21 2000 Florian La Roche <Florian.LaRoche@redhat.com> - update to 2.4.2 - fix download URL Thu Feb 03 2000 Bernhard Rosenkraenzer <bero@redhat.com> - gzip info pages (Bug #9035) Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com> - fix description Wed Dec 22 1999 Jeff Johnson <jbj@redhat.com> - update to 2.4. Wed Oct 20 1999 Bill Nottingham <notting@redhat.com> - prereq install-info Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 2) Mon Mar 08 1999 Preston Brown <pbrown@redhat.com> - upgraded to grep 2.3, added install-info %post/%preun for info Wed Feb 24 1999 Preston Brown <pbrown@redhat.com> - Injected new description and group. Sat May 09 1998 Prospector System <bugs@redhat.com> - translations modified for de, fr, tr Fri May 01 1998 Cristian Gafton <gafton@redhat.com> - updated to 2.2 Thu Oct 16 1997 Donnie Barnes <djb@redhat.com> - updated from 2.0 to 2.1 - spec file cleanups - added BuildRoot Mon Jun 02 1997 Erik Troan <ewt@redhat.com> - built against glibc
This commit is contained in:
parent
2bdc56b2c4
commit
5060d26e08
@ -0,0 +1 @@
|
|||||||
|
grep-2.4.2.tar.gz
|
111
grep.spec
Normal file
111
grep.spec
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
Summary: The GNU versions of grep pattern matching utilities.
|
||||||
|
Name: grep
|
||||||
|
Version: 2.4.2
|
||||||
|
Release: 4
|
||||||
|
Copyright: GPL
|
||||||
|
Group: Applications/Text
|
||||||
|
Source: ftp://ftp.gnu.org/pub/gnu/grep/grep-%{version}.tar.gz
|
||||||
|
Patch: grep-2.4.2-i18n.patch
|
||||||
|
Prefix: %{_prefix}
|
||||||
|
Prereq: /sbin/install-info
|
||||||
|
Buildroot: /var/tmp/grep-root
|
||||||
|
|
||||||
|
%description
|
||||||
|
The GNU versions of commonly used grep utilities. Grep searches
|
||||||
|
through textual input for lines which contain a match to a specified
|
||||||
|
pattern and then prints the matching lines. GNU's grep utilities
|
||||||
|
include grep, egrep and fgrep.
|
||||||
|
|
||||||
|
You should install grep on your system, because it is a very useful
|
||||||
|
utility for searching through text.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
%patch -p1 -b .i18n
|
||||||
|
|
||||||
|
%build
|
||||||
|
%configure --without-included-regex
|
||||||
|
make
|
||||||
|
|
||||||
|
%install
|
||||||
|
rm -rf ${RPM_BUILD_ROOT}
|
||||||
|
%makeinstall LDFLAGS=-s prefix=${RPM_BUILD_ROOT}%{_prefix} exec_prefix=${RPM_BUILD_ROOT}
|
||||||
|
%ifos Linux
|
||||||
|
mkdir -p $RPM_BUILD_ROOT/bin
|
||||||
|
mv $RPM_BUILD_ROOT%{_prefix}/bin/* $RPM_BUILD_ROOT/bin
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_prefix}/bin
|
||||||
|
%endif
|
||||||
|
gzip -9f $RPM_BUILD_ROOT%{_infodir}/grep*
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf ${RPM_BUILD_ROOT}
|
||||||
|
|
||||||
|
%post
|
||||||
|
/sbin/install-info --quiet --info-dir=%{_infodir} %{_infodir}/grep.info.gz
|
||||||
|
|
||||||
|
%preun
|
||||||
|
if [ $1 = 0 ]; then
|
||||||
|
/sbin/install-info --quiet --info-dir=%{_infodir} --delete %{_infodir}/grep.info.gz
|
||||||
|
fi
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%doc ABOUT-NLS AUTHORS THANKS TODO NEWS README ChangeLog
|
||||||
|
|
||||||
|
%ifos Linux
|
||||||
|
/bin/*
|
||||||
|
%else
|
||||||
|
%{_prefix}/bin/*
|
||||||
|
%endif
|
||||||
|
%{_infodir}/*.info.gz
|
||||||
|
%{_mandir}/*/*
|
||||||
|
%{_prefix}/share/locale/*/*/grep.*
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Sun Aug 20 2000 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
- i18n character ranges patch from Ulrich Drepper
|
||||||
|
|
||||||
|
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
|
||||||
|
- automatic rebuild
|
||||||
|
|
||||||
|
* Mon Jun 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
|
||||||
|
- FHSify
|
||||||
|
|
||||||
|
* Tue Mar 21 2000 Florian La Roche <Florian.LaRoche@redhat.com>
|
||||||
|
- update to 2.4.2
|
||||||
|
- fix download URL
|
||||||
|
|
||||||
|
* Thu Feb 03 2000 Bernhard Rosenkraenzer <bero@redhat.com>
|
||||||
|
- gzip info pages (Bug #9035)
|
||||||
|
|
||||||
|
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
|
||||||
|
- fix description
|
||||||
|
|
||||||
|
* Wed Dec 22 1999 Jeff Johnson <jbj@redhat.com>
|
||||||
|
- update to 2.4.
|
||||||
|
|
||||||
|
* Wed Oct 20 1999 Bill Nottingham <notting@redhat.com>
|
||||||
|
- prereq install-info
|
||||||
|
|
||||||
|
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
|
||||||
|
- auto rebuild in the new build environment (release 2)
|
||||||
|
|
||||||
|
* Mon Mar 08 1999 Preston Brown <pbrown@redhat.com>
|
||||||
|
- upgraded to grep 2.3, added install-info %post/%preun for info
|
||||||
|
|
||||||
|
* Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
|
||||||
|
- Injected new description and group.
|
||||||
|
|
||||||
|
* Sat May 09 1998 Prospector System <bugs@redhat.com>
|
||||||
|
- translations modified for de, fr, tr
|
||||||
|
|
||||||
|
* Fri May 01 1998 Cristian Gafton <gafton@redhat.com>
|
||||||
|
- updated to 2.2
|
||||||
|
|
||||||
|
* Thu Oct 16 1997 Donnie Barnes <djb@redhat.com>
|
||||||
|
- updated from 2.0 to 2.1
|
||||||
|
- spec file cleanups
|
||||||
|
- added BuildRoot
|
||||||
|
|
||||||
|
* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
|
||||||
|
- built against glibc
|
Loading…
Reference in New Issue
Block a user