1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

- Add new port: security/R-cran-askpass

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.

  WWW: https://cran.r-project.org/web/packages/askpass/
This commit is contained in:
TAKATSU Tomonari 2019-09-25 06:36:57 +00:00
parent 18e21fde87
commit 87e982aa0f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=512770
4 changed files with 34 additions and 0 deletions

View File

@ -9,6 +9,7 @@
SUBDIR += ADMsmb
SUBDIR += ADMsnmp
SUBDIR += R-cran-ROAuth
SUBDIR += R-cran-askpass
SUBDIR += R-cran-digest
SUBDIR += R-cran-openssl
SUBDIR += acme.sh

View File

@ -0,0 +1,19 @@
# $FreeBSD$
PORTNAME= askpass
PORTVERSION= 1.1
CATEGORIES= security
DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= tota@FreeBSD.org
COMMENT= Safe Password Entry for R, Git, and SSH
LICENSE= MIT
CRAN_DEPENDS= R-cran-sys>0:devel/R-cran-sys
BUILD_DEPENDS= ${CRAN_DEPENDS}
RUN_DEPENDS= ${CRAN_DEPENDS}
USES= cran:auto-plist,compiles
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1562512639
SHA256 (askpass_1.1.tar.gz) = db40827d1bdbb90c0aa2846a2961d3bf9d76ad1b392302f9dd84cc2fd18c001f
SIZE (askpass_1.1.tar.gz) = 5730

View File

@ -0,0 +1,11 @@
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.
WWW: https://cran.r-project.org/web/packages/askpass/