guix_mirror_bot pushed a commit to branch r-team
in repository guix.

commit f7167890d93dbb458c7866275c99e420f147adea
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 18:44:22 2026 +0100

    gnu: r-synchronicity: Move to (gnu packages cran).
    
    * gnu/packages/statistics.scm (r-synchronicity): Move from here...
    * gnu/packages/cran.scm (r-synchronicity): ...to here.
    
    Change-Id: I5cf0a6327186e4b7f9f50c01c0900017090d7f6d
---
 gnu/packages/cran.scm       | 22 ++++++++++++++++++++++
 gnu/packages/statistics.scm | 22 ----------------------
 2 files changed, 22 insertions(+), 22 deletions(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 871720efa5..dc01bc40c4 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -10668,6 +10668,28 @@ definition of Surv objects, Kaplan-Meier and 
Aalen-Johansen (multi-state)
 curves, Cox models, and parametric accelerated failure time models.")
     (license license:lgpl2.0+)))
 
+(define-public r-synchronicity
+  (package
+    (name "r-synchronicity")
+    (version "1.3.10")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "synchronicity" version))
+       (sha256
+        (base32
+         "12svf4xzb9s3m1h2ddqgl6q2v57ifsj2p80j8cg2k0543a43pww2"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     (list r-bh r-bigmemory-sri r-rcpp r-uuid))
+    (home-page "http://www.bigmemory.org";)
+    (synopsis "Boost mutex functionality in R")
+    (description "This package provides support for synchronization via
+mutexes and may eventually support interprocess communication and message
+passing.")
+    ;; Users can choose either LGPLv3 or ASL2.0.
+    (license (list license:lgpl3 license:asl2.0))))
+
 (define-public r-svglite
   (package
     (name "r-svglite")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index eb758c1338..34ae2c04ec 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1660,28 +1660,6 @@ Features:
 @end itemize")
     (license license:asl2.0)))
 
-(define-public r-synchronicity
-  (package
-    (name "r-synchronicity")
-    (version "1.3.10")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (cran-uri "synchronicity" version))
-       (sha256
-        (base32
-         "12svf4xzb9s3m1h2ddqgl6q2v57ifsj2p80j8cg2k0543a43pww2"))))
-    (build-system r-build-system)
-    (propagated-inputs
-     (list r-bh r-bigmemory-sri r-rcpp r-uuid))
-    (home-page "http://www.bigmemory.org";)
-    (synopsis "Boost mutex functionality in R")
-    (description "This package provides support for synchronization
-via mutexes and may eventually support interprocess communication and
-message passing.")
-    ;; Users can choose either LGPLv3 or ASL2.0.
-    (license (list license:lgpl3 license:asl2.0))))
-
 (define-public r-tidyselect
   (package
     (name "r-tidyselect")

Reply via email to