Initial import (#1721732).
This commit is contained in:
parent
bfed0b43c5
commit
13acfce7b9
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
/packrat_0.5.0.tar.gz
|
86
R-packrat.spec
Normal file
86
R-packrat.spec
Normal file
@ -0,0 +1,86 @@
|
||||
%global packname packrat
|
||||
%global rlibdir %{_datadir}/R/library
|
||||
|
||||
# Suggests loop.
|
||||
%global with_suggests 0
|
||||
|
||||
Name: R-%{packname}
|
||||
Version: 0.5.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Dependency Management System for R Projects
|
||||
|
||||
License: GPLv2
|
||||
URL: https://CRAN.R-project.org/package=%{packname}
|
||||
Source0: https://cran.r-project.org/src/contrib/%{packname}_%{version}.tar.gz
|
||||
|
||||
# Here's the R view of the dependencies world:
|
||||
# Depends:
|
||||
# Imports: R-tools, R-utils
|
||||
# Suggests: R-testthat >= 0.7, R-devtools, R-httr, R-knitr, R-rmarkdown
|
||||
# LinkingTo:
|
||||
# Enhances:
|
||||
|
||||
BuildArch: noarch
|
||||
Requires: R-core
|
||||
Requires: R-tools
|
||||
Requires: R-utils
|
||||
Suggests: R-testthat >= 0.7
|
||||
Suggests: R-devtools
|
||||
Suggests: R-httr
|
||||
Suggests: R-knitr
|
||||
Suggests: R-rmarkdown
|
||||
BuildRequires: R-devel
|
||||
BuildRequires: tex(latex)
|
||||
BuildRequires: R-tools
|
||||
BuildRequires: R-utils
|
||||
BuildRequires: R-testthat >= 0.7
|
||||
BuildRequires: R-httr
|
||||
BuildRequires: R-knitr
|
||||
BuildRequires: R-rmarkdown
|
||||
%if %{with_suggests}
|
||||
BuildRequires: R-devtools
|
||||
%endif
|
||||
|
||||
%description
|
||||
Manage the R packages your project depends on in an isolated, portable, and
|
||||
reproducible way.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -c -n %{packname}
|
||||
|
||||
|
||||
%build
|
||||
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}%{rlibdir}
|
||||
%{_bindir}/R CMD INSTALL -l %{buildroot}%{rlibdir} %{packname}
|
||||
test -d %{packname}/src && (cd %{packname}/src; rm -f *.o *.so)
|
||||
rm -f %{buildroot}%{rlibdir}/R.css
|
||||
|
||||
|
||||
%check
|
||||
%if %{with_suggests}
|
||||
%{_bindir}/R CMD check %{packname}
|
||||
%else
|
||||
_R_CHECK_FORCE_SUGGESTS_=0 %{_bindir}/R CMD check %{packname}
|
||||
%endif
|
||||
|
||||
|
||||
%files
|
||||
%dir %{rlibdir}/%{packname}
|
||||
%doc %{rlibdir}/%{packname}/html
|
||||
%{rlibdir}/%{packname}/DESCRIPTION
|
||||
%{rlibdir}/%{packname}/INDEX
|
||||
%{rlibdir}/%{packname}/NAMESPACE
|
||||
%{rlibdir}/%{packname}/Meta
|
||||
%{rlibdir}/%{packname}/R
|
||||
%{rlibdir}/%{packname}/help
|
||||
%{rlibdir}/%{packname}/resources
|
||||
%{rlibdir}/%{packname}/rstudio
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon Jun 17 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.5.0-1
|
||||
- initial package for Fedora
|
Loading…
Reference in New Issue
Block a user