Initial import (#1677481).
This commit is contained in:
parent
7e6c026ad3
commit
2f438b3acb
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
/askpass_1.1.tar.gz
|
76
R-askpass.spec
Normal file
76
R-askpass.spec
Normal file
@ -0,0 +1,76 @@
|
||||
%global packname askpass
|
||||
%global rlibdir %{_libdir}/R/library
|
||||
|
||||
Name: R-%{packname}
|
||||
Version: 1.1
|
||||
Release: 1%{?dist}
|
||||
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
|
||||
|
||||
# Here's the R view of the dependencies world:
|
||||
# Depends:
|
||||
# Imports: R-sys >= 2.1
|
||||
# Suggests: R-testthat
|
||||
# LinkingTo:
|
||||
# Enhances:
|
||||
|
||||
Requires: R-sys >= 2.1
|
||||
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
|
||||
|
||||
# For macOS only.
|
||||
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
|
||||
* Sun Feb 10 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1.1-1
|
||||
- initial package for Fedora
|
Loading…
Reference in New Issue
Block a user