File R-foreach.spec of Package R-foreach
#
# spec file for package R-foreach
#
# Copyright (c) 2020 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
%global packname foreach
%global rlibdir %{_libdir}/R/library
Name: R-%{packname}
Version: 1.5.0
Release: 0
Summary: Provides Foreach Looping Construct
License: Apache-2.0 (== 2.0)
Group: Development/Libraries/Other
URL: http://cran.r-project.org/web/packages/%{packname}
Source: http://cran.r-project.org/src/contrib/%{packname}_%{version}.tar.gz
BuildRequires: R-base-devel
BuildRequires: R-codetools
BuildRequires: R-iterators
BuildRequires: R-utils
BuildRequires: fdupes
BuildRequires: texinfo
Requires: R-base
Requires: R-codetools
Requires: R-iterators
Requires: R-utils
%if 0%{?sle_version} > 120400 || 0%{?is_opensuse}
# Three others commonly needed
BuildRequires: tex(ae.sty)
BuildRequires: tex(fancyvrb.sty)
BuildRequires: tex(inconsolata.sty)
BuildRequires: tex(natbib.sty)
%else
BuildRequires: texlive
%endif
%description
Support for the foreach looping construct. Foreach is an idiom that
allows for iterating over elements in a collection, without the use of an
explicit loop counter. This package in particular is intended to be used
for its return value, rather than for its side effects. In that sense, it
is similar to the standard lapply function, but doesn't require the
evaluation of a function. Using foreach without side effects also
facilitates executing the loop in parallel.
%prep
%setup -q -c -n %{packname}
%build
%install
mkdir -p %{buildroot}%{rlibdir}
%{_bindir}/R CMD INSTALL -l %{buildroot}%{rlibdir} %{packname}
rm -f %{buildroot}%{rlibdir}/R.css
%fdupes %{buildroot}%{rlibdir}/%{packname}
%files
%dir %{rlibdir}/%{packname}
%doc %{rlibdir}/foreach/doc
%doc %{rlibdir}/foreach/html
%{rlibdir}/foreach/INDEX
%{rlibdir}/foreach/examples
%{rlibdir}/foreach/Meta
%{rlibdir}/foreach/demo
%{rlibdir}/foreach/DESCRIPTION
%{rlibdir}/foreach/R
%{rlibdir}/foreach/NAMESPACE
%{rlibdir}/foreach/NEWS.md
%{rlibdir}/foreach/help
%changelog