Received: by mail.netbsd.org (Postfix, from userid 605) id 1957B84DF3; Fri, 9 Aug 2019 18:37:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 93CB084DDA for ; Fri, 9 Aug 2019 18:37:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id ts1MBeLchXvy for ; Fri, 9 Aug 2019 18:37:23 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0B36184C81 for ; Fri, 9 Aug 2019 18:37:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 08F1FFBF4; Fri, 9 Aug 2019 18:37:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_156537584357760" MIME-Version: 1.0 Date: Fri, 9 Aug 2019 18:37:23 +0000 From: "Brook Milligan" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: brook@netbsd.org X-Mailer: log_accum Message-Id: <20190809183723.08F1FFBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_156537584357760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: brook Date: Fri Aug 9 18:37:22 UTC 2019 Modified Files: pkgsrc/devel: Makefile pkgsrc/doc: CHANGES-2019 Added Files: pkgsrc/devel/R-git2r: DESCR Makefile distinfo Log Message: R-git2r: initial commit Interface to the 'libgit2' library, which is a pure C implementation of the 'Git' core methods. Provides access to 'Git' repositories to extract data and running some basic 'Git' commands. To generate a diff of this commit: cvs rdiff -u -r1.2886 -r1.2887 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/R-git2r/DESCR \ pkgsrc/devel/R-git2r/Makefile pkgsrc/devel/R-git2r/distinfo cvs rdiff -u -r1.3353 -r1.3354 pkgsrc/doc/CHANGES-2019 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_156537584357760 Content-Disposition: inline Content-Length: 2823 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.2886 pkgsrc/devel/Makefile:1.2887 --- pkgsrc/devel/Makefile:1.2886 Fri Aug 9 18:35:36 2019 +++ pkgsrc/devel/Makefile Fri Aug 9 18:37:22 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2886 2019/08/09 18:35:36 brook Exp $ +# $NetBSD: Makefile,v 1.2887 2019/08/09 18:37:22 brook Exp $ # COMMENT= Development utilities @@ -28,6 +28,7 @@ SUBDIR+= R-crayon SUBDIR+= R-evaluate SUBDIR+= R-fansi SUBDIR+= R-fs +SUBDIR+= R-git2r SUBDIR+= R-glue SUBDIR+= R-ini SUBDIR+= R-inline Index: pkgsrc/doc/CHANGES-2019 diff -u pkgsrc/doc/CHANGES-2019:1.3353 pkgsrc/doc/CHANGES-2019:1.3354 --- pkgsrc/doc/CHANGES-2019:1.3353 Fri Aug 9 18:36:28 2019 +++ pkgsrc/doc/CHANGES-2019 Fri Aug 9 18:37:22 2019 @@ -1,4 +1,4 @@ -$NetBSD: CHANGES-2019,v 1.3353 2019/08/09 18:36:28 brook Exp $ +$NetBSD: CHANGES-2019,v 1.3354 2019/08/09 18:37:22 brook Exp $ Changes to the packages collection and infrastructure in 2019: @@ -5476,3 +5476,4 @@ Changes to the packages collection and i Added devel/R-sessioninfo version 1.1.1 [brook 2019-08-09] Added devel/R-rprojroot version 1.3.2 [brook 2019-08-09] Added sysutils/R-sys version 3.2 [brook 2019-08-09] + Added devel/R-git2r version 0.26.1 [brook 2019-08-09] Added files: Index: pkgsrc/devel/R-git2r/DESCR diff -u /dev/null pkgsrc/devel/R-git2r/DESCR:1.1 --- /dev/null Fri Aug 9 18:37:22 2019 +++ pkgsrc/devel/R-git2r/DESCR Fri Aug 9 18:37:22 2019 @@ -0,0 +1,3 @@ +Interface to the 'libgit2' library, which is a pure C implementation +of the 'Git' core methods. Provides access to 'Git' repositories to +extract data and running some basic 'Git' commands. Index: pkgsrc/devel/R-git2r/Makefile diff -u /dev/null pkgsrc/devel/R-git2r/Makefile:1.1 --- /dev/null Fri Aug 9 18:37:22 2019 +++ pkgsrc/devel/R-git2r/Makefile Fri Aug 9 18:37:22 2019 @@ -0,0 +1,14 @@ +# $NetBSD: Makefile,v 1.1 2019/08/09 18:37:22 brook Exp $ + +R_PKGNAME= git2r +R_PKGVER= 0.26.1 +CATEGORIES= devel + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= Provides access to Git repositories +LICENSE= gnu-gpl-v2 + +USE_LANGUAGES= c + +.include "../../math/R/Makefile.extension" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/R-git2r/distinfo diff -u /dev/null pkgsrc/devel/R-git2r/distinfo:1.1 --- /dev/null Fri Aug 9 18:37:22 2019 +++ pkgsrc/devel/R-git2r/distinfo Fri Aug 9 18:37:22 2019 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2019/08/09 18:37:22 brook Exp $ + +SHA1 (R/git2r_0.26.1.tar.gz) = 32a45bf6676e0dc9d4e819f6c8780e332382cf40 +RMD160 (R/git2r_0.26.1.tar.gz) = 4c671fabfc9f8df8b5dcfdc20d3053418709be13 +SHA512 (R/git2r_0.26.1.tar.gz) = 478092db866a3ecc9b333bc9dade5522f484b18cc8ae6f214089b27d090966ba7b759790a0705e5c4cc414a20205ea290bfabf4d9441d82f77e9f8ba4d93bbcd +Size (R/git2r_0.26.1.tar.gz) = 1214783 bytes --_----------=_156537584357760--