2013-03-04 17:58:17 +01:00
|
|
|
#
|
|
|
|
# spec file for package gnu_parallel
|
|
|
|
#
|
2015-03-05 20:56:40 +01:00
|
|
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
2013-03-04 17:58:17 +01:00
|
|
|
#
|
|
|
|
# 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: gnu_parallel
|
2015-10-24 15:48:21 +02:00
|
|
|
Version: 20151022
|
2013-03-04 17:58:17 +01:00
|
|
|
Release: 0
|
|
|
|
Summary: Shell tool for executing jobs in parallel
|
|
|
|
License: GPL-3.0+
|
|
|
|
Group: Productivity/File utilities
|
|
|
|
Url: http://www.gnu.org/software/parallel/
|
2013-05-08 19:37:34 +02:00
|
|
|
#DL-URL: http://ftp.gnu.org/gnu/parallel/
|
2015-10-24 15:48:21 +02:00
|
|
|
Source0: http://ftp.gnu.org/gnu/parallel/parallel-%{version}.tar.bz2
|
|
|
|
Source1: http://ftp.gnu.org/gnu/parallel/parallel-%{version}.tar.bz2.sig
|
|
|
|
Source2: %{name}.keyring
|
2013-03-04 17:58:17 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description
|
|
|
|
GNU Parallel is a shell tool for executing jobs in parallel using one
|
|
|
|
or more computers. A job can be a single command or a small script
|
|
|
|
that has to be run for each of the lines in the input. The typical
|
|
|
|
input is a list of files, a list of hosts, a list of users, a list of
|
|
|
|
URLs, or a list of tables. A job can also be a command that reads from
|
|
|
|
a pipe. GNU Parallel can then split the input and pipe it into
|
|
|
|
commands in parallel.
|
|
|
|
|
2015-03-22 21:26:28 +01:00
|
|
|
%package doc
|
|
|
|
Summary: Documentation for GNU parallel
|
|
|
|
Group: Documentation/HTML
|
|
|
|
|
|
|
|
%description doc
|
|
|
|
GNU Parallel is a shell tool for executing jobs in parallel using one
|
|
|
|
or more computers.
|
|
|
|
This subpackage contains the documentation for Parallel.
|
|
|
|
|
2013-03-04 17:58:17 +01:00
|
|
|
%prep
|
2015-09-09 09:45:41 +02:00
|
|
|
%setup -q -n parallel-%{version}
|
2013-03-04 17:58:17 +01:00
|
|
|
|
|
|
|
%build
|
2015-09-09 09:45:41 +02:00
|
|
|
%configure --docdir="%{_docdir}/%{name}"
|
2013-03-04 17:58:17 +01:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
2015-03-05 20:57:46 +01:00
|
|
|
%make_install
|
2015-09-09 09:45:41 +02:00
|
|
|
cp -a CITATION COPYING NEWS README "%{buildroot}/%{_docdir}/%{name}/"
|
2013-03-04 17:58:17 +01:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2015-09-09 09:45:41 +02:00
|
|
|
%{_bindir}/niceload
|
|
|
|
%{_bindir}/parallel
|
|
|
|
%{_bindir}/sem
|
|
|
|
%{_bindir}/sql
|
|
|
|
%{_mandir}/man1/*.1*
|
|
|
|
%{_mandir}/man7/*.7*
|
2015-03-22 21:26:28 +01:00
|
|
|
|
|
|
|
%files doc
|
|
|
|
%defattr(-,root,root)
|
2015-09-09 09:45:41 +02:00
|
|
|
%{_docdir}/%{name}/
|
2013-03-04 17:58:17 +01:00
|
|
|
|
|
|
|
%changelog
|