R-dplyr: initial commit
A fast, consistent tool for working with data frame like objects, both in memory and out of memory.
This commit is contained in:
parent
efb8b4ef57
commit
a4c1d0b77b
5 changed files with 37 additions and 2 deletions
|
@ -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 infrastructure in 2019:
|
|||
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]
|
||||
|
|
|
@ -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
|
||||
|
|
2
math/R-dplyr/DESCR
Normal file
2
math/R-dplyr/DESCR
Normal file
|
@ -0,0 +1,2 @@
|
|||
A fast, consistent tool for working with data frame like objects, both
|
||||
in memory and out of memory.
|
25
math/R-dplyr/Makefile
Normal file
25
math/R-dplyr/Makefile
Normal file
|
@ -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"
|
6
math/R-dplyr/distinfo
Normal file
6
math/R-dplyr/distinfo
Normal file
|
@ -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
|
Loading…
Reference in a new issue