2020-02-25 12:06:31 +00:00
|
|
|
%global packname tidyselect
|
|
|
|
%global packver 1.0.0
|
2020-02-25 22:09:20 +00:00
|
|
|
%global rlibdir %{_datadir}/R/library
|
2019-02-19 23:21:50 +00:00
|
|
|
|
|
|
|
# dplyr requires this package.
|
|
|
|
%global with_loop 0
|
|
|
|
|
|
|
|
Name: R-%{packname}
|
2020-02-25 12:06:31 +00:00
|
|
|
Version: 1.0.0
|
2020-02-25 22:09:20 +00:00
|
|
|
Release: 2%{?dist}
|
2019-02-19 23:21:50 +00:00
|
|
|
Summary: Select from a Set of Strings
|
|
|
|
|
|
|
|
License: GPLv3
|
|
|
|
URL: https://CRAN.R-project.org/package=%{packname}
|
2020-02-25 12:06:31 +00:00
|
|
|
Source0: https://cran.r-project.org/src/contrib/%{packname}_%{packver}.tar.gz
|
2019-02-19 23:21:50 +00:00
|
|
|
|
|
|
|
# Here's the R view of the dependencies world:
|
|
|
|
# Depends:
|
2020-02-25 12:06:31 +00:00
|
|
|
# Imports: R-ellipsis, R-glue >= 1.3.0, R-purrr >= 0.3.2, R-rlang >= 0.4.3, R-vctrs >= 0.2.2
|
|
|
|
# Suggests: R-covr, R-crayon, R-dplyr, R-knitr, R-magrittr, R-rmarkdown, R-testthat >= 2.3.0, R-tibble >= 2.1.3, R-withr
|
2019-02-19 23:21:50 +00:00
|
|
|
# LinkingTo:
|
|
|
|
# Enhances:
|
|
|
|
|
2020-02-25 12:06:31 +00:00
|
|
|
BuildArch: noarch
|
2019-02-19 23:21:50 +00:00
|
|
|
BuildRequires: R-devel
|
|
|
|
BuildRequires: tex(latex)
|
2020-02-25 12:06:31 +00:00
|
|
|
BuildRequires: R-ellipsis
|
2019-02-19 23:21:50 +00:00
|
|
|
BuildRequires: R-glue >= 1.3.0
|
2020-02-25 12:06:31 +00:00
|
|
|
BuildRequires: R-purrr >= 0.3.2
|
|
|
|
BuildRequires: R-rlang >= 0.4.3
|
|
|
|
BuildRequires: R-vctrs >= 0.2.2
|
|
|
|
BuildRequires: R-crayon
|
2019-02-19 23:21:50 +00:00
|
|
|
%if %{with_loop}
|
|
|
|
BuildRequires: R-dplyr
|
|
|
|
%endif
|
2020-02-25 12:06:31 +00:00
|
|
|
BuildRequires: R-knitr
|
|
|
|
BuildRequires: R-magrittr
|
|
|
|
BuildRequires: R-rmarkdown
|
|
|
|
BuildRequires: R-testthat >= 2.3.0
|
|
|
|
BuildRequires: R-tibble >= 2.1.3
|
|
|
|
BuildRequires: R-withr
|
2019-02-19 23:21:50 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
A backend for the selecting functions of the 'tidyverse'. It makes it easy
|
|
|
|
to implement select-like functions in your own packages in a way that is
|
|
|
|
consistent with other 'tidyverse' interfaces for selection.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -c -n %{packname}
|
|
|
|
|
|
|
|
# Don't need coverage; it's not packaged either.
|
|
|
|
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_loop}
|
|
|
|
%{_bindir}/R CMD check %{packname}
|
|
|
|
%else
|
|
|
|
_R_CHECK_FORCE_SUGGESTS_=0 %{_bindir}/R CMD check %{packname}
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%dir %{rlibdir}/%{packname}
|
2020-02-25 12:06:31 +00:00
|
|
|
%doc %{rlibdir}/%{packname}/doc
|
2019-02-19 23:21:50 +00:00
|
|
|
%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
|
2020-02-25 22:09:20 +00:00
|
|
|
* Tue Feb 25 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1.0.0-2
|
|
|
|
- Fix install location
|
|
|
|
|
2020-02-25 12:06:31 +00:00
|
|
|
* Mon Feb 24 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1.0.0-1
|
|
|
|
- Update to latest version
|
|
|
|
|
2020-01-28 10:45:28 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.5-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-08-12 05:01:14 +00:00
|
|
|
* Sun Aug 11 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.2.5-3
|
|
|
|
- Remove explicit dependencies provided by automatic dependency generator
|
|
|
|
|
2019-07-24 17:05:17 +00:00
|
|
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-02-19 23:21:50 +00:00
|
|
|
* Sun Feb 17 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.2.5-1
|
|
|
|
- initial package for Fedora
|