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

commit 8a6f6bf0428cccae8e0f29b7926b9c29c8d0e1bb
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 17:04:20 2026 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 5d541dff6c..0b134629c7 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -7424,6 +7424,52 @@ tablets.")
 estimation and robust multivariate analysis with high breakdown point.")
     (license license:gpl2+)))
 
+(define-public r-rsqlite
+  (package
+    (name "r-rsqlite")
+    (version "2.4.6")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "RSQLite" version))
+              (sha256
+               (base32
+                "0gnzq7ga5grfb4rs09pi3rpr8cnj7wdb6gwca5r1ksy2my3y8lbg"))))
+    (properties
+     '((upstream-name . "RSQLite")
+       ;; These are not strictly necessary for running tests and adding them
+       ;; would cause dependency cycles.
+       (updater-ignored-native-inputs . ("r-dbitest" "r-ndbi"))))
+    (build-system r-build-system)
+    (arguments
+     (list
+      #:phases
+      '(modify-phases %standard-phases
+         ;; Needed for one failing test
+         (add-before 'check 'set-locale
+           (lambda _ (setenv "LC_ALL" "en_US.UTF-8"))))))
+    (propagated-inputs
+     (list r-bit64
+           r-blob
+           r-cpp11
+           r-dbi
+           r-memoise
+           r-pkgconfig
+           r-rlang))
+    (native-inputs
+     (list r-callr
+           r-hms
+           r-knitr
+           r-magrittr
+           r-testthat
+           r-withr))
+    (home-page "https://github.com/rstats-db/RSQLite";)
+    (synopsis "SQLite interface for R")
+    (description
+     "This package embeds the SQLite database engine in R and provides an
+interface compliant with the DBI package.  The source for the SQLite engine is
+included.")
+    (license license:lgpl2.0+)))
+
 (define-public r-runner
   (package
     (name "r-runner")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 1b67d5a71f..5d5f70b54a 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1701,52 +1701,6 @@ previous R versions and their release dates.")
 informative error messages when it's not available.")
     (license license:expat)))
 
-(define-public r-rsqlite
-  (package
-    (name "r-rsqlite")
-    (version "2.4.6")
-    (source (origin
-              (method url-fetch)
-              (uri (cran-uri "RSQLite" version))
-              (sha256
-               (base32
-                "0gnzq7ga5grfb4rs09pi3rpr8cnj7wdb6gwca5r1ksy2my3y8lbg"))))
-    (properties
-     '((upstream-name . "RSQLite")
-       ;; These are not strictly necessary for running tests and adding them
-       ;; would cause dependency cycles.
-       (updater-ignored-native-inputs . ("r-dbitest" "r-ndbi"))))
-    (build-system r-build-system)
-    (arguments
-     (list
-      #:phases
-      '(modify-phases %standard-phases
-         ;; Needed for one failing test
-         (add-before 'check 'set-locale
-           (lambda _ (setenv "LC_ALL" "en_US.UTF-8"))))))
-    (propagated-inputs
-     (list r-bit64
-           r-blob
-           r-cpp11
-           r-dbi
-           r-memoise
-           r-pkgconfig
-           r-rlang))
-    (native-inputs
-     (list r-callr
-           r-hms
-           r-knitr
-           r-magrittr
-           r-testthat
-           r-withr))
-    (home-page "https://github.com/rstats-db/RSQLite";)
-    (synopsis "SQLite interface for R")
-    (description
-     "This package embeds the SQLite database engine in R and provides an
-interface compliant with the DBI package.  The source for the SQLite
-engine (version 3.8.8.2) is included.")
-    (license license:lgpl2.0+)))
-
 (define-public r-segmented
   (package
     (name "r-segmented")

Reply via email to