69 lines
2.0 KiB
RPMSpec
69 lines
2.0 KiB
RPMSpec
%global packname askpass
|
|
%global rlibdir %{_libdir}/R/library
|
|
|
|
Name: R-%{packname}
|
|
Version: 1.1
|
|
Release: 1
|
|
Summary: Safe Password Entry for R, Git, and SSH
|
|
|
|
License: MIT
|
|
URL: https://CRAN.R-project.org/package=%{packname}
|
|
Source0: https://cran.r-project.org/src/contrib/%{packname}_%{version}.tar.gz
|
|
|
|
BuildRequires: R-devel
|
|
BuildRequires: tex(latex)
|
|
BuildRequires: R-sys >= 2.1
|
|
BuildRequires: R-testthat
|
|
|
|
%description
|
|
Cross-platform utilities for prompting the user for credentials or a
|
|
passphrase, for example to authenticate with a server or read a protected key.
|
|
Includes native programs for MacOS and Windows, hence no 'tcltk' is required.
|
|
Password entry can be invoked in two different ways: directly from R via the
|
|
askpass() function, or indirectly as password-entry back-end for 'ssh-agent' or
|
|
'git-credential' via the SSH_ASKPASS and GIT_ASKPASS environment variables.
|
|
Thereby the user can be prompted for credentials or a passphrase if needed when
|
|
R calls out to git or ssh.
|
|
|
|
|
|
%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
|
|
|
|
# This is for macOS only so remove it
|
|
rm %{buildroot}%{rlibdir}/%{packname}/mac-{askpass,simplepass}
|
|
|
|
|
|
%check
|
|
%{_bindir}/R CMD check %{packname}
|
|
|
|
|
|
%files
|
|
%dir %{rlibdir}/%{packname}
|
|
%doc %{rlibdir}/%{packname}/html
|
|
%{rlibdir}/%{packname}/DESCRIPTION
|
|
%doc %{rlibdir}/%{packname}/NEWS
|
|
%license %{rlibdir}/%{packname}/LICENSE
|
|
%{rlibdir}/%{packname}/INDEX
|
|
%{rlibdir}/%{packname}/NAMESPACE
|
|
%{rlibdir}/%{packname}/Meta
|
|
%{rlibdir}/%{packname}/R
|
|
%{rlibdir}/%{packname}/help
|
|
%{rlibdir}/%{packname}/WORDLIST
|
|
%dir %{rlibdir}/%{packname}/libs
|
|
%{rlibdir}/%{packname}/libs/%{packname}.so
|
|
|
|
|
|
%changelog
|
|
* Wed Jun 15 2022 misaka00251 <misaka00251@misakanet.cn> - 1.1-1
|
|
- Init package (Thanks to fedora team)
|