Received: by mail.netbsd.org (Postfix, from userid 605) id 98A2A84DEF; Fri, 9 Aug 2019 18:33:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1F96184DDA for ; Fri, 9 Aug 2019 18:33:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 9xxadmOw4AcA for ; Fri, 9 Aug 2019 18:33:40 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 881BA84D27 for ; Fri, 9 Aug 2019 18:33:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 855AAFBF4; Fri, 9 Aug 2019 18:33:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1565375620109280" MIME-Version: 1.0 Date: Fri, 9 Aug 2019 18:33:40 +0000 From: "Brook Milligan" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: brook@netbsd.org X-Mailer: log_accum Message-Id: <20190809183340.855AAFBF4@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. --_----------=_1565375620109280 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:33:40 UTC 2019 Modified Files: pkgsrc/devel: Makefile pkgsrc/doc: CHANGES-2019 Added Files: pkgsrc/devel/R-remotes: DESCR Makefile distinfo Log Message: R-remotes: initial commit Download and install R packages stored in 'GitHub', 'BitBucket', or plain 'subversion' or 'git' repositories. This package provides the 'install_*' functions in 'devtools'. Indeed most of the code was copied over from 'devtools'. To generate a diff of this commit: cvs rdiff -u -r1.2883 -r1.2884 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/R-remotes/DESCR \ pkgsrc/devel/R-remotes/Makefile pkgsrc/devel/R-remotes/distinfo cvs rdiff -u -r1.3349 -r1.3350 pkgsrc/doc/CHANGES-2019 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1565375620109280 Content-Disposition: inline Content-Length: 2942 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.2883 pkgsrc/devel/Makefile:1.2884 --- pkgsrc/devel/Makefile:1.2883 Fri Aug 9 18:28:06 2019 +++ pkgsrc/devel/Makefile Fri Aug 9 18:33:40 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2883 2019/08/09 18:28:06 brook Exp $ +# $NetBSD: Makefile,v 1.2884 2019/08/09 18:33:40 brook Exp $ # COMMENT= Development utilities @@ -40,6 +40,7 @@ SUBDIR+= R-plogr SUBDIR+= R-proto SUBDIR+= R-purrr SUBDIR+= R-rematch +SUBDIR+= R-remotes SUBDIR+= R-repr SUBDIR+= R-rio SUBDIR+= R-rlang Index: pkgsrc/doc/CHANGES-2019 diff -u pkgsrc/doc/CHANGES-2019:1.3349 pkgsrc/doc/CHANGES-2019:1.3350 --- pkgsrc/doc/CHANGES-2019:1.3349 Fri Aug 9 18:32:49 2019 +++ pkgsrc/doc/CHANGES-2019 Fri Aug 9 18:33:40 2019 @@ -1,4 +1,4 @@ -$NetBSD: CHANGES-2019,v 1.3349 2019/08/09 18:32:49 brook Exp $ +$NetBSD: CHANGES-2019,v 1.3350 2019/08/09 18:33:40 brook Exp $ Changes to the packages collection and infrastructure in 2019: @@ -5472,3 +5472,4 @@ Changes to the packages collection and i Added textproc/R-xml2 version 1.2.2 [brook 2019-08-09] Added textproc/R-commonmark version 1.7 [brook 2019-08-09] Added textproc/R-brew version 1.0.6 [brook 2019-08-09] + Added devel/R-remotes version 2.1.0 [brook 2019-08-09] Added files: Index: pkgsrc/devel/R-remotes/DESCR diff -u /dev/null pkgsrc/devel/R-remotes/DESCR:1.1 --- /dev/null Fri Aug 9 18:33:40 2019 +++ pkgsrc/devel/R-remotes/DESCR Fri Aug 9 18:33:40 2019 @@ -0,0 +1,4 @@ +Download and install R packages stored in 'GitHub', 'BitBucket', or +plain 'subversion' or 'git' repositories. This package provides the +'install_*' functions in 'devtools'. Indeed most of the code was +copied over from 'devtools'. Index: pkgsrc/devel/R-remotes/Makefile diff -u /dev/null pkgsrc/devel/R-remotes/Makefile:1.1 --- /dev/null Fri Aug 9 18:33:40 2019 +++ pkgsrc/devel/R-remotes/Makefile Fri Aug 9 18:33:40 2019 @@ -0,0 +1,14 @@ +# $NetBSD: Makefile,v 1.1 2019/08/09 18:33:40 brook Exp $ + +R_PKGNAME= remotes +R_PKGVER= 2.1.0 +CATEGORIES= devel + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= R package installation from remote repositories, including 'GitHub' +LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 + +USE_LANGUAGES= # none + +.include "../../math/R/Makefile.extension" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/R-remotes/distinfo diff -u /dev/null pkgsrc/devel/R-remotes/distinfo:1.1 --- /dev/null Fri Aug 9 18:33:40 2019 +++ pkgsrc/devel/R-remotes/distinfo Fri Aug 9 18:33:40 2019 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2019/08/09 18:33:40 brook Exp $ + +SHA1 (R/remotes_2.1.0.tar.gz) = e49b6befd0b6e803d078af6b67480f975e12c941 +RMD160 (R/remotes_2.1.0.tar.gz) = 931eb670c6e4d956a191db29ad13911d1778c711 +SHA512 (R/remotes_2.1.0.tar.gz) = 835c76dc9f3bc355ef23a5cd4ad3fdaa67d743b9f26367f0eed0652de7ccd717969adb7ecbe437b4ec10b6b08637974f6b578d81f5e69f6f0fa1b9a6e21c71aa +Size (R/remotes_2.1.0.tar.gz) = 131622 bytes --_----------=_1565375620109280--