diff --git a/R-fastmap.spec b/R-fastmap.spec new file mode 100644 index 0000000..41374df --- /dev/null +++ b/R-fastmap.spec @@ -0,0 +1,68 @@ +%bcond_with check + +%global packname fastmap +%global packver 1.1.0 +%global rlibdir %{_libdir}/R/library + +Name: R-%{packname} +Version: 1.1.0 +Release: 1 +Summary: Fast Data Structures + +License: MIT +URL: https://CRAN.R-project.org/package=%{packname} +Source0: https://cran.r-project.org/src/contrib/%{packname}_%{packver}.tar.gz + +BuildRequires: R-devel +BuildRequires: tex(latex) +%if %{with check} +BuildRequires: R-testthat >= 2.1.1 +%endif + +%description +Fast implementation of data structures, including a key-value store, stack, +and queue. Environments are commonly used as key-value stores in R, but +every time a new key is used, it is added to R's global symbol table, +causing a small amount of memory leakage. This can be problematic in cases +where many different keys are used. Fastmap avoids this memory leak issue +by implementing the map using data structures in C++. + + +%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 check} +%{_bindir}/R CMD check %{packname} +%endif + + +%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 + + +%changelog +* Thu Jun 16 2022 misaka00251 - 1.1.0-1 +- Init package (Thanks to fedora team) diff --git a/fastmap_1.1.0.tar.gz b/fastmap_1.1.0.tar.gz new file mode 100644 index 0000000..969d116 Binary files /dev/null and b/fastmap_1.1.0.tar.gz differ