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

commit 74f98837c6b9ed06c2906b2face6421490d561a8
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 17:02:53 2026 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index aa6697b004..b40596a9e9 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -7375,6 +7375,34 @@ interactive analytic queries against data sources of all 
sizes ranging from
 gigabytes to petabytes.")
     (license license:bsd-3)))
 
+(define-public r-rprojroot
+  (package
+    (name "r-rprojroot")
+    (version "2.1.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "rprojroot" version))
+       (sha256
+        (base32
+         "1s8p0mgg44chpbb5zdd4rvjjvx692ixk3p38izb9rza5xyxqjfa7"))))
+    (properties
+     '( ;; Avoid a dependency cycles.
+       (updater-ignored-native-inputs . ("r-testthat"))))
+    (build-system r-build-system)
+    ;; Tests require r-testthat, which uses this package.
+    (arguments (list #:tests? #false))
+    (native-inputs
+     (list r-knitr r-rlang r-withr))
+    (home-page "https://github.com/krlmlr/rprojroot";)
+    (synopsis "Finding files in project subdirectories")
+    (description
+     "This package helps accessing files relative to a project root.  It
+provides helpers for robust, reliable and flexible paths to files below a
+project root.  The root of a project is defined as a directory that matches a
+certain criterion, e.g., it contains a certain regular file.")
+    (license license:gpl3)))
+
 (define-public r-rpushbullet
   (package
     (name "r-rpushbullet")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 61529bfdde..e5dc28550d 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1701,34 +1701,6 @@ previous R versions and their release dates.")
 informative error messages when it's not available.")
     (license license:expat)))
 
-(define-public r-rprojroot
-  (package
-    (name "r-rprojroot")
-    (version "2.1.1")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (cran-uri "rprojroot" version))
-       (sha256
-        (base32
-         "1s8p0mgg44chpbb5zdd4rvjjvx692ixk3p38izb9rza5xyxqjfa7"))))
-    (properties
-     '(;; Avoid a dependency cycles.
-       (updater-ignored-native-inputs . ("r-testthat"))))
-    (build-system r-build-system)
-    ;; Tests require r-testthat, which uses this package.
-    (arguments (list #:tests? #false))
-    (native-inputs
-     (list r-knitr r-rlang r-withr))
-    (home-page "https://github.com/krlmlr/rprojroot";)
-    (synopsis "Finding files in project subdirectories")
-    (description
-     "This package helps accessing files relative to a project root.  It
-provides helpers for robust, reliable and flexible paths to files below a
-project root.  The root of a project is defined as a directory that matches a
-certain criterion, e.g., it contains a certain regular file.")
-    (license license:gpl3)))
-
 (define-public r-rsqlite
   (package
     (name "r-rsqlite")

Reply via email to