forked from pool/findutils
Marcus Meissner
8ab91647aa
- findutils-oldfind-fix-dotdot-skipping.patch: Add upstream patch to fix 'oldfind' which skipped all files starting with ".." (e.g. "..file"). - findutils.spec: Add BuildRequires:dejagnu - otherwise only a very limited set of the tests was run by 'make check'. OBS-URL: https://build.opensuse.org/request/show/280066 OBS-URL: https://build.opensuse.org/package/show/Base:System/findutils?expand=0&rev=58
121 lines
3.5 KiB
RPMSpec
121 lines
3.5 KiB
RPMSpec
#
|
|
# spec file for package findutils
|
|
#
|
|
# Copyright (c) 2015 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: findutils
|
|
Url: http://www.gnu.org/software/findutils/
|
|
Version: 4.5.14
|
|
Release: 0
|
|
Summary: The GNU versions of find utilities (find and xargs)
|
|
License: GPL-3.0+
|
|
Group: Productivity/File utilities
|
|
Source: http://alpha.gnu.org/gnu/%{name}/%{name}-%{version}.tar.gz
|
|
# adds a new option -xautofs to find to not descend into directories on autofs file systems
|
|
Patch0: findutils-4.4.2-xautofs.patch
|
|
# Fix imported gnulib long double math tests for little-endian PowerPC
|
|
Patch1: findutils-gnulib-ppc64le.patch
|
|
# Upstream patch to fix a problem in oldfind(1) skipping files starting with "..".
|
|
Patch2: findutils-oldfind-fix-dotdot-skipping.patch
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
# BuildRequire dejagnu for 'runtest' to execute all tests.
|
|
BuildRequires: dejagnu
|
|
%if 0%{?suse_version} > 1100
|
|
BuildRequires: libselinux-devel
|
|
%endif
|
|
BuildRequires: makeinfo
|
|
Provides: find = %{version}
|
|
Obsoletes: find < %{version}
|
|
Requires(post): %{install_info_prereq}
|
|
Requires(preun): %{install_info_prereq}
|
|
|
|
%description
|
|
The findutils package contains programs which will help you locate
|
|
files on your system. The find utility searches through a hierarchy
|
|
of directories looking for files which match a certain set of criteria
|
|
(such as a file name pattern). The xargs utility builds and executes
|
|
command lines from standard input arguments (usually lists of file
|
|
names generated by the find command).
|
|
|
|
You should install findutils because it includes tools that are very
|
|
useful for finding things on your system.
|
|
|
|
|
|
%lang_package
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0
|
|
%patch1
|
|
%patch2
|
|
|
|
%build
|
|
%if 0%{?qemu_user_space_build}
|
|
# this is a workaround for a qemu-user bug, we hit. A qemu patch is being discussed, but for now ...
|
|
export DEFAULT_ARG_SIZE="(31u * 1024u)"
|
|
%endif
|
|
%configure \
|
|
--libexecdir=%{_libdir}/find \
|
|
--localstatedir=/var/lib
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
%check
|
|
make check
|
|
|
|
%install
|
|
make DESTDIR=%{buildroot} install
|
|
|
|
rm -f %{buildroot}%{_infodir}/find-maint*
|
|
%find_lang %{name}
|
|
#UsrMerge
|
|
mkdir -p %{buildroot}/bin
|
|
ln -sf %{_bindir}/find %{buildroot}/bin
|
|
#UsrMerge
|
|
|
|
rm %{buildroot}%{_bindir}/locate
|
|
rm %{buildroot}%{_bindir}/updatedb
|
|
rm -r %{buildroot}%{_libdir}/find
|
|
rm %{buildroot}%{_mandir}/man1/locate.1*
|
|
rm %{buildroot}%{_mandir}/man1/updatedb.1*
|
|
rm %{buildroot}%{_mandir}/man5/locatedb.5*
|
|
|
|
%post
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/find.info.gz
|
|
|
|
%preun
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/find.info.gz
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc AUTHORS COPYING NEWS README THANKS TODO
|
|
#UsrMerge
|
|
/bin/find
|
|
#UsrMerge
|
|
%{_bindir}/find
|
|
%{_bindir}/oldfind
|
|
%{_bindir}/xargs
|
|
%doc %{_infodir}/find.info*.gz
|
|
%doc %{_mandir}/man1/find.1.gz
|
|
%doc %{_mandir}/man1/oldfind.1.gz
|
|
%doc %{_mandir}/man1/xargs.1.gz
|
|
|
|
%files lang -f %{name}.lang
|
|
%defattr(-,root,root,-)
|
|
|
|
%changelog
|