View | Details | Raw Unified | Return to bug 256708 | Differences between
and this patch

Collapse All | Expand All

(-)b/security/Makefile (+1 lines)
Lines 7-12 Link Here
7
    SUBDIR += ADMsnmp
7
    SUBDIR += ADMsnmp
8
    SUBDIR += R-cran-ROAuth
8
    SUBDIR += R-cran-ROAuth
9
    SUBDIR += R-cran-askpass
9
    SUBDIR += R-cran-askpass
10
    SUBDIR += R-cran-credentials
10
    SUBDIR += R-cran-digest
11
    SUBDIR += R-cran-digest
11
    SUBDIR += R-cran-gitcreds
12
    SUBDIR += R-cran-gitcreds
12
    SUBDIR += R-cran-openssl
13
    SUBDIR += R-cran-openssl
(-)b/security/R-cran-credentials/Makefile (+21 lines)
Added Link Here
1
PORTNAME=	credentials
2
DISTVERSION=	1.3.0
3
CATEGORIES=	security
4
DISTNAME=	${PORTNAME}_${DISTVERSION}
5
6
MAINTAINER=	jpbeconne@free.fr
7
COMMENT=	Tools for Managing SSH and Git Credentials
8
9
LICENSE=	MIT
10
11
CRAN_DEPENDS=	R-cran-openssl>=1.3:security/R-cran-openssl \
12
		R-cran-sys>=2.1:devel/R-cran-sys \
13
		R-cran-curl>0:ftp/R-cran-curl \
14
		R-cran-jsonlite>0:converters/R-cran-jsonlite \
15
		R-cran-askpass>0:security/R-cran-askpass
16
BUILD_DEPENDS=	${CRAN_DEPENDS}
17
RUN_DEPENDS=	${CRAN_DEPENDS}
18
19
USES=		cran:auto-plist
20
21
.include <bsd.port.mk>
(-)b/security/R-cran-credentials/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1623957877
2
SHA256 (credentials_1.3.0.tar.gz) = c119ec26fd97b977c3b0cd1eb8fad3c59b84df6262c3adbf5ee9f3d6c9903ff1
3
SIZE (credentials_1.3.0.tar.gz) = 230082
(-)b/security/R-cran-credentials/pkg-descr (+10 lines)
Added Link Here
1
Setup and retrieve HTTPS and SSH credentials for use with 'git'
2
and other services. For HTTPS remotes the package interfaces
3
the 'git-credential' utility which 'git' uses to store HTTP
4
usernames and passwords. For SSH remotes we provide convenient
5
functions to find or generate appropriate SSH keys. The package
6
both helps the user to setup a local git installation, and also
7
provides a back-end for git/ssh client libraries to authenticate
8
with existing user credentials.
9
10
WWW:  https://docs.ropensci.org/credentials

Return to bug 256708