Initial import (#1511817).
This commit is contained in:
parent
6f7e149a84
commit
76897865d8
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
/rprojroot_1.2.tar.gz
|
79
R-rprojroot.spec
Normal file
79
R-rprojroot.spec
Normal file
@ -0,0 +1,79 @@
|
||||
%global packname rprojroot
|
||||
%global rlibdir %{_datadir}/R/library
|
||||
|
||||
# Dependency lops.
|
||||
%global with_doc 0
|
||||
|
||||
Name: R-%{packname}
|
||||
Version: 1.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Finding Files in Project Subdirectories
|
||||
|
||||
License: GPLv3
|
||||
URL: https://cran.r-project.org/web/packages/%{packname}/index.html
|
||||
Source0: https://cran.r-project.org/src/contrib/%{packname}_%{version}.tar.gz
|
||||
|
||||
# Here's the R view of the dependencies world:
|
||||
# Depends:
|
||||
# Imports: R-backports
|
||||
# Suggests: R-testthat R-knitr R-withr R-rmarkdown
|
||||
# LinkingTo:
|
||||
# Enhances:
|
||||
|
||||
BuildArch: noarch
|
||||
Requires: R-core
|
||||
|
||||
Requires: R-backports
|
||||
BuildRequires: R-devel tex(latex)
|
||||
BuildRequires: R-backports
|
||||
BuildRequires: R-testthat
|
||||
%if %{with_doc}
|
||||
BuildRequires: R-knitr
|
||||
BuildRequires: R-withr
|
||||
BuildRequires: R-rmarkdown
|
||||
%endif
|
||||
|
||||
%description
|
||||
Robust, reliable and flexible paths to files below a project root. The
|
||||
'root' of a project is defined as a directory that matches a certain
|
||||
criterion, e.g., it contains a certain regular file.
|
||||
|
||||
|
||||
%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_doc}
|
||||
%{_bindir}/R CMD check %{packname}
|
||||
%else
|
||||
_R_CHECK_FORCE_SUGGESTS_=0 %{_bindir}/R CMD check %{packname} --ignore-vignettes
|
||||
%endif
|
||||
|
||||
|
||||
%files
|
||||
%dir %{rlibdir}/%{packname}
|
||||
%doc %{rlibdir}/%{packname}/doc
|
||||
%doc %{rlibdir}/%{packname}/html
|
||||
%{rlibdir}/%{packname}/DESCRIPTION
|
||||
%doc %{rlibdir}/%{packname}/NEWS.md
|
||||
%{rlibdir}/%{packname}/INDEX
|
||||
%{rlibdir}/%{packname}/NAMESPACE
|
||||
%{rlibdir}/%{packname}/Meta
|
||||
%{rlibdir}/%{packname}/R
|
||||
%{rlibdir}/%{packname}/help
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu Nov 09 2017 Elliott Sales de Andrade <quantum.analyst@gmail.com> 1.2-1
|
||||
- initial package for Fedora
|
Loading…
Reference in New Issue
Block a user