R-processx/R-processx.spec

98 lines
2.7 KiB
RPMSpec
Raw Normal View History

2022-09-04 11:32:14 +00:00
%bcond_with bootstrap
2020-02-12 08:14:52 +00:00
%global packname processx
2023-11-01 13:14:28 +00:00
%global packver 3.8.2
2018-03-23 23:13:49 +00:00
%global rlibdir %{_libdir}/R/library
Name: R-%{packname}
Version: %{packver}
Release: %autorelease
2018-03-23 23:13:49 +00:00
Summary: Execute and Control System Processes
License: MIT
2019-01-23 00:55:25 +00:00
URL: https://CRAN.R-project.org/package=%{packname}
2020-02-12 08:14:52 +00:00
Source0: https://cran.r-project.org/src/contrib/%{packname}_%{packver}.tar.gz
2018-03-23 23:13:49 +00:00
# Here's the R view of the dependencies world:
# Depends:
2019-03-23 02:56:35 +00:00
# Imports: R-ps >= 1.2.0, R-R6, R-utils
2023-04-19 18:23:36 +00:00
# Suggests: R-callr >= 3.7.3, R-cli >= 3.3.0, R-codetools, R-covr, R-curl, R-debugme, R-parallel, R-rlang >= 1.0.2, R-testthat >= 3.0.0, R-webfakes, R-withr
2018-08-20 21:29:11 +00:00
# LinkingTo:
2018-03-23 23:13:49 +00:00
# Enhances:
2018-05-08 00:29:13 +00:00
BuildRequires: R-devel
BuildRequires: tex(latex)
2019-03-23 02:56:35 +00:00
BuildRequires: R-ps >= 1.2.0
2018-05-08 00:29:13 +00:00
BuildRequires: R-R6
BuildRequires: R-utils
2020-12-04 10:18:51 +00:00
%if %{without bootstrap}
2023-04-19 18:23:36 +00:00
BuildRequires: R-callr >= 3.7.3
BuildRequires: R-cli >= 3.3.0
2019-07-16 09:43:24 +00:00
BuildRequires: R-codetools
2019-05-09 02:03:01 +00:00
BuildRequires: R-curl
2018-08-20 21:29:11 +00:00
BuildRequires: R-debugme
BuildRequires: R-parallel
BuildRequires: R-rlang >= 1.0.2
BuildRequires: R-testthat >= 3.0.0
2023-04-19 18:23:36 +00:00
BuildRequires: R-webfakes
2018-05-08 00:29:13 +00:00
BuildRequires: R-withr
%endif
2018-03-23 23:13:49 +00:00
%description
2018-05-08 00:29:13 +00:00
Tools to run system processes in the background. It can check if a
background process is running; wait on a background process to finish; get
2018-08-20 21:29:11 +00:00
the exit status of finished processes; kill background processes. It can
read the standard output and error of the processes, using non-blocking
connections. 'processx' can poll a process for standard output or error,
with a timeout. It can also poll several processes at once.
2018-03-23 23:13:49 +00:00
%prep
%setup -q -c -n %{packname}
# Don't need coverage; it's not packaged either.
2020-07-25 00:34:06 +00:00
sed -i 's/covr, //g' %{packname}/DESCRIPTION
2018-03-23 23:13:49 +00:00
%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
2019-02-21 07:05:41 +00:00
# FIXME: Why does this not install?
install -pm 0644 %{packname}/README.md %{buildroot}%{rlibdir}/%{packname}/
2018-03-23 23:13:49 +00:00
%check
2020-12-04 10:18:51 +00:00
%if %{without bootstrap}
%{_bindir}/R CMD check %{packname}
%endif
2018-03-23 23:13:49 +00:00
%files
%dir %{rlibdir}/%{packname}
%doc %{rlibdir}/%{packname}/html
%{rlibdir}/%{packname}/DESCRIPTION
%doc %{rlibdir}/%{packname}/NEWS.md
2019-02-21 07:05:41 +00:00
%doc %{rlibdir}/%{packname}/README.md
2018-05-17 14:52:57 +00:00
%doc %{rlibdir}/%{packname}/CODE_OF_CONDUCT.md
2018-03-23 23:13:49 +00:00
%license %{rlibdir}/%{packname}/LICENSE
%{rlibdir}/%{packname}/INDEX
%{rlibdir}/%{packname}/NAMESPACE
%{rlibdir}/%{packname}/Meta
%{rlibdir}/%{packname}/R
%{rlibdir}/%{packname}/help
%{rlibdir}/%{packname}/include
2018-05-08 00:29:13 +00:00
%{rlibdir}/%{packname}/bin
2018-03-23 23:13:49 +00:00
%dir %{rlibdir}/%{packname}/libs
%{rlibdir}/%{packname}/libs/%{packname}.so
2019-07-16 09:43:24 +00:00
%{rlibdir}/%{packname}/libs/client.so
2018-03-23 23:13:49 +00:00
%changelog
%autochangelog