guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit 2d015767312bb445e2ce1893672318dcb2d70f25
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Wed Jan 14 19:42:17 2026 +0100
gnu: r-lifecycle: Update to 1.0.5.
* gnu/packages/cran.scm (r-lifecycle): Update to 1.0.5.
[propagated-inputs]: Remove r-glue.
Change-Id: I57d11984d89e8ef9e67e20964cf638f51fd92ca1
---
gnu/packages/cran.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 1f09edc76f..e87ef63255 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -41282,14 +41282,14 @@ atmospheric physics.")
(define-public r-lifecycle
(package
(name "r-lifecycle")
- (version "1.0.4")
+ (version "1.0.5")
(source
(origin
(method url-fetch)
(uri (cran-uri "lifecycle" version))
(sha256
(base32
- "1k4ibf2x90xgmzaq47vf9wrsh6a2fp2lg1l8bq89632bx33x795d"))))
+ "1vpq2sslm9651spz419wrgcxbf4ad7bg38smhfl5d86vdqz1x131"))))
(properties
;; We can't add this here because via r-stringr this package ends up
;; being an input to r-knitr.
@@ -41299,7 +41299,7 @@ atmospheric physics.")
;; Tests require r-testthat, which uses this package.
(arguments (list #:tests? #false))
(propagated-inputs
- (list r-cli r-glue r-rlang))
+ (list r-cli r-rlang))
(home-page "https://github.com/r-lib/lifecycle")
(synopsis "Manage the life cycle of your package functions")
(description