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
This commit is contained in:
Ricardo Wurmus 2026-01-14 10:53:57 +01:00 committed by Andreas Enge
parent 64d282906e
commit 197ecf5974
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -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