summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2026-01-29 19:16:46 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-14 10:18:15 +0100
commit22dc2e26561f14d613700fa74db4b5d57194e519 (patch)
tree79995ab7f5be09c06d8aa8728cdcd4c41fed586b /gnu
parent7af33599b66e37211bdaadc95573f93345c40f4c (diff)
gnu: r-vroom: Update to 1.7.0.
* gnu/packages/cran.scm (r-vroom): Update to 1.7.0. [arguments]: Remove custom phases. [synopsis]: Use lowercase. [description]: Reflow paragraph. Change-Id: Id9f1ff77af926d626267262cf2be8cec7285e139
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/cran.scm41
1 files changed, 12 insertions, 29 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 3e1b5cf389..25d6472957 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -54712,34 +54712,18 @@ time zone manipulations.")
(define-public r-vroom
(package
(name "r-vroom")
- (version "1.6.7")
+ (version "1.7.0")
(source
- (origin
- (method url-fetch)
- (uri (cran-uri "vroom" version))
- (sha256
- (base32
- "1jknbkxjcbqk5831zpjqswb8dmrwbi1nw0vh1n9fmh4bdsvynb16"))))
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "vroom" version))
+ (sha256
+ (base32
+ "1z2hg6fswpglkr34f0hcvsxzwqwi7mvhssl1ql3shhkky97w4jb7"))))
(properties
'((upstream-name . "vroom")
(updater-extra-native-inputs . ("tzdata-for-tests"))))
(build-system r-build-system)
- (arguments
- (list
- #:phases
- '(modify-phases %standard-phases
- (add-after 'unpack 'disable-failing-test
- (lambda _
- ;; This test produces an unexpected warning.
- (substitute* "tests/testthat/test-vroom.R"
- (("expect_warning\\(expect_equal\\(as.data.frame\\(x\\), y\\), NA\\)") ""))))
- (add-before 'check 'set-timezone
- (lambda* (#:key inputs #:allow-other-keys)
- ;; Two tests would fail without this.
- (setenv "TZ" "UTC+1")
- (setenv "TZDIR"
- (search-input-directory inputs
- "share/zoneinfo")))))))
(propagated-inputs
(list r-bit64
r-cli
@@ -54757,13 +54741,12 @@ time zone manipulations.")
r-withr))
(native-inputs (list r-knitr r-spelling r-testthat tzdata-for-tests))
(home-page "https://vroom.r-lib.org")
- (synopsis
- "Read and Write Rectangular Text Data")
+ (synopsis "Read and write rectangular text data")
(description
- "This package reads and writes data files like @acronym{CSV},
-@acronym{TSV} and @acronym{FWF}. When reading it uses a quick initial indexing
-step, then reads the values lazily, so only the data you actually use needs to
-be read. The writer formats the data in parallel and writes to disk
+ "This package reads and writes data files like @acronym{CSV},
+@acronym{TSV} and @acronym{FWF}. When reading it uses a quick initial
+indexing step, then reads the values lazily, so only the data you actually use
+needs to be read. The writer formats the data in parallel and writes to disk
asynchronously from formatting.")
(license license:expat)))