From owner-svn-ports-all@freebsd.org Wed Sep 25 06:36:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 03D88FC59A; Wed, 25 Sep 2019 06:36:59 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46dSyf6KYHz4Sxb; Wed, 25 Sep 2019 06:36:58 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B94BABC67; Wed, 25 Sep 2019 06:36:58 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8P6awwo075304; Wed, 25 Sep 2019 06:36:58 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8P6avlW075300; Wed, 25 Sep 2019 06:36:57 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201909250636.x8P6avlW075300@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 25 Sep 2019 06:36:57 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/security: . R-cran-askpass X-SVN-Commit-Revision: 512770 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Sep 2019 06:36:59 -0000 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 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/