guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit 1e824d05e1e64e5e822c70dd03712c28163c9c1c
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Wed Jan 14 10:53:57 2026 +0100
gnu: r-yaml: Update to 2.3.12.
* gnu/packages/cran.scm (r-yaml): Update to 2.3.12.
[properties]: Record updater-ignored-native-inputs; remove
updater-extra-native-inputs.
[native-inputs]: Remove r-runit.
[arguments]: Disable tests.
Change-Id: Ic32cd7734ef4628e7b795ed24ed6f06ce6b9cd91
---
gnu/packages/cran.scm | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 2d197ef87f..f37c2d8a4d 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -37811,17 +37811,20 @@ package.")
(define-public r-yaml
(package
(name "r-yaml")
- (version "2.3.11")
+ (version "2.3.12")
(source (origin
(method url-fetch)
(uri (cran-uri "yaml" version))
(sha256
(base32
- "0b62p9h42xbbl96jlvbdyriys1h1v2jlnzcvsmbj5fp2p5qgmi5r"))))
+ "0v2mrn4m56b6sjf71i6gvb6cd5n22yl1if1kwgrkw4six3fz7k40"))))
(properties
- '((updater-extra-native-inputs . ("r-runit"))))
+ '((updater-ignored-native-inputs . ("r-knitr" "r-testthat"))))
(build-system r-build-system)
- (native-inputs (list r-runit))
+ ;; Tests require r-testthat, which causes a dependency cycle. Everything
+ ;; uses r-knitr and r-testthat, and both of these packages have quite a
+ ;; few dependencies, making cycles very likely.
+ (arguments (list #:tests? #false))
(home-page "https://cran.r-project.org/web/packages/yaml/")
(synopsis "Methods to convert R data to YAML and back")
(description