diff --git a/R-ellipsis.spec b/R-ellipsis.spec new file mode 100644 index 0000000..07fe586 --- /dev/null +++ b/R-ellipsis.spec @@ -0,0 +1,68 @@ +%bcond_with check + +%global packname ellipsis +%global packver 0.3.2 +%global rlibdir %{_libdir}/R/library + +Name: R-%{packname} +Version: 0.3.2 +Release: 1 +Summary: Collection of functions to catch problems and alert the user + +License: GPLv3 +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) +BuildRequires: R-rlang >= 0.3.0 +%if %{with check} +BuildRequires: R-testthat +%endif + +%description +The ellipsis is a powerful tool for extending functions. Unfortunately this +power comes at a cost: misspelled arguments will be silently ignored. The +ellipsis package provides a collection of functions to catch problems and alert +the user. + + +%prep +%setup -q -c -n %{packname} +sed -i 's/covr, //g' %{packname}/DESCRIPTION + + +%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 +%license %{rlibdir}/%{packname}/LICENSE +%doc %{rlibdir}/%{packname}/NEWS.md +%{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 +* Tue Jun 14 2022 misaka00251 - 0.3.2-1 +- Init package (Thanks to fedora team) diff --git a/ellipsis_0.3.2.tar.gz b/ellipsis_0.3.2.tar.gz new file mode 100644 index 0000000..00eaca9 Binary files /dev/null and b/ellipsis_0.3.2.tar.gz differ