Received: by mail.netbsd.org (Postfix, from userid 605) id 528CD84DCE; Fri, 9 Aug 2019 16:23:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CDAE884CD3 for ; Fri, 9 Aug 2019 16:23:47 +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 816sVTCjUHmu for ; Fri, 9 Aug 2019 16:23:47 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 402ED84C81 for ; Fri, 9 Aug 2019 16:23:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3CF7EFBF4; Fri, 9 Aug 2019 16:23:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1565367827192500" MIME-Version: 1.0 Date: Fri, 9 Aug 2019 16:23:47 +0000 From: "Brook Milligan" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: brook@netbsd.org X-Mailer: log_accum Message-Id: <20190809162347.3CF7EFBF4@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. --_----------=_1565367827192500 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: brook Date: Fri Aug 9 16:23:47 UTC 2019 Modified Files: pkgsrc/doc: CHANGES-2019 pkgsrc/math: Makefile Added Files: pkgsrc/math/R-dplyr: DESCR Makefile distinfo Log Message: R-dplyr: initial commit A fast, consistent tool for working with data frame like objects, both in memory and out of memory. To generate a diff of this commit: cvs rdiff -u -r1.3335 -r1.3336 pkgsrc/doc/CHANGES-2019 cvs rdiff -u -r1.431 -r1.432 pkgsrc/math/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/math/R-dplyr/DESCR pkgsrc/math/R-dplyr/Makefile \ pkgsrc/math/R-dplyr/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1565367827192500 Content-Disposition: inline Content-Length: 3201 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/doc/CHANGES-2019 diff -u pkgsrc/doc/CHANGES-2019:1.3335 pkgsrc/doc/CHANGES-2019:1.3336 --- pkgsrc/doc/CHANGES-2019:1.3335 Fri Aug 9 16:22:30 2019 +++ pkgsrc/doc/CHANGES-2019 Fri Aug 9 16:23:46 2019 @@ -1,4 +1,4 @@ -$NetBSD: CHANGES-2019,v 1.3335 2019/08/09 16:22:30 brook Exp $ +$NetBSD: CHANGES-2019,v 1.3336 2019/08/09 16:23:46 brook Exp $ Changes to the packages collection and infrastructure in 2019: @@ -5458,3 +5458,4 @@ Changes to the packages collection and i Added graphics/mygui version 3.2.3.20190707 [nia 2019-08-09] Added devel/R-purrr version 0.3.2 [brook 2019-08-09] Added devel/R-tidyselect version 0.2.5 [brook 2019-08-09] + Added math/R-dplyr version 0.8.3 [brook 2019-08-09] Index: pkgsrc/math/Makefile diff -u pkgsrc/math/Makefile:1.431 pkgsrc/math/Makefile:1.432 --- pkgsrc/math/Makefile:1.431 Fri Aug 9 15:50:05 2019 +++ pkgsrc/math/Makefile Fri Aug 9 16:23:46 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.431 2019/08/09 15:50:05 brook Exp $ +# $NetBSD: Makefile,v 1.432 2019/08/09 16:23:46 brook Exp $ COMMENT= Mathematics @@ -45,6 +45,7 @@ SUBDIR+= R-coda SUBDIR+= R-combinat SUBDIR+= R-compositions SUBDIR+= R-date +SUBDIR+= R-dplyr SUBDIR+= R-e1071 SUBDIR+= R-ellipsis SUBDIR+= R-emdbook Added files: Index: pkgsrc/math/R-dplyr/DESCR diff -u /dev/null pkgsrc/math/R-dplyr/DESCR:1.1 --- /dev/null Fri Aug 9 16:23:47 2019 +++ pkgsrc/math/R-dplyr/DESCR Fri Aug 9 16:23:47 2019 @@ -0,0 +1,2 @@ +A fast, consistent tool for working with data frame like objects, both +in memory and out of memory. Index: pkgsrc/math/R-dplyr/Makefile diff -u /dev/null pkgsrc/math/R-dplyr/Makefile:1.1 --- /dev/null Fri Aug 9 16:23:47 2019 +++ pkgsrc/math/R-dplyr/Makefile Fri Aug 9 16:23:47 2019 @@ -0,0 +1,25 @@ +# $NetBSD: Makefile,v 1.1 2019/08/09 16:23:47 brook Exp $ + +R_PKGNAME= dplyr +R_PKGVER= 0.8.3 +CATEGORIES= math + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= Grammar of data manipulation +LICENSE= mit + +DEPENDS+= R-assertthat>=0.2.0:../../devel/R-assertthat +DEPENDS+= R-glue>=1.3.0:../../devel/R-glue +DEPENDS+= R-magrittr>=1.5:../../devel/R-magrittr +DEPENDS+= R-pkgconfig>=2.0.2:../../devel/R-pkgconfig +DEPENDS+= R-rlang>=0.4.0:../../devel/R-rlang +DEPENDS+= R-tidyselect>=0.2.5:../../devel/R-tidyselect +DEPENDS+= R-tibble>=2.0.0:../../math/R-tibble + +USE_LANGUAGES= c c++ + +.include "../../math/R/Makefile.extension" +.include "../../devel/R-Rcpp/buildlink3.mk" +.include "../../devel/R-plogr/buildlink3.mk" +.include "../../devel/boost-headers/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/math/R-dplyr/distinfo diff -u /dev/null pkgsrc/math/R-dplyr/distinfo:1.1 --- /dev/null Fri Aug 9 16:23:47 2019 +++ pkgsrc/math/R-dplyr/distinfo Fri Aug 9 16:23:47 2019 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2019/08/09 16:23:47 brook Exp $ + +SHA1 (R/dplyr_0.8.3.tar.gz) = 23c1d3fabfd8203c6fef66e4572df7fddfb65cae +RMD160 (R/dplyr_0.8.3.tar.gz) = 3d19458f074656291cb51c061f0905e1895d904e +SHA512 (R/dplyr_0.8.3.tar.gz) = 268d1b1c68fc836521f7311928642b9c2a64fb28eef9014797a628894a3999bf932bc1d516826606f3c0b6b5a55f22e5185541d88c76c7b707be17369b1ad0d2 +Size (R/dplyr_0.8.3.tar.gz) = 1173098 bytes --_----------=_1565367827192500--