|
|
@ -1,19 +1,22 @@
|
|
|
|
Summary: Shell tool for executing jobs in parallel
|
|
|
|
Name: parallel
|
|
|
|
Name: parallel
|
|
|
|
Summary: Shell tool for executing jobs in parallel
|
|
|
|
Version: 20160222
|
|
|
|
Version: 20160722
|
|
|
|
Release: 1%{?dist}
|
|
|
|
Release: 1%{?dist}
|
|
|
|
License: GPLv3+
|
|
|
|
|
|
|
|
Group: Applications/Productivity
|
|
|
|
License: GPLv3+
|
|
|
|
URL: http://www.gnu.org/software/parallel/
|
|
|
|
URL: http://www.gnu.org/software/parallel/
|
|
|
|
Source0: http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.bz2
|
|
|
|
Source0: http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.bz2
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
BuildRequires: perl-generators
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BuildRequires: perl-generators
|
|
|
|
|
|
|
|
BuildRequires: %{_bindir}/pod2man
|
|
|
|
|
|
|
|
|
|
|
|
# Due to a naming conflict, both packages cannot be installed in parallel
|
|
|
|
# Due to a naming conflict, both packages cannot be installed in parallel
|
|
|
|
# To prevent user confusion, GNU parallel is installed in a compatibility
|
|
|
|
# To prevent user confusion, GNU parallel is installed in a compatibility
|
|
|
|
# mode to be commandline compatible to moreutils' parallel.
|
|
|
|
# mode to be commandline compatible to moreutils' parallel.
|
|
|
|
# This mode can be turned off system wide or on a per-user base.
|
|
|
|
# This mode can be turned off system wide or on a per-user base.
|
|
|
|
Conflicts: moreutils-parallel
|
|
|
|
Conflicts: moreutils-parallel
|
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
%description
|
|
|
|
GNU Parallel is a shell tool for executing jobs in parallel using one or more
|
|
|
|
GNU Parallel is a shell tool for executing jobs in parallel using one or more
|
|
|
@ -34,42 +37,40 @@ GNU Parallel is command-line-compatible with moreutils' parallel, but offers
|
|
|
|
additional features.
|
|
|
|
additional features.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%prep
|
|
|
|
|
|
|
|
%autosetup
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%build
|
|
|
|
|
|
|
|
|
|
|
|
%configure
|
|
|
|
%configure
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
%make_build
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%install
|
|
|
|
|
|
|
|
%make_install
|
|
|
|
make install DESTDIR=%{buildroot}
|
|
|
|
rm -vrf %{buildroot}%{_pkgdocdir}
|
|
|
|
|
|
|
|
sed -i -e '1s|!/usr/bin/env perl|#!%{__perl}|' %{buildroot}%{_bindir}/*
|
|
|
|
find %{buildroot} -iname "*.html" -delete
|
|
|
|
# FIXME: do it properly
|
|
|
|
find %{buildroot} -iname "*.texi" -delete
|
|
|
|
sed -i -e '1{\@^#!@d}' %{buildroot}%{_bindir}/env_parallel.*
|
|
|
|
find %{buildroot} -iname "*.pod" -delete
|
|
|
|
chmod -x %{buildroot}%{_bindir}/env_parallel.*
|
|
|
|
find %{buildroot} -iname "*.pdf" -delete
|
|
|
|
|
|
|
|
mv %{buildroot}%{_mandir}/man1/sql.1 %{buildroot}%{_mandir}/man1/parallel-sql.1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%files
|
|
|
|
|
|
|
|
%license COPYING
|
|
|
|
|
|
|
|
%doc README NEWS
|
|
|
|
%{_bindir}/parallel
|
|
|
|
%{_bindir}/parallel
|
|
|
|
|
|
|
|
%{_mandir}/man1/parallel.1*
|
|
|
|
|
|
|
|
%exclude %{_bindir}/env_parallel*
|
|
|
|
|
|
|
|
%exclude %{_mandir}/man1/env_parallel.1*
|
|
|
|
%{_bindir}/sem
|
|
|
|
%{_bindir}/sem
|
|
|
|
|
|
|
|
%{_mandir}/man1/sem.1*
|
|
|
|
%{_bindir}/sql
|
|
|
|
%{_bindir}/sql
|
|
|
|
|
|
|
|
%{_mandir}/man1/sql.1*
|
|
|
|
%{_bindir}/niceload
|
|
|
|
%{_bindir}/niceload
|
|
|
|
%{_mandir}/man*/niceload.*.*
|
|
|
|
%{_mandir}/man1/niceload.1*
|
|
|
|
%{_mandir}/man*/parallel.*.*
|
|
|
|
%{_mandir}/man7/parallel_tutorial.7*
|
|
|
|
%{_mandir}/man*/sem.*.*
|
|
|
|
%{_mandir}/man7/parallel_design.7*
|
|
|
|
%{_mandir}/man*/parallel-sql.*.*
|
|
|
|
|
|
|
|
%{_mandir}/man*/parallel_tutorial.*.*
|
|
|
|
|
|
|
|
%{_mandir}/man*/parallel_design.*.gz
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%doc README NEWS COPYING src/parallel.html src/sem.html src/sql.html
|
|
|
|
|
|
|
|
%doc src/niceload.html src/*.texi
|
|
|
|
|
|
|
|
%doc src/niceload.pdf src/parallel.pdf src/parallel_tutorial.pdf src/sem.pdf src/sql.pdf
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
%changelog
|
|
|
|
|
|
|
|
* Sun Aug 21 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 20160722-1
|
|
|
|
|
|
|
|
- Update to 20160722
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Apr 04 2016 Golo Fuchert <packages@golotop.de> 20160222-1
|
|
|
|
* Mon Apr 04 2016 Golo Fuchert <packages@golotop.de> 20160222-1
|
|
|
|
- Update to version 20160222-1 to fix bugs (#1285888,1307846,1320511,1320956,1320958)
|
|
|
|
- Update to version 20160222-1 to fix bugs (#1285888,1307846,1320511,1320956,1320958)
|
|
|
|
|
|
|
|
|
|
|
|