Received: by mail.netbsd.org (Postfix, from userid 605) id 13DEA84DCF; Fri, 9 Aug 2019 16:25:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8DF0884CD3 for ; Fri, 9 Aug 2019 16:25:24 +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 tGImR0oJK-rO for ; Fri, 9 Aug 2019 16:25:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id F307C84C81 for ; Fri, 9 Aug 2019 16:25:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EAA8DFBF4; Fri, 9 Aug 2019 16:25:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1565367923267790" MIME-Version: 1.0 Date: Fri, 9 Aug 2019 16:25: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: <20190809162523.EAA8DFBF4@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. --_----------=_1565367923267790 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:25:23 UTC 2019 Modified Files: pkgsrc/doc: CHANGES-2019 pkgsrc/math: Makefile Added Files: pkgsrc/math/R-tidyr: DESCR Makefile distinfo Log Message: R-tidyr: initial commit An evolution of 'reshape2'. It's designed specifically for data tidying (not general reshaping or aggregating) and works well with 'dplyr' data pipelines. To generate a diff of this commit: cvs rdiff -u -r1.3336 -r1.3337 pkgsrc/doc/CHANGES-2019 cvs rdiff -u -r1.432 -r1.433 pkgsrc/math/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/math/R-tidyr/DESCR pkgsrc/math/R-tidyr/Makefile \ pkgsrc/math/R-tidyr/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1565367923267790 Content-Disposition: inline Content-Length: 3204 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.3336 pkgsrc/doc/CHANGES-2019:1.3337 --- pkgsrc/doc/CHANGES-2019:1.3336 Fri Aug 9 16:23:46 2019 +++ pkgsrc/doc/CHANGES-2019 Fri Aug 9 16:25:23 2019 @@ -1,4 +1,4 @@ -$NetBSD: CHANGES-2019,v 1.3336 2019/08/09 16:23:46 brook Exp $ +$NetBSD: CHANGES-2019,v 1.3337 2019/08/09 16:25:23 brook Exp $ Changes to the packages collection and infrastructure in 2019: @@ -5459,3 +5459,4 @@ Changes to the packages collection and i 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] + Added math/R-tidyr version 0.8.3 [brook 2019-08-09] Index: pkgsrc/math/Makefile diff -u pkgsrc/math/Makefile:1.432 pkgsrc/math/Makefile:1.433 --- pkgsrc/math/Makefile:1.432 Fri Aug 9 16:23:46 2019 +++ pkgsrc/math/Makefile Fri Aug 9 16:25:23 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.432 2019/08/09 16:23:46 brook Exp $ +# $NetBSD: Makefile,v 1.433 2019/08/09 16:25:23 brook Exp $ COMMENT= Mathematics @@ -103,6 +103,7 @@ SUBDIR+= R-statmod SUBDIR+= R-survey SUBDIR+= R-tensorA SUBDIR+= R-tibble +SUBDIR+= R-tidyr SUBDIR+= R-urca SUBDIR+= R-vctrs SUBDIR+= R-wle Added files: Index: pkgsrc/math/R-tidyr/DESCR diff -u /dev/null pkgsrc/math/R-tidyr/DESCR:1.1 --- /dev/null Fri Aug 9 16:25:23 2019 +++ pkgsrc/math/R-tidyr/DESCR Fri Aug 9 16:25:23 2019 @@ -0,0 +1,3 @@ +An evolution of 'reshape2'. It's designed specifically for data +tidying (not general reshaping or aggregating) and works well with +'dplyr' data pipelines. Index: pkgsrc/math/R-tidyr/Makefile diff -u /dev/null pkgsrc/math/R-tidyr/Makefile:1.1 --- /dev/null Fri Aug 9 16:25:23 2019 +++ pkgsrc/math/R-tidyr/Makefile Fri Aug 9 16:25:23 2019 @@ -0,0 +1,24 @@ +# $NetBSD: Makefile,v 1.1 2019/08/09 16:25:23 brook Exp $ + +R_PKGNAME= tidyr +R_PKGVER= 0.8.3 +CATEGORIES= math + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= Easily tidy data with 'spread()' and 'gather()' functions +LICENSE= mit + +DEPENDS+= R-glue>=1.3.1:../../devel/R-glue +DEPENDS+= R-magrittr>=1.5:../../devel/R-magrittr +DEPENDS+= R-purrr>=0.3.2:../../devel/R-purrr +DEPENDS+= R-rlang>=0.4.0:../../devel/R-rlang +DEPENDS+= R-tidyselect>=0.2.5:../../devel/R-tidyselect +DEPENDS+= R-dplyr>=0.7.0:../../math/R-dplyr +DEPENDS+= R-tibble>=2.1.3:../../math/R-tibble +DEPENDS+= R-stringi>=1.4.3:../../textproc/R-stringi + +USE_LANGUAGES= c c++ + +.include "../../math/R/Makefile.extension" +.include "../../devel/R-Rcpp/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/math/R-tidyr/distinfo diff -u /dev/null pkgsrc/math/R-tidyr/distinfo:1.1 --- /dev/null Fri Aug 9 16:25:23 2019 +++ pkgsrc/math/R-tidyr/distinfo Fri Aug 9 16:25:23 2019 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2019/08/09 16:25:23 brook Exp $ + +SHA1 (R/tidyr_0.8.3.tar.gz) = d834818f6dd64e846f28bf921f497c1f9990aa2f +RMD160 (R/tidyr_0.8.3.tar.gz) = f2d136b8094cfc59059ebdb05aa2c6fba468493e +SHA512 (R/tidyr_0.8.3.tar.gz) = 56cf9e88f887c18cdc665a377bf4d60e9de1032bf0c20b7ad1aa19d0f461cad4658e8d7f412927a62f4f80a7af6ec338bfc398ebc7c4cba5809293b9d4d93ab9 +Size (R/tidyr_0.8.3.tar.gz) = 383932 bytes --_----------=_1565367923267790--