pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/textproc/R-vroom
Module Name: pkgsrc
Committed By: mef
Date: Sun May 1 14:22:59 UTC 2022
Modified Files:
pkgsrc/textproc/R-vroom: Makefile distinfo
Log Message:
(textproc/R-vroom) Updated 1.5.4 to 1.5.7
# vroom 1.5.7
* Jenny Bryan is now the official maintainer.
* Fix uninitialized bool detected by CRAN's UBSAN check
(https://github.com/r-lib/vroom/pull/386)
* Fix buffer overflow when trying to parse an integer field that is
over 64 characters long
(https://github.com/tidyverse/readr/issues/1326)
* Fix subset indexing when indexes span a file boundary multiple times
(#383)
# vroom 1.5.6
* `vroom(col_select=)` now works if `col_names = FALSE` as intended (#381)
* `vroom(n_max=)` now correctly handles cases when reading from a
connection and the file does _not_ end with a newline
(https://github.com/tidyverse/readr/issues/1321)
* `vroom()` no longer issues a spurious warning when the parsing needs
* to be restarted due to the presence of embedded newlines
* (https://github.com/tidyverse/readr/issues/1313) Fix performance
* issue when materializing subsetted vectors (#378)
* `vroom_format()` now uses the same internal multi-threaded code as
`vroom_write()`, improving its performance in most cases (#377)
* `vroom_fwf()` no longer omits the last line if it does _not_ end
with a newline (https://github.com/tidyverse/readr/issues/1293)
* Empty files or files with only a header line and no data no longer
cause a crash if read with multiple files
(https://github.com/tidyverse/readr/issues/1297)
* Files with a header but no contents, or a empty file if `col_names =
FALSE` no longer cause a hang when `progress = TRUE`
(https://github.com/tidyverse/readr/issues/1297)
* Commented lines with comments at the end of lines no longer hang R
(https://github.com/tidyverse/readr/issues/1309)
* Comment lines containing unpaired quotes are no longer treated as
unterminated quotations
(https://github.com/tidyverse/readr/issues/1307)
* Values with only a `Inf` or `NaN` prefix but additional data
afterwards, like `Inform` or no longer inappropriately guessed as
doubles (https://github.com/tidyverse/readr/issues/1319)
* Time types now support `%h` format to denote hour durations greater
than 24, like readr (https://github.com/tidyverse/readr/issues/1312)
* Fix performance issue when materializing subsetted vectors (#378)
# vroom 1.5.5
* `vroom()` now supports files with only carriage return newlines
(`\r`). (#360, https://github.com/tidyverse/readr/issues/1236)
* `vroom()` now parses single digit datetimes more consistently as
readr has done (https://github.com/tidyverse/readr/issues/1276)
* `vroom()` now parses `Inf` values as doubles
(https://github.com/tidyverse/readr/issues/1283)
* `vroom()` now parses `NaN` values as doubles
(https://github.com/tidyverse/readr/issues/1277)
* `VROOM_CONNECTION_SIZE` is now parsed as a double, which supports
scientific notation (#364)
* `vroom()` now works around specifying a `\n` as the delimiter (#365,
https://github.com/tidyverse/dplyr/issues/5977)
* `vroom()` no longer crashes if given a `col_name` and `col_type`
both less than the number of columns
(https://github.com/tidyverse/readr/issues/1271)
* `vroom()` no longer hangs if given an empty value for
`locale(grouping_mark=)`
(https://github.com/tidyverse/readr/issues/1241)
* Fix performance regression when guessing with large numbers of rows
(https://github.com/tidyverse/readr/issues/1267)
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/R-vroom/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/textproc/R-vroom/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/textproc/R-vroom/Makefile
diff -u pkgsrc/textproc/R-vroom/Makefile:1.1 pkgsrc/textproc/R-vroom/Makefile:1.2
--- pkgsrc/textproc/R-vroom/Makefile:1.1 Thu Sep 9 22:12:14 2021
+++ pkgsrc/textproc/R-vroom/Makefile Sun May 1 14:22:58 2022
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2021/09/09 22:12:14 mef Exp $
+# $NetBSD: Makefile,v 1.2 2022/05/01 14:22:58 mef Exp $
R_PKGNAME= vroom
-R_PKGVER= 1.5.4
+R_PKGVER= 1.5.7
CATEGORIES= textproc
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
@@ -22,6 +22,25 @@ 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]*:
+#EST_DEPENDS+= R-bench-[0-9]*:
+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
Index: pkgsrc/textproc/R-vroom/distinfo
diff -u pkgsrc/textproc/R-vroom/distinfo:1.3 pkgsrc/textproc/R-vroom/distinfo:1.4
--- pkgsrc/textproc/R-vroom/distinfo:1.3 Tue Oct 26 11:21:32 2021
+++ pkgsrc/textproc/R-vroom/distinfo Sun May 1 14:22:58 2022
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.3 2021/10/26 11:21:32 nia Exp $
+$NetBSD: distinfo,v 1.4 2022/05/01 14:22:58 mef Exp $
-BLAKE2s (R/vroom_1.5.4.tar.gz) = 507fb4fa786657a5bc905311927222b44b190f7e4ff6e1f8b59f90f4b6afbfb9
-SHA512 (R/vroom_1.5.4.tar.gz) = 10457ef894fd51be4e5e041dc8abbf6003b6f28e389d7bbf936c753d057e8ce1130d61714649671e1674f15d07dda144e28f14b2dc0111c481e720bd3296edc8
-Size (R/vroom_1.5.4.tar.gz) = 721979 bytes
+BLAKE2s (R/vroom_1.5.7.tar.gz) = 39f8b9b61a917b76dd8a2b99b4c811583b3c0c565da2545a6207b269cba2ef67
+SHA512 (R/vroom_1.5.7.tar.gz) = 0d9ae680cb515d2f2dd5ad9f572070e00c0d3d7952959165c2cf655981e89fc57c8ea8284c0b89192e8096ffa747d2151520fe0b6f066165573fa60c4cc1cf43
+Size (R/vroom_1.5.7.tar.gz) = 727956 bytes
Home |
Main Index |
Thread Index |
Old Index