e33e48b69c
# 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.
40 lines
1.5 KiB
Makefile
40 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.9 2021/09/20 00:44:28 mef Exp $
|
|
|
|
R_PKGNAME= tibble
|
|
R_PKGVER= 3.1.4
|
|
|
|
MAINTAINER= minskim@NetBSD.org
|
|
COMMENT= Simple data frames
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= R-cli>=1.1.0:../../devel/R-cli
|
|
DEPENDS+= R-crayon>=1.3.4:../../devel/R-crayon
|
|
DEPENDS+= R-fansi>=0.4.0:../../devel/R-fansi
|
|
DEPENDS+= R-pkgconfig>=2.0.2:../../devel/R-pkgconfig
|
|
DEPENDS+= R-rlang>=0.3.0:../../devel/R-rlang
|
|
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
|
|
|
|
|
|
# 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"
|