Date: Wed, 25 Sep 2019 06:36:57 +0000 (UTC) From: TAKATSU Tomonari <tota@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512770 - in head/security: . R-cran-askpass Message-ID: <201909250636.x8P6avlW075300@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tota Date: Wed Sep 25 06:36:57 2019 New Revision: 512770 URL: https://svnweb.freebsd.org/changeset/ports/512770 Log: - 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/ Added: head/security/R-cran-askpass/ head/security/R-cran-askpass/Makefile (contents, props changed) head/security/R-cran-askpass/distinfo (contents, props changed) head/security/R-cran-askpass/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Wed Sep 25 05:21:52 2019 (r512769) +++ head/security/Makefile Wed Sep 25 06:36:57 2019 (r512770) @@ -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 Added: head/security/R-cran-askpass/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/R-cran-askpass/Makefile Wed Sep 25 06:36:57 2019 (r512770) @@ -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> Added: head/security/R-cran-askpass/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/R-cran-askpass/distinfo Wed Sep 25 06:36:57 2019 (r512770) @@ -0,0 +1,3 @@ +TIMESTAMP = 1562512639 +SHA256 (askpass_1.1.tar.gz) = db40827d1bdbb90c0aa2846a2961d3bf9d76ad1b392302f9dd84cc2fd18c001f +SIZE (askpass_1.1.tar.gz) = 5730 Added: head/security/R-cran-askpass/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/R-cran-askpass/pkg-descr Wed Sep 25 06:36:57 2019 (r512770) @@ -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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909250636.x8P6avlW075300>