From 197ecf59742a4626ae5c76121a48bc42e09ccae2 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 14 Jan 2026 10:53:57 +0100 Subject: [PATCH] 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 a18da1fbe9a..a271f2cf021 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -37813,17 +37813,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