2008-11-23 18:34:10 +00:00
|
|
|
%define _bindir /bin
|
|
|
|
|
|
|
|
Summary: Pattern matching utilities
|
2004-09-09 05:50:55 +00:00
|
|
|
Name: grep
|
2010-09-21 13:04:45 +00:00
|
|
|
Version: 2.7
|
2011-02-09 06:08:13 +00:00
|
|
|
Release: 4%{?dist}
|
2008-11-23 18:34:10 +00:00
|
|
|
License: GPLv3+
|
2004-09-09 05:50:55 +00:00
|
|
|
Group: Applications/Text
|
2010-03-23 16:17:26 +00:00
|
|
|
Source: ftp://ftp.gnu.org/pub/gnu/grep/grep-%{version}.tar.xz
|
2010-06-07 15:25:12 +00:00
|
|
|
Source1: colorgrep.sh
|
|
|
|
Source2: colorgrep.csh
|
2010-06-11 09:34:46 +00:00
|
|
|
Source3: GREP_COLORS
|
2004-10-11 11:23:03 +00:00
|
|
|
URL: http://www.gnu.org/software/grep/
|
2007-04-20 17:30:41 +00:00
|
|
|
Requires(post): /sbin/install-info
|
|
|
|
Requires(preun): /sbin/install-info
|
2010-06-11 09:34:46 +00:00
|
|
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
2007-04-20 17:30:41 +00:00
|
|
|
BuildRequires: pcre-devel >= 3.9-10, texinfo, gettext
|
2008-11-23 18:41:42 +00:00
|
|
|
BuildRequires: autoconf automake
|
2010-10-01 14:26:51 +00:00
|
|
|
Patch0: grep-2.7-const-range-exp.patch
|
2004-09-09 05:50:55 +00:00
|
|
|
|
|
|
|
%description
|
2010-02-12 14:47:35 +00:00
|
|
|
The GNU versions of commonly used grep utilities. Grep searches through
|
2008-11-24 09:52:09 +00:00
|
|
|
textual input for lines which contain a match to a specified pattern and then
|
2010-02-12 14:47:35 +00:00
|
|
|
prints the matching lines. GNU's grep utilities include grep, egrep and fgrep.
|
2004-09-09 05:50:55 +00:00
|
|
|
|
2008-11-24 09:52:09 +00:00
|
|
|
GNU grep is needed by many scripts, so it shall be installed on every system.
|
2004-09-09 05:50:55 +00:00
|
|
|
|
|
|
|
%prep
|
2008-10-01 16:50:07 +00:00
|
|
|
%setup -q
|
2010-10-01 14:26:51 +00:00
|
|
|
%patch0 -p1 -b .const-range-exp
|
2004-09-09 05:50:55 +00:00
|
|
|
|
|
|
|
%build
|
2007-04-20 17:30:41 +00:00
|
|
|
%configure --without-included-regex CPPFLAGS="-I%{_includedir}/pcre"
|
|
|
|
make %{?_smp_mflags}
|
2004-09-09 05:50:55 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf ${RPM_BUILD_ROOT}
|
2007-04-20 17:30:41 +00:00
|
|
|
make %{?_smp_mflags} DESTDIR=$RPM_BUILD_ROOT install
|
2008-11-23 18:34:10 +00:00
|
|
|
gzip $RPM_BUILD_ROOT%{_infodir}/grep*
|
2004-09-09 05:52:56 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
2010-06-07 15:25:12 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/profile.d
|
|
|
|
install -pm 644 %{SOURCE1} %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/profile.d
|
2010-06-11 09:34:46 +00:00
|
|
|
install -pm 644 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}
|
2004-09-09 05:50:55 +00:00
|
|
|
|
2004-09-09 05:51:25 +00:00
|
|
|
%find_lang %name
|
|
|
|
|
2007-04-20 17:30:41 +00:00
|
|
|
%check
|
2010-04-04 12:32:04 +00:00
|
|
|
make check
|
2007-04-20 17:30:41 +00:00
|
|
|
|
2004-09-09 05:50:55 +00:00
|
|
|
%clean
|
|
|
|
rm -rf ${RPM_BUILD_ROOT}
|
|
|
|
|
|
|
|
%post
|
2008-11-23 18:34:10 +00:00
|
|
|
/sbin/install-info --quiet --info-dir=%{_infodir} %{_infodir}/grep.info.gz || :
|
2004-09-09 05:50:55 +00:00
|
|
|
|
|
|
|
%preun
|
|
|
|
if [ $1 = 0 ]; then
|
2008-11-23 18:34:10 +00:00
|
|
|
/sbin/install-info --quiet --info-dir=%{_infodir} --delete %{_infodir}/grep.info.gz || :
|
2004-09-09 05:50:55 +00:00
|
|
|
fi
|
|
|
|
|
2004-09-09 05:51:25 +00:00
|
|
|
%files -f %{name}.lang
|
2010-06-11 09:34:46 +00:00
|
|
|
%defattr(-,root,root,-)
|
2007-04-20 17:30:41 +00:00
|
|
|
%doc ABOUT-NLS AUTHORS THANKS TODO NEWS README ChangeLog COPYING
|
2004-09-09 05:50:55 +00:00
|
|
|
|
2004-10-11 11:23:03 +00:00
|
|
|
%{_bindir}/*
|
2010-06-07 15:25:12 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/profile.d/colorgrep.*sh
|
2010-06-11 09:34:46 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/GREP_COLORS
|
2004-09-09 05:52:56 +00:00
|
|
|
%{_infodir}/*.info*.gz
|
2004-09-09 05:50:55 +00:00
|
|
|
%{_mandir}/*/*
|
|
|
|
|
|
|
|
%changelog
|
2011-02-09 06:08:13 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-10-01 14:26:51 +00:00
|
|
|
* Fri Oct 01 2010 Jaroslav Škarvada <jskarvad@redhat.com> - 2.7-3
|
|
|
|
- Fixed inconsistency with range expressions, const-range-exp patch (#583011)
|
|
|
|
|
2010-09-29 21:22:20 +00:00
|
|
|
* Wed Sep 29 2010 jkeating - 2.7-2
|
|
|
|
- Rebuilt for gcc bug 634757
|
|
|
|
|
2010-09-21 13:04:45 +00:00
|
|
|
* Tue Sep 21 2010 Jaroslav Škarvada <jskarvad@redhat.com> - 2.7-1
|
|
|
|
- New version: grep-2.7
|
|
|
|
- Removed patches (already in upstream): dfa-optimize-period,
|
|
|
|
glibc-matcher-fallback, mmap-option-fix, dfa-convert-to-wide-char,
|
|
|
|
dfa-speedup-digit-xdigit
|
|
|
|
|
2010-06-11 09:34:46 +00:00
|
|
|
* Fri Jun 11 2010 Jaroslav Škarvada <jskarvad@redhat.com> - 2.6.3-4
|
|
|
|
- Colors can be globally disabled via /etc/GREP_COLORS (#602867)
|
|
|
|
- Fixed indentation in spec
|
|
|
|
- Fixed defattr in spec
|
|
|
|
|
2010-06-07 15:25:12 +00:00
|
|
|
* Mon Jun 07 2010 Jaroslav Škarvada <jskarvad@redhat.com> - 2.6.3-3
|
|
|
|
- Added auto-color profile.d scripts (thanks to Ville Skyttä #600832)
|
|
|
|
- Removed description macro from changelog
|
|
|
|
|
2010-05-07 11:34:53 +00:00
|
|
|
* Tue May 06 2010 Jaroslav Škarvada <jskarvad@redhat.com> - 2.6.3-2
|
|
|
|
- Added dfa-optimize-period patch (speedup for . patterns in UTF-8)
|
|
|
|
- Added glibc-matcher-fallback patch (speedup for [a-z] patterns in UTF-8)
|
|
|
|
- Added mmap-option-fix patch
|
|
|
|
- Added dfa-convert-to-wide-char patch (speedup for -m and remove quadratic
|
|
|
|
complexity when going to glibc)
|
|
|
|
- Added dfa-speedup-digit-xdigit patch (speedup for [[:digit:]] [:xdigit:]])
|
|
|
|
|
2010-04-04 12:32:04 +00:00
|
|
|
* Sun Apr 04 2010 Jaroslav Škarvada <jskarvad@redhat.com> - 2.6.3-1
|
|
|
|
- New version: grep-2.6.3
|
|
|
|
- make check is not silent now
|
|
|
|
|
2010-03-26 06:22:22 +00:00
|
|
|
* Fri Mar 26 2010 Jaroslav Škarvada <jskarvad@redhat.com> - 2.6.1-1
|
|
|
|
- New version: grep-2.6.1
|
|
|
|
- Dropped sigsegv patch (integrated upstream)
|
|
|
|
|
2010-03-23 16:17:26 +00:00
|
|
|
* Tue Mar 23 2010 Jaroslav Škarvada <jskarvad@redhat.com> - 2.6-1
|
|
|
|
- New version: grep-2.6
|
|
|
|
- Added sigsegv patch (after release patch from upstream)
|
|
|
|
- Dropped obsoleted patches: fedora-tests, pcrewrap, case, egf-speedup,
|
|
|
|
bz460641, utf8, dfa-optional, w
|
|
|
|
|
2010-03-05 15:40:27 +00:00
|
|
|
* Fri Mar 05 2010 Jaroslav Škarvada <jskarvad@redhat.com> - 2.5.4-2
|
|
|
|
- Added w patch to fix -w switch behaviour broken by dfa-optional patch
|
|
|
|
|
2010-02-12 14:47:35 +00:00
|
|
|
* Wed Feb 10 2010 Jaroslav Škarvada <jskarvad@redhat.com> - 2.5.4-1
|
2010-05-07 11:34:53 +00:00
|
|
|
- New version: grep-2.5.4
|
2010-06-07 15:25:12 +00:00
|
|
|
- Fixed typos in description
|
2010-02-12 14:47:35 +00:00
|
|
|
- Updated utf-8 patch
|
|
|
|
- Added dfa-optional patch (#538423)
|
|
|
|
|
2009-08-11 12:41:52 +00:00
|
|
|
* Tue Aug 11 2009 Lubomir Rintel <lkundrak@v3.sk> 2.5.3-6
|
|
|
|
- Silence possible scriptlets errors
|
|
|
|
|
2009-07-25 01:25:35 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.3-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-25 00:59:40 +00:00
|
|
|
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.3-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-01-27 15:17:21 +00:00
|
|
|
* Tue Jan 27 2009 Stepan Kasal <skasal@redhat.com> 2.5.3-3
|
|
|
|
- remove grep-mem-exhausted.patch (#481765, #198165)
|
|
|
|
|
2009-01-08 09:16:42 +00:00
|
|
|
* Thu Jan 8 2009 Stepan Kasal <skasal@redhat.com> 2.5.3-2
|
|
|
|
- fix bug #460641 (a.k.a. 479152)
|
|
|
|
|
2008-11-23 18:34:10 +00:00
|
|
|
* Thu Nov 20 2008 Lubomir Rintel <lkundrak@v3.sk> 2.5.3-1
|
|
|
|
- Update to latest upstream version
|
|
|
|
- Drop upstreamed patches
|
|
|
|
- Add a couple of regression tests
|
|
|
|
- Temporarily disable tests
|
|
|
|
- Minor cleanup
|
|
|
|
|
2008-10-01 16:50:07 +00:00
|
|
|
* Wed Oct 1 2008 Lubomir Rintel <lkundrak@v3.sk> 2.5.1a-61
|
|
|
|
- Fix pcre-mode (-P) line wrapping (bug #324781)
|
|
|
|
- Match the version with upstream
|
|
|
|
- Recode AUTHORS to utf8
|
|
|
|
|
2008-07-25 19:28:11 +00:00
|
|
|
* Fri Jul 25 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.5.1-60
|
|
|
|
- fix license tag
|
|
|
|
|
2008-02-19 10:07:39 +00:00
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.5.1-59
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2007-04-20 17:30:41 +00:00
|
|
|
* Fri Apr 20 2007 Stepan Kasal <skasal@redhat.com> - 2.5.1-58
|
|
|
|
- Adhere to packaging guidelines.
|
|
|
|
- Resolves: #225857
|
|
|
|
- Use CPPFLAGS= argument to configure to add an -I option.
|
|
|
|
- Do not set LDFLAGS=-s for "make install".
|
|
|
|
|
2007-01-22 17:57:53 +00:00
|
|
|
* Mon Jan 22 2007 Tim Waugh <twaugh@redhat.com> 2.5.1-57
|
|
|
|
- Make preun scriptlet unconditionally succeed (bug #223697).
|
|
|
|
|
2006-11-22 19:37:55 +00:00
|
|
|
* Wed Nov 22 2006 Tim Waugh <twaugh@redhat.com> 2.5.1-56
|
|
|
|
- Fixed count of patterns when the last is an empty string (bug #204255).
|
|
|
|
|
2006-11-22 14:55:12 +00:00
|
|
|
* Wed Nov 22 2006 Tim Waugh <twaugh@redhat.com> 2.5.1-55
|
|
|
|
- Fix 'memory exhausted' errors by limiting in-memory buffer (bug #198165).
|
|
|
|
|
2006-07-12 06:14:17 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.5.1-54.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-05-31 09:01:15 +00:00
|
|
|
* Wed May 31 2006 Tim Waugh <twaugh@redhat.com> 2.5.1-54
|
|
|
|
- Applied upstream patch to fix '-D skip' (bug #189580).
|
|
|
|
|
2006-02-20 14:36:53 +00:00
|
|
|
* Mon Feb 20 2006 Tim Waugh <twaugh@redhat.com> 2.5.1-53
|
|
|
|
- Applied Tim Robbins' patch for 'grep -w' (bug #179698).
|
|
|
|
|
2006-02-11 03:20:45 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.5.1-52.2
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 11:59:44 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.5.1-52.1
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2006-02-03 14:12:33 +00:00
|
|
|
* Fri Feb 3 2006 Tim Waugh <twaugh@redhat.com> 2.5.1-52
|
|
|
|
- Prevent 'grep -P' from segfaulting (bug #171379).
|
|
|
|
|
2005-12-09 22:40:48 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-09-29 12:10:05 +00:00
|
|
|
* Thu Sep 29 2005 Tim Waugh <twaugh@redhat.com> 2.5.1-51
|
|
|
|
- Prevent 'grep -Fw ""' from busy-looping (bug #169524).
|
|
|
|
|
2005-06-28 21:01:56 +00:00
|
|
|
* Tue Jun 28 2005 Tim Waugh <twaugh@redhat.com> 2.5.1-50
|
2005-06-29 13:32:16 +00:00
|
|
|
- Further fixing for bug #161700.
|
2005-06-28 21:01:56 +00:00
|
|
|
|
2005-06-27 11:17:40 +00:00
|
|
|
* Mon Jun 27 2005 Tim Waugh <twaugh@redhat.com> 2.5.1-49
|
2005-06-27 11:16:55 +00:00
|
|
|
- Fix 'grep -Fw' for encodings other than UTF-8 (bug #161700).
|
|
|
|
|
2005-04-13 09:17:50 +00:00
|
|
|
* Wed Apr 13 2005 Tim Waugh <twaugh@redhat.com>
|
|
|
|
- Build requires recent pcre-devel (bug #154626).
|
|
|
|
|
2005-03-02 14:58:33 +00:00
|
|
|
* Wed Mar 2 2005 Tim Waugh <twaugh@redhat.com> 2.5.1-48
|
|
|
|
- Rebuild for new GCC.
|
|
|
|
|
2005-01-07 17:04:58 +00:00
|
|
|
* Fri Jan 7 2005 Tim Waugh <twaugh@redhat.com> 2.5.1-47
|
|
|
|
- Run 'make check'.
|
2005-01-07 17:03:06 +00:00
|
|
|
- Fixed -w handling for EGexecute. Now 'make check' passes.
|
2005-01-07 15:03:52 +00:00
|
|
|
- Cache MB_CUR_MAX value in egf-speedup patch.
|
2005-01-07 14:50:45 +00:00
|
|
|
- Fixed variable shadowing in egf-speedup patch.
|
2005-01-07 12:08:02 +00:00
|
|
|
- Removed redundant (and incorrect) code in prline.
|
|
|
|
|
2005-01-07 10:34:49 +00:00
|
|
|
* Fri Jan 7 2005 Tim Waugh <twaugh@redhat.com> 2.5.1-46
|
2005-01-07 10:34:34 +00:00
|
|
|
- More -w tests from Jakub Jelinek.
|
2005-01-07 10:30:46 +00:00
|
|
|
- Rebased on 2.5.1a.
|
|
|
|
|
2004-12-31 16:14:18 +00:00
|
|
|
* Fri Dec 31 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-45
|
2004-12-31 16:12:38 +00:00
|
|
|
- More tests (Jakub Jelinek).
|
2004-12-31 15:43:57 +00:00
|
|
|
- Jakub Jelinek's much improved -Fi algorithm.
|
2004-12-31 15:43:25 +00:00
|
|
|
- Removed bogus part of grep-2.5.1-fgrep patch.
|
|
|
|
|
2004-12-21 13:57:42 +00:00
|
|
|
* Tue Dec 21 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-44
|
|
|
|
- Fixed -Fi for multibyte input (bug #143079).
|
|
|
|
|
2004-12-17 15:49:11 +00:00
|
|
|
* Thu Dec 16 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-43
|
2004-12-16 17:50:47 +00:00
|
|
|
- Bypass kwset matching when ignoring case and processing multibyte input
|
|
|
|
(bug #143079).
|
|
|
|
|
2004-12-14 16:21:41 +00:00
|
|
|
* Tue Dec 14 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-42
|
|
|
|
- Further UTF-8 processing avoided since a '\n' byte is always an
|
|
|
|
end-of-line character in that encoding.
|
|
|
|
|
2004-12-03 13:16:22 +00:00
|
|
|
* Fri Dec 3 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-41
|
|
|
|
- Fixed a busy loop in the egf-speedup patch (bug #140781).
|
|
|
|
|
2004-11-18 13:30:38 +00:00
|
|
|
* Thu Nov 18 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-40
|
|
|
|
- Fixed a bug in the fgrep patch, exposed by the dfa-optional patch
|
|
|
|
(bug #138558).
|
|
|
|
|
2004-11-16 16:49:04 +00:00
|
|
|
* Tue Nov 16 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-39
|
|
|
|
- Fixed last patch.
|
|
|
|
|
2004-11-16 13:27:09 +00:00
|
|
|
* Tue Nov 16 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-38
|
|
|
|
- Applied patch from Karsten Hopp to fix background colour problems with
|
|
|
|
--color output (bug #138913).
|
|
|
|
|
2004-11-10 09:44:37 +00:00
|
|
|
* Wed Nov 10 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-37
|
2004-11-10 09:42:35 +00:00
|
|
|
- Prevent false matches when DFA is disabled (bug #138558).
|
|
|
|
|
2004-11-08 09:14:38 +00:00
|
|
|
* Mon Nov 8 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-36
|
|
|
|
- Automatically disable DFA when processing multibyte input. GREP_USE_DFA
|
|
|
|
environment variable overrides.
|
|
|
|
|
2004-11-05 18:09:53 +00:00
|
|
|
* Fri Nov 5 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-35
|
|
|
|
- Fixes to egf-speedup patch: now it does not change any functionality,
|
|
|
|
as intended.
|
|
|
|
- GREP_NO_DFA now turns off the DFA engine, for performance testing.
|
|
|
|
|
2004-11-04 15:17:42 +00:00
|
|
|
* Thu Nov 4 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-34
|
|
|
|
- More improvements to egf-speedup patch (bug #138076).
|
|
|
|
|
2004-11-04 11:15:52 +00:00
|
|
|
* Thu Nov 4 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-33
|
|
|
|
- Small improvements to egf-speedup patch.
|
|
|
|
|
2004-11-03 17:42:00 +00:00
|
|
|
* Wed Nov 3 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-32
|
|
|
|
- Remove mb-caching hack.
|
2004-11-04 11:15:52 +00:00
|
|
|
- Better multibyte handling in EGexecute() and Fexecute().
|
2004-11-03 17:42:00 +00:00
|
|
|
- Don't need regex.c changes in grep-2.5-i18n.patch.
|
|
|
|
|
2004-10-13 17:18:38 +00:00
|
|
|
* Wed Oct 13 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-31
|
|
|
|
- Make 'grep -F' avoid UTF-8 processing if the pattern contains no
|
|
|
|
multibyte characters (bug #133932).
|
|
|
|
|
2004-10-11 11:23:03 +00:00
|
|
|
* Mon Oct 11 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-30
|
|
|
|
- Applied patch from Robert Scheck to tidy spec file and add a URL
|
|
|
|
tag (bug #135185).
|
|
|
|
|
2004-09-09 05:55:29 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Fri Jun 4 2004 Tim Waugh <twaugh@redhat.com>
|
|
|
|
- More build requirements (bug #125323).
|
|
|
|
|
2004-09-09 05:55:24 +00:00
|
|
|
* Tue May 18 2004 Jeremy Katz <katzj@redhat.com> 2.5.1-28
|
|
|
|
- rebuild
|
|
|
|
|
|
|
|
* Tue May 18 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-27
|
|
|
|
- Fix dfa multibyte character class matching when -i is used (bug #123363).
|
|
|
|
- Use bracket patch before i18n patch to make it clear that the bug exists
|
|
|
|
upstream.
|
|
|
|
|
2004-09-09 05:55:07 +00:00
|
|
|
* Thu Feb 26 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-26
|
|
|
|
- Fix fgrep (bug #116909).
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 05:54:06 +00:00
|
|
|
* Mon Jan 5 2004 Tim Waugh <twaugh@redhat.com> 2.5.1-24
|
|
|
|
- Work around glibc bug #112869 (segfault in re_compile_pattern).
|
|
|
|
- Avoid patching Makefile.am, to avoid automake/autoconf weirdness.
|
|
|
|
|
|
|
|
* Wed Dec 10 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-23
|
2004-09-09 05:53:33 +00:00
|
|
|
- Another multibyte efficiency bug-fix (bug #111800).
|
|
|
|
|
2004-09-09 05:54:06 +00:00
|
|
|
* Mon Dec 8 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-22
|
|
|
|
- Fixed [:alpha:]-type character classes (bug #108484).
|
2004-09-09 05:53:29 +00:00
|
|
|
- Fixed -o -i properly (bug #111489).
|
|
|
|
|
2004-09-09 05:54:06 +00:00
|
|
|
* Sat Dec 6 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-21
|
|
|
|
- Fixed 'fgrep -i' (bug #111614).
|
2004-09-09 05:53:29 +00:00
|
|
|
|
2004-09-09 05:54:06 +00:00
|
|
|
* Fri Nov 21 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-20
|
2004-09-09 05:53:26 +00:00
|
|
|
- Another two multibyte efficiency bug-fixes (bug #110524).
|
|
|
|
|
2004-09-09 05:54:06 +00:00
|
|
|
* Thu Nov 6 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-19
|
2004-09-09 05:53:26 +00:00
|
|
|
- Fixed a multibyte efficiency bug.
|
|
|
|
|
2004-09-09 05:54:06 +00:00
|
|
|
* Thu Nov 6 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-18
|
|
|
|
- Turn on multibyte efficiency patch again to shake out bugs.
|
|
|
|
|
|
|
|
* Wed Oct 8 2003 Tim Waugh <twaugh@redhat.com>
|
|
|
|
- Fixed man page bug (bug #106267).
|
|
|
|
|
2004-09-09 05:53:23 +00:00
|
|
|
* Thu Sep 18 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-17
|
|
|
|
- Use symlinks for egrep/fgrep, rather than shell script wrappers.
|
2004-09-09 05:53:11 +00:00
|
|
|
|
2004-09-09 05:53:23 +00:00
|
|
|
* Fri Jun 27 2003 Tim Waugh <twaugh@redhat.com>
|
|
|
|
- Fix debuginfo package.
|
2004-09-09 05:53:07 +00:00
|
|
|
|
2004-09-09 05:53:23 +00:00
|
|
|
* Fri Jun 27 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-16.1
|
|
|
|
- Rebuilt.
|
2004-09-09 05:53:07 +00:00
|
|
|
|
2004-09-09 05:53:23 +00:00
|
|
|
* Fri Jun 27 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-16
|
|
|
|
- Finally give up on making grep go fast. :-(
|
2004-09-09 05:53:07 +00:00
|
|
|
|
2004-09-09 05:53:23 +00:00
|
|
|
* Thu Jun 26 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-15.1
|
|
|
|
- Rebuilt.
|
2004-09-09 05:53:00 +00:00
|
|
|
|
2004-09-09 05:53:23 +00:00
|
|
|
* Thu Jun 26 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-15
|
2004-09-09 05:53:00 +00:00
|
|
|
- Fixed grep -i bug introduced by cache.
|
|
|
|
|
2004-09-09 05:53:23 +00:00
|
|
|
* Mon Jun 23 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-14.1
|
|
|
|
- Rebuilt.
|
|
|
|
|
|
|
|
* Mon Jun 23 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-14
|
2004-09-09 05:53:00 +00:00
|
|
|
- Redo the gofast patch (bug #97785).
|
|
|
|
|
2004-09-09 05:53:23 +00:00
|
|
|
* Thu Jun 12 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-13.1
|
|
|
|
- Rebuilt.
|
|
|
|
|
|
|
|
* Thu Jun 12 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-13
|
|
|
|
- Fixed a bug in the gofast patch (bug #97266).
|
2004-09-09 05:53:00 +00:00
|
|
|
|
2004-09-09 05:53:23 +00:00
|
|
|
* Tue Jun 10 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-12.1
|
|
|
|
- Rebuilt.
|
|
|
|
|
|
|
|
* Tue Jun 10 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-12
|
2004-09-09 05:53:00 +00:00
|
|
|
- Go faster (bug #69900).
|
2004-09-09 05:53:23 +00:00
|
|
|
- Fix man page.
|
|
|
|
|
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Thu May 29 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-10.1
|
|
|
|
- Rebuilt.
|
|
|
|
|
|
|
|
* Thu May 29 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-10
|
|
|
|
- Use system regex again.
|
|
|
|
|
|
|
|
* Thu May 29 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-9
|
|
|
|
- Fixed bug in go-fast patch.
|
2004-09-09 05:53:00 +00:00
|
|
|
|
2004-09-09 05:53:23 +00:00
|
|
|
* Wed May 28 2003 Tim Waugh <twaugh@redhat.com> 2.5.1-8
|
2004-09-09 05:53:00 +00:00
|
|
|
- Go fast (bug #69900).
|
2004-09-09 05:53:23 +00:00
|
|
|
- Run test suite.
|
2004-09-09 05:53:00 +00:00
|
|
|
|
|
|
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 2.5.1-7
|
2004-09-09 05:52:56 +00:00
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Tue Nov 19 2002 Tim Waugh <twaugh@redhat.com> 2.5.1-6
|
|
|
|
- i18n patch.
|
|
|
|
|
|
|
|
* Mon Oct 21 2002 Tim Waugh <twaugh@redhat.com> 2.5.1-5
|
|
|
|
- Don't install /usr/share/info/dir.
|
|
|
|
- Fix -o -i (bug #72641).
|
|
|
|
|
|
|
|
* Sat Jul 20 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- install all info files #69204
|
|
|
|
|
|
|
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
* Thu May 23 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2004-09-09 05:52:36 +00:00
|
|
|
* Tue Mar 26 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.5.1-1
|
|
|
|
- 2.5.1
|
|
|
|
|
2004-09-09 05:52:32 +00:00
|
|
|
* Wed Mar 13 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.5-1
|
|
|
|
- 2.5 final
|
|
|
|
|
|
|
|
* Wed Jan 23 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.5-0.g.1
|
|
|
|
- 2.5g
|
|
|
|
|
|
|
|
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
* Mon Nov 19 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.5-0.f.4
|
|
|
|
- Update CVS to reduce bloat
|
|
|
|
|
|
|
|
* Thu Nov 8 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.5-0.f.3
|
|
|
|
- Don't fail %%post with --excludedocs
|
|
|
|
|
2004-09-09 05:51:48 +00:00
|
|
|
* Wed Sep 26 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.5-0.f.2
|
|
|
|
- Fix up echo A |grep '[A-Z0-9]' in locales other than C
|
|
|
|
|
|
|
|
* Tue Sep 25 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.5-0.f.1
|
|
|
|
- 2.5f, fixes #53603
|
|
|
|
|
|
|
|
* Wed Jul 18 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.4.2-7
|
2004-09-09 05:51:35 +00:00
|
|
|
- Fix up the i18n patch - it used to break "grep '[]a]'" (#49003)
|
2004-09-09 05:51:48 +00:00
|
|
|
- revert to 2.4.2 (latest official release) for now
|
|
|
|
|
|
|
|
* Mon May 28 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.5e-4
|
|
|
|
- Fix "echo Linux forever |grep -D skip Linux"
|
|
|
|
|
|
|
|
* Mon May 21 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.5e-3
|
|
|
|
- Add new -D, --devices option
|
|
|
|
- Fix a bug with "directories" being uninitialized
|
|
|
|
|
|
|
|
* Sun May 13 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.5e-2
|
|
|
|
- Fix up the --color option to behave like the one from ls (--color=auto)
|
|
|
|
Sooner or later, some people will alias grep="grep --color" and wonder why
|
|
|
|
their scripts break.
|
|
|
|
- Update docs accordingly
|
|
|
|
- Get rid of the annoying blinking in grep --color
|
2004-09-09 05:51:35 +00:00
|
|
|
|
2004-09-09 05:51:48 +00:00
|
|
|
* Sun May 13 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.5e-1
|
|
|
|
- 2.5e
|
2004-09-09 05:51:31 +00:00
|
|
|
|
2007-04-20 17:30:41 +00:00
|
|
|
* Tue Feb 27 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
2004-09-09 05:51:25 +00:00
|
|
|
- use %%{_tmppath}
|
|
|
|
- langify
|
|
|
|
|
2004-09-09 05:50:55 +00:00
|
|
|
* 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>
|
2007-04-20 17:30:41 +00:00
|
|
|
- upgraded to grep 2.3, added install-info %%post/%%preun for info
|
2004-09-09 05:50:55 +00:00
|
|
|
|
|
|
|
* 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
|