Mon Sep 20 00:44:28 2021 UTC ()
(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.


(mef)
diff -r1.8 -r1.9 pkgsrc/math/R-tibble/Makefile
diff -r1.3 -r1.4 pkgsrc/math/R-tibble/distinfo

cvs diff -r1.8 -r1.9 pkgsrc/math/R-tibble/Makefile (expand / switch to unified diff)

--- pkgsrc/math/R-tibble/Makefile 2021/06/06 23:39:26 1.8
+++ pkgsrc/math/R-tibble/Makefile 2021/09/20 00:44:28 1.9
@@ -1,28 +1,40 @@ @@ -1,28 +1,40 @@
1# $NetBSD: Makefile,v 1.8 2021/06/06 23:39:26 mef Exp $ 1# $NetBSD: Makefile,v 1.9 2021/09/20 00:44:28 mef Exp $
2 2
3R_PKGNAME= tibble 3R_PKGNAME= tibble
4R_PKGVER= 3.1.2 4R_PKGVER= 3.1.4
5#ATEGORIES= math 
6 5
7MAINTAINER= minskim@NetBSD.org 6MAINTAINER= minskim@NetBSD.org
8COMMENT= Simple data frames 7COMMENT= Simple data frames
9LICENSE= mit 8LICENSE= mit
10 9
11DEPENDS+= R-cli>=1.1.0:../../devel/R-cli 10DEPENDS+= R-cli>=1.1.0:../../devel/R-cli
12DEPENDS+= R-crayon>=1.3.4:../../devel/R-crayon 11DEPENDS+= R-crayon>=1.3.4:../../devel/R-crayon
13DEPENDS+= R-fansi>=0.4.0:../../devel/R-fansi 12DEPENDS+= R-fansi>=0.4.0:../../devel/R-fansi
14DEPENDS+= R-pkgconfig>=2.0.2:../../devel/R-pkgconfig 13DEPENDS+= R-pkgconfig>=2.0.2:../../devel/R-pkgconfig
15DEPENDS+= R-rlang>=0.3.0:../../devel/R-rlang 14DEPENDS+= R-rlang>=0.3.0:../../devel/R-rlang
16DEPENDS+= R-pillar>=1.4.0:../../misc/R-pillar 15DEPENDS+= R-pillar>=1.4.0:../../misc/R-pillar
17DEPENDS+= R-lifecycle-[0-9]*:../../devel/R-lifecycle 16DEPENDS+= R-lifecycle-[0-9]*:../../devel/R-lifecycle
18DEPENDS+= R-magrittr-[0-9]*:../../devel/R-magrittr 17DEPENDS+= R-magrittr-[0-9]*:../../devel/R-magrittr
19 18
20#Packages suggested but not available: 
21# 'bench', 'bit64', 'blob', 'DiagrammeR', 'dplyr', 'formattable', 
22# 'ggplot2', 'hms', 'lubridate', 'mockr', 'nycflights13', 'purrr', 
23# 'testthat', 'tidyr' 
24 19
25USE_LANGUAGES= c 20# VignetteBuilder package required for checking but not installed: 'knitr'
 21# Packages suggested but not available:
 22# 'bench', 'DiagrammeR', 'formattable', 'lubridate', 'mockr',
 23# 'nycflights13'
 24
 25TEST_DEPENDS+= R-bit64-[0-9]*:../../devel/R-bit64
 26TEST_DEPENDS+= R-blob-[0-9]*:../../devel/R-blob
 27TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr
 28TEST_DEPENDS+= R-dplyr-[0-9]*:../../math/R-dplyr
 29TEST_DEPENDS+= R-ggplot2-[0-9]*:../../graphics/R-ggplot2
 30TEST_DEPENDS+= R-hms-[0-9]*:../../time/R-hms
 31TEST_DEPENDS+= R-htmltools-[0-9]*:../../textproc/R-htmltools
 32TEST_DEPENDS+= R-knitr-[0-9]*:../../print/R-knitr
 33TEST_DEPENDS+= R-purrr-[0-9]*:../../devel/R-purrr
 34TEST_DEPENDS+= R-rmarkdown-[0-9]*:../../textproc/R-rmarkdown
 35TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat
 36TEST_DEPENDS+= R-tidyr-[0-9]*:../../math/R-tidyr
26 37
 38.include "../../lang/R-cpp11/buildlink3.mk"
27.include "../../math/R/Makefile.extension" 39.include "../../math/R/Makefile.extension"
28.include "../../mk/bsd.pkg.mk" 40.include "../../mk/bsd.pkg.mk"

cvs diff -r1.3 -r1.4 pkgsrc/math/R-tibble/distinfo (expand / switch to unified diff)

--- pkgsrc/math/R-tibble/distinfo 2021/06/05 08:30:23 1.3
+++ pkgsrc/math/R-tibble/distinfo 2021/09/20 00:44:28 1.4
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.3 2021/06/05 08:30:23 mef Exp $ 1$NetBSD: distinfo,v 1.4 2021/09/20 00:44:28 mef Exp $
2 2
3SHA1 (R/tibble_3.1.2.tar.gz) = f075b899eedd96b4e27770eb37391c6350227bf3 3SHA1 (R/tibble_3.1.4.tar.gz) = 4073557b7c53730e85c3aa679be6748598fb6265
4RMD160 (R/tibble_3.1.2.tar.gz) = 363bf58e1729dcdec8ba4a77de508f339bbcbcd5 4RMD160 (R/tibble_3.1.4.tar.gz) = 92249d2ea09881fd39603aefa9c543966e6cb8c2
5SHA512 (R/tibble_3.1.2.tar.gz) = e0c6bfd360b9b7fef77c6bf1f41c99dedff8a2cfb6e08c4084a4ecf5612e2144713070634d08f111c39ec3274fa692713444f673c0413a74128396dc074dda74 5SHA512 (R/tibble_3.1.4.tar.gz) = a66dc2a734b82da304d8e981de7c2a398c81a7cb12f96bf8e52157c4aaea9dd0067eac0b6e4529fc4f9cf9ff7aef7fed29181031e928bb0d82339b22beabed83
6Size (R/tibble_3.1.2.tar.gz) = 686145 bytes 6Size (R/tibble_3.1.4.tar.gz) = 737787 bytes