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

commit a8c0decd5ab09e40a994a765268252dca785025e
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 18:50:06 2026 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index f5adb5398b..5f069cf140 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -12987,6 +12987,33 @@ that reshape did.  In particular, built-in methods 
only work for data frames,
 and tidyr provides no margins or aggregation.")
     (license license:expat)))
 
+(define-public r-tidyselect
+  (package
+    (name "r-tidyselect")
+    (version "1.2.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "tidyselect" version))
+       (sha256
+        (base32
+         "0g4h8mfm5ima0izy4h0c65q478473xsj4hskh15dzg5z1fx9g7hn"))))
+    (properties
+     '((updater-extra-native-inputs . ("r-stringr"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     (list r-cli r-glue r-lifecycle r-rlang r-vctrs r-withr))
+    (native-inputs
+     (list r-knitr r-stringr r-testthat))
+    (home-page "https://cran.r-project.org/web/packages/tidyselect";)
+    (synopsis "Select from a set of strings")
+    (description
+     "This package provides a backend for the selecting functions of the
+tidyverse.  It makes it easy to implement select-like functions in your own
+packages in a way that is consistent with other tidyverse interfaces for
+selection.")
+    (license license:gpl3)))
+
 (define-public r-tidyverse
   (package
     (name "r-tidyverse")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index a058511939..73de5e5ca2 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1586,33 +1586,6 @@ Features:
 @end itemize")
     (license license:asl2.0)))
 
-(define-public r-tidyselect
-  (package
-    (name "r-tidyselect")
-    (version "1.2.1")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (cran-uri "tidyselect" version))
-       (sha256
-        (base32
-         "0g4h8mfm5ima0izy4h0c65q478473xsj4hskh15dzg5z1fx9g7hn"))))
-    (properties
-     '((updater-extra-native-inputs . ("r-stringr"))))
-    (build-system r-build-system)
-    (propagated-inputs
-     (list r-cli r-glue r-lifecycle r-rlang r-vctrs r-withr))
-    (native-inputs
-     (list r-knitr r-stringr r-testthat))
-    (home-page "https://cran.r-project.org/web/packages/tidyselect";)
-    (synopsis "Select from a set of strings")
-    (description
-     "This package provides a backend for the selecting functions of the
-tidyverse.  It makes it easy to implement select-like functions in your own
-packages in a way that is consistent with other tidyverse interfaces for
-selection.")
-    (license license:gpl3)))
-
 (define-public r-spams
   (package
     (name "r-spams")

Reply via email to