Marcus Meissner
7d179c3ddc
- update to 2.17 * grep -i in a multibyte locale is now typically 10 times faster for patterns that do not contain \ or [ * grep (without -i) in a multibyte locale is now up to 7 times faster when processing many matched lines * grep's --mmap option was disabled in March of 2010, and began to elicit a warning in January of 2012. Now it is completely gone. - Reformat spec file using hints from spec-cleaner OBS-URL: https://build.opensuse.org/request/show/223015 OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=42
108 lines
3.0 KiB
RPMSpec
108 lines
3.0 KiB
RPMSpec
#
|
|
# spec file for package grep
|
|
#
|
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: grep
|
|
Version: 2.17
|
|
Release: 0
|
|
Summary: Print lines matching a pattern
|
|
License: GPL-3.0+
|
|
Group: Productivity/Text/Utilities
|
|
Url: http://www.gnu.org/software/grep/
|
|
Source0: http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz
|
|
Source2: http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz.sig
|
|
Source3: http://savannah.gnu.org/project/memberlist-gpgkeys.php?group=grep&download=1#/%{name}.keyring
|
|
|
|
BuildRequires: makeinfo
|
|
BuildRequires: pcre-devel
|
|
BuildRequires: xz
|
|
%if 0%{?suse_version} < 1120
|
|
BuildRequires: pcre
|
|
%endif
|
|
|
|
Provides: base:/usr/bin/grep
|
|
Requires(pre): %{install_info_prereq}
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
The grep command searches one or more input files for lines
|
|
containing a match to a specified pattern. By default, grep prints
|
|
the matching lines.
|
|
|
|
%prep
|
|
%setup -q
|
|
%if 0%{?suse_version} < 1120
|
|
echo "ac_cv_search_pcre_compile=\${ac_cv_search_pcre_compile=%{_libdir}/libpcre.a}" >config.cache
|
|
%endif
|
|
|
|
%build
|
|
%ifarch ppc ppc64
|
|
export CFLAGS="%{optflags} -mlong-double-64"
|
|
%endif
|
|
%if 0%{?suse_version} < 1120
|
|
%configure -C --bindir=/bin --disable-silent-rules
|
|
%else if 0%{?suse_version} < 1310
|
|
%configure --disable-silent-rules
|
|
%else
|
|
%configure --disable-silent-rules --without-included-regex
|
|
%endif
|
|
make %{?_smp_mflags}
|
|
|
|
%check
|
|
make check VERBOSE=1 %{?_smp_mflags}
|
|
|
|
%install
|
|
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
|
%if 0%{?suse_version} < 1120
|
|
install -d %{buildroot}%{_bindir}
|
|
ln -sf ../../bin/egrep %{buildroot}%{_bindir}/egrep
|
|
ln -sf ../../bin/fgrep %{buildroot}%{_bindir}/fgrep
|
|
ln -sf ../../bin/grep %{buildroot}%{_bindir}/grep
|
|
%else
|
|
#UsrMerge
|
|
install -d %{buildroot}/bin
|
|
ln -sf %{_bindir}/egrep %{buildroot}/bin/egrep
|
|
ln -sf %{_bindir}/fgrep %{buildroot}/bin/fgrep
|
|
ln -sf %{_bindir}/grep %{buildroot}/bin/grep
|
|
#EndUsrMerge
|
|
%endif
|
|
%find_lang %{name}
|
|
|
|
%post
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/grep.info.gz
|
|
|
|
%postun
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/grep.info.gz
|
|
|
|
%files -f %{name}.lang
|
|
%defattr(-,root,root)
|
|
%doc README AUTHORS NEWS THANKS TODO COPYING ChangeLog*
|
|
%if 0%{?suse_version} < 1120
|
|
/bin/*
|
|
%else
|
|
#UsrMerge
|
|
/bin/egrep
|
|
/bin/fgrep
|
|
/bin/grep
|
|
#EndUsrMerge
|
|
%endif
|
|
%{_bindir}/*
|
|
%{_mandir}/man1/*.gz
|
|
%{_infodir}/*.gz
|
|
|
|
%changelog
|