pkgsrc/textproc/R-vroom/Makefile
mef 3035485a26 (textproc/R-vroom) Updated 1.5.7 to 1.6.3
# vroom 1.6.3

# vroom 1.6.2

* No user-facing changes.

# vroom 1.6.1

* `str()` now works in a colorized context in the presence of a column
  of class `integer64`, i.e. parsed with `col_big_integer()` (@bart1,
  #477).

* The embedded implementation of the Grisu algorithm for printing
  floating point numbers now uses `snprintf()` instead of `sprintf()`
  and likewise for vroom's own code (@jeroen, #480).

# vroom 1.6.0

* `vroom(col_select=)` now handles column selection by numeric
  position when `id` column is provided (#455).

* `vroom(id = "path", col_select = a:c)` is treated like `vroom(id =
  "path", col_select = c(path, a:c))`. If an `id` column is provided,
  it is automatically included in the output (#416).

* `vroom_write(append = TRUE)` does not modify an existing file when
  appending an empty data frame. In particular, it does not overwrite
  (delete) the existing contents of that file
  (https://github.com/tidyverse/readr/issues/1408, #451).

* `vroom::problems()` now defaults to `.Last.value` for its primary
  input, similar to how `readr::problems()` works (#443).

* The warning that indicates the existence of parsing problems has
  been improved, which should make it easier for the user to follow-up
  (https://github.com/tidyverse/readr/issues/1322).

* `vroom()` reads more reliably from filepaths containing non-ascii
  characters, in a non-UTF-8 locale (#394, #438).

* `vroom_format()` and `vroom_write()` only quote values that contain
  a delimiter, quote, or newline. Specifically values that are equal
  to the `na` string (or that start with it) are no longer quoted
  (#426).

* Fixed segfault when reading in multiple files and the first file has
  only a header row of column names, but subsequent files have at
  least one row (#430).

* Fixed segfault when `vroom_format()` is given an empty data frame
  (#425)

* Fixed a segfault that could occur when the final field of the final
  line is missing and the file also does not end in a newline (#429).

* Fixed recursive garbage collection error that could occur during
  `vroom_write()` when `output_column()` generates an ALTREP vector
  (#389).

* `vroom_progress()` uses `rlang::is_interactive()` instead of
  `base::interactive()`.

* `col_factor(levels = NULL)` honors the `na` strings of `vroom()` and
  its own `include_na` argument, as described in the docs, and now
  reproduces the behaviour of readr's first edition parser (#396).
2023-06-17 14:00:31 +00:00

54 lines
2.1 KiB
Makefile

# $NetBSD: Makefile,v 1.3 2023/06/17 14:00:31 mef Exp $
R_PKGNAME= vroom
R_PKGVER= 1.6.3
CATEGORIES= textproc
MAINTAINER= pkgsrc-users@NetBSD.org
COMMENT= Read and Write Rectangular Text Data Quickly
LICENSE= mit # + file LICENSE
DEPENDS+= R-bit64>=4.0.5:../../devel/R-bit64
DEPENDS+= R-cli>=2.5.0:../../devel/R-cli
DEPENDS+= R-crayon>=1.3.4:../../devel/R-crayon
DEPENDS+= R-glue>=1.4.2:../../devel/R-glue
DEPENDS+= R-lifecycle>=1.0.0:../../devel/R-lifecycle
DEPENDS+= R-rlang>=0.4.2:../../devel/R-rlang
DEPENDS+= R-tidyselect>=1.1.1:../../devel/R-tidyselect
DEPENDS+= R-withr>=2.4.2:../../devel/R-withr
DEPENDS+= R-tibble>=2.0.0:../../math/R-tibble
DEPENDS+= R-vctrs>=0.2.0:../../math/R-vctrs
DEPENDS+= R-hms>=1.1.0:../../time/R-hms
DEPENDS+= R-progress-[0-9]*:../../sysutils/R-progress
DEPENDS+= R-tzdb-[0-9]*:../../time/R-tzdb
#EST_DEPENDS+= R-archive-[0-9]*:
TEST_DEPENDS+= R-bench-[0-9]*:../../benchmarks/R-bench
TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr
TEST_DEPENDS+= R-curl-[0-9]*:../../www/R-curl
TEST_DEPENDS+= R-dplyr-[0-9]*:../../math/R-dplyr
TEST_DEPENDS+= R-forcats-[0-9]*:../../math/R-forcats
TEST_DEPENDS+= R-fs-[0-9]*:../../devel/R-fs
TEST_DEPENDS+= R-ggplot2-[0-9]*:../../graphics/R-ggplot2
TEST_DEPENDS+= R-knitr-[0-9]*:../../print/R-knitr
#EST_DEPENDS+= R-patchwork-[0-9]*:
TEST_DEPENDS+= R-rmarkdown-[0-9]*:../../textproc/R-rmarkdown
TEST_DEPENDS+= R-rstudioapi-[0-9]*:../../math/R-rstudioapi
TEST_DEPENDS+= R-scales-[0-9]*:../../graphics/R-scales
TEST_DEPENDS+= R-spelling-[0-9]*:../../textproc/R-spelling
TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat
TEST_DEPENDS+= R-tidyr-[0-9]*:../../math/R-tidyr
TEST_DEPENDS+= R-waldo-[0-9]*:../../devel/R-waldo
TEST_DEPENDS+= R-xml2-[0-9]*:../../textproc/R-xml2
USE_LANGUAGES= c c++11
REPLACE_BASH+= inst/bench/download-data.sh inst/bench/script.sh
REPLACE_R+= inst/bench/session_info.R inst/bench/run-bench.R inst/bench/run-bench-fwf.R
.include "../../lang/R-cpp11/buildlink3.mk"
.include "../../time/R-tzdb/buildlink3.mk"
.include "../../sysutils/R-progress/buildlink3.mk"
.include "../../math/R/Makefile.extension"
.include "../../mk/bsd.pkg.mk"