Dirk Mueller
7bdb31fdca
- Update to version 3.0: * grep without -F no longer goes awry when given two or more patterns that contain no special characters other than '\' and also contain a subpattern like '\.' that escapes a character to make it ordinary. * grep no longer fails to build on PCRE versions before 8.20. - Cleanup spec file: * Drop support for old distributions * Create lang subpackage * Use fdupes to replace duplicate files with symlinks OBS-URL: https://build.opensuse.org/request/show/456376 OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=79
92 lines
2.6 KiB
RPMSpec
92 lines
2.6 KiB
RPMSpec
#
|
|
# spec file for package grep
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX 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: 3.0
|
|
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: fdupes
|
|
BuildRequires: makeinfo
|
|
BuildRequires: pcre-devel
|
|
Requires(pre): %{install_info_prereq}
|
|
Requires(preun): %{install_info_prereq}
|
|
Recommends: %{name}-lang
|
|
Provides: base:%{_bindir}/grep
|
|
|
|
%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.
|
|
|
|
%lang_package
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%global optflags %{optflags} -fPIE
|
|
export LDFLAGS="-pie"
|
|
%configure --disable-silent-rules --without-included-regex
|
|
make %{?_smp_mflags}
|
|
|
|
%check
|
|
make check VERBOSE=1 %{?_smp_mflags}
|
|
|
|
%install
|
|
%make_install
|
|
#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
|
|
%fdupes -s %{buildroot}
|
|
%find_lang %{name}
|
|
|
|
%post
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/grep.info%{ext_info}
|
|
|
|
%preun
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/grep.info%{ext_info}
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc README AUTHORS NEWS THANKS TODO COPYING ChangeLog*
|
|
#UsrMerge
|
|
/bin/egrep
|
|
/bin/fgrep
|
|
/bin/grep
|
|
#EndUsrMerge
|
|
%{_bindir}/egrep
|
|
%{_bindir}/fgrep
|
|
%{_bindir}/grep
|
|
%{_mandir}/man1/egrep.1%{ext_man}
|
|
%{_mandir}/man1/fgrep.1%{ext_man}
|
|
%{_mandir}/man1/grep.1%{ext_man}
|
|
%{_infodir}/grep.info%{ext_info}
|
|
|
|
%files lang -f %{name}.lang
|
|
%defattr(-,root,root)
|
|
|
|
%changelog
|