1c84566e86
Simple git client for R based on 'libgit2' with support for SSH and HTTPS remotes. All functions in 'gert' use basic R data types (such as vectors and data-frames) for their arguments and return values. User credentials are shared with command line 'git' through the git-credential store and ssh keys stored on disk or ssh-agent. On Linux, a somewhat recent version of 'libgit2' is required; we provide a 'PPA' for older Ubuntu 'LTS' versions.
21 lines
606 B
Makefile
21 lines
606 B
Makefile
# $NetBSD: Makefile,v 1.1 2021/01/01 06:22:06 mef Exp $
|
|
|
|
R_PKGNAME= gert
|
|
R_PKGVER= 1.0.2
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= Simple Git Client for R
|
|
LICENSE= mit # + file LICENSE
|
|
|
|
DEPENDS+= R-zip>=2.1.0:../../archivers/R-zip
|
|
DEPENDS+= R-rstudioapi>=0.11:../../math/R-rstudioapi
|
|
DEPENDS+= R-askpass>=1.1:../../security/R-askpass
|
|
DEPENDS+= R-openssl>=1.4.1:../../security/R-openssl
|
|
DEPENDS+= R-credentials-[0-9]*:../../security/R-credentials
|
|
|
|
USE_LANGUAGES= c
|
|
|
|
.include "../../math/R/Makefile.extension"
|
|
.include "../../devel/libgit2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|