summaryrefslogtreecommitdiff
path: root/math/R-tibble/Makefile
diff options
context:
space:
mode:
authormef <mef@pkgsrc.org>2021-09-20 00:44:28 +0000
committermef <mef@pkgsrc.org>2021-09-20 00:44:28 +0000
commit5924bf16a48641dfc96e166809e339a00e6f6d9d (patch)
tree50ea7ec516ba7bdf99631e8c7144e3bb202a017c /math/R-tibble/Makefile
parentb622369b7e2b6e71c09f010752965f9ef4ac75ec (diff)
downloadpkgsrc-5924bf16a48641dfc96e166809e339a00e6f6d9d.tar.gz
(math/R-tibble) Updated 3.1.2 to 3.1.4
# tibble 3.1.4 ## Features - `as.data.frame.tbl_df()` strips inner column names (#837). - `new_tibble()` allows omitting the `nrow` argument again (#781). ## Documentation - Move `vignette("digits")`, `vignette("numbers")`, `?num` and `?char` from the pillar package here (#913). - Replace `iris` by `trees` (#943). - Various documentation improvements. - New `?tibble_options` help page (#912). ## Performance - `x[i, j] <- one_row_value` avoids explicit recycling of the right-hand side, the recycling happens implicitly in `vctrs::vec_assign()` for performance (#922). ## Internal - Vignettes are now tested with a snapshot test (#919). - `new_tibble()` uses `vctrs::new_data_frame()` internally (#726, @DavisVaughan). - Adapt to pillar 1.6.2. - Fix tests for compatibility with pillar 1.6.2. # tibble 3.1.3 ## Bug fixes - `tbl[row, col] <- rhs` treats an all-`NA` logical vector as a missing value both for existing data (#773) and for the right-hand side value (#868). This means that a column initialized with `NA` (of type `logical`) will change its type when a row is updated to a value of a different type. - `[[<-()` supports symbols (#893). ## Features - `as_tibble_row()` supports arbitrary vectors (#797). - `enframe()` and `deframe()` support arbitrary vectors (#730). - `tibble()` and `tibble_row()` ignore all columns that evaluate to `NULL`, not only those where a verbatim `NULL` is passed (#895, #900). - `new_tibble()` is now faster (#901, @mgirlich). ## Internal - Establish compatibility with rlang > 0.4.11 (#908). - Use `pillar::dim_desc()` (#859). - Establish compatibility with testthat > 3.0.3 (#896, @lionel-). - Bump required versions of ellipsis and vctrs to avoid warning during package load.
Diffstat (limited to 'math/R-tibble/Makefile')
-rw-r--r--math/R-tibble/Makefile28
1 files changed, 20 insertions, 8 deletions
diff --git a/math/R-tibble/Makefile b/math/R-tibble/Makefile
index 8469d1acdce..45bb609bffd 100644
--- a/math/R-tibble/Makefile
+++ b/math/R-tibble/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.8 2021/06/06 23:39:26 mef Exp $
+# $NetBSD: Makefile,v 1.9 2021/09/20 00:44:28 mef Exp $
R_PKGNAME= tibble
-R_PKGVER= 3.1.2
-#ATEGORIES= math
+R_PKGVER= 3.1.4
MAINTAINER= minskim@NetBSD.org
COMMENT= Simple data frames
@@ -17,12 +16,25 @@ DEPENDS+= R-pillar>=1.4.0:../../misc/R-pillar
DEPENDS+= R-lifecycle-[0-9]*:../../devel/R-lifecycle
DEPENDS+= R-magrittr-[0-9]*:../../devel/R-magrittr
-#Packages suggested but not available:
-# 'bench', 'bit64', 'blob', 'DiagrammeR', 'dplyr', 'formattable',
-# 'ggplot2', 'hms', 'lubridate', 'mockr', 'nycflights13', 'purrr',
-# 'testthat', 'tidyr'
-USE_LANGUAGES= c
+# VignetteBuilder package required for checking but not installed: 'knitr'
+# Packages suggested but not available:
+# 'bench', 'DiagrammeR', 'formattable', 'lubridate', 'mockr',
+# 'nycflights13'
+TEST_DEPENDS+= R-bit64-[0-9]*:../../devel/R-bit64
+TEST_DEPENDS+= R-blob-[0-9]*:../../devel/R-blob
+TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr
+TEST_DEPENDS+= R-dplyr-[0-9]*:../../math/R-dplyr
+TEST_DEPENDS+= R-ggplot2-[0-9]*:../../graphics/R-ggplot2
+TEST_DEPENDS+= R-hms-[0-9]*:../../time/R-hms
+TEST_DEPENDS+= R-htmltools-[0-9]*:../../textproc/R-htmltools
+TEST_DEPENDS+= R-knitr-[0-9]*:../../print/R-knitr
+TEST_DEPENDS+= R-purrr-[0-9]*:../../devel/R-purrr
+TEST_DEPENDS+= R-rmarkdown-[0-9]*:../../textproc/R-rmarkdown
+TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat
+TEST_DEPENDS+= R-tidyr-[0-9]*:../../math/R-tidyr
+
+.include "../../lang/R-cpp11/buildlink3.mk"
.include "../../math/R/Makefile.extension"
.include "../../mk/bsd.pkg.mk"