R-sourcetools/R-sourcetools.spec

81 lines
2.0 KiB
RPMSpec
Raw Normal View History

2018-04-25 21:14:02 +00:00
%global packname sourcetools
%global rlibdir %{_libdir}/R/library
Name: R-%{packname}
Version: 0.1.7
2018-05-18 18:13:29 +00:00
Release: 2%{?dist}
2018-04-25 21:14:02 +00:00
Summary: Tools for Reading, Tokenizing and Parsing R Code
License: MIT
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:
# Suggests: R-testthat
# LinkingTo:
# Enhances:
Suggests: R-testthat
BuildRequires: R-devel
BuildRequires: tex(latex)
BuildRequires: R-testthat
%description
Tools for the reading and tokenization of R code. The 'sourcetools' package
provides both an R and C++ interface for the tokenization of R code, and
helpers for interacting with the tokenized representation of R code.
%package devel
Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
Development files for %{name}.
%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
export LANG=C.UTF-8
%{_bindir}/R CMD check %{packname}
%files
%dir %{rlibdir}/%{packname}
%doc %{rlibdir}/%{packname}/html
%{rlibdir}/%{packname}/DESCRIPTION
%doc %{rlibdir}/%{packname}/NEWS.md
%license %{rlibdir}/%{packname}/LICENSE
%{rlibdir}/%{packname}/INDEX
%{rlibdir}/%{packname}/NAMESPACE
%{rlibdir}/%{packname}/Meta
%{rlibdir}/%{packname}/R
%{rlibdir}/%{packname}/help
%dir %{rlibdir}/%{packname}/libs
%{rlibdir}/%{packname}/libs/%{packname}.so
%files devel
%{rlibdir}/%{packname}/include
%changelog
2018-05-18 18:13:29 +00:00
* Fri May 18 2018 Tom Callaway <spot@fedoraproject.org> - 0.1.7-2
- rebuild for R 3.5.0
2018-04-25 21:14:02 +00:00
* Tue Apr 24 2018 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.1.7-1
- initial package for Fedora