guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit c4410d027dbe013d84e5bff600988dd08989103d
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Sun Feb 15 11:12:09 2026 +0100
gnu: r-vdiffr: Update to 1.0.9.
* gnu/packages/cran.scm (r-vdiffr): Update to 1.0.9.
[native-inputs]: Remove r-testthat; add r-withr.
Change-Id: I13f1046f27d6b17595334dea1a3f55eb558344bd
---
gnu/packages/cran.scm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index ef2a2918aa..d2bdc53974 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -53101,15 +53101,16 @@ unit tests of graphics).")
(define-public r-vdiffr
(package
(name "r-vdiffr")
- (version "1.0.8")
+ (version "1.0.9")
(source
(origin
(method url-fetch)
(uri (cran-uri "vdiffr" version))
(sha256
(base32
- "16zdb910dc40s79f336mdpr0zymxbjh84vx41051hq4gfx54y342"))))
- (properties `((upstream-name . "vdiffr")))
+ "063i8v5lknlwfpjvf3hm3yj5dsmdrgg6q2r941vj02nfr0zh2kcc"))))
+ (properties `((upstream-name . "vdiffr")
+ (updater-ignored-native-inputs . ("r-ggplot2"))))
(build-system r-build-system)
;; Tests require r-ggplot2, which creates a dependency cycle in pillar.
(arguments (list #:tests? #false))
@@ -53123,7 +53124,7 @@ unit tests of graphics).")
r-rlang
r-testthat
r-xml2))
- (native-inputs (list r-testthat))
+ (native-inputs (list r-withr))
(home-page "https://github.com/r-lib/vdiffr")
(synopsis "Visual regression testing and graphical diffing")
(description