summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2026-02-16 18:50:06 +0100
committerAndreas Enge <andreas@enge.fr>2026-03-07 11:57:23 +0100
commit2283d0f242530050f326d792c80579b7225beb30 (patch)
tree03617e1fc9bd2b777cd1b3c3b491a4f1449fbf5c
parent8662f4fbca1f082e1250ac3b8bb1bc7259ebcc67 (diff)
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
-rw-r--r--gnu/packages/cran.scm27
-rw-r--r--gnu/packages/statistics.scm27
2 files changed, 27 insertions, 27 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 53ec8682726..4b18b38e8fb 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -13034,6 +13034,33 @@ that reshape did. In particular, built-in methods only work for data frames,
13034and tidyr provides no margins or aggregation.") 13034and tidyr provides no margins or aggregation.")
13035 (license license:expat))) 13035 (license license:expat)))
13036 13036
13037(define-public r-tidyselect
13038 (package
13039 (name "r-tidyselect")
13040 (version "1.2.1")
13041 (source
13042 (origin
13043 (method url-fetch)
13044 (uri (cran-uri "tidyselect" version))
13045 (sha256
13046 (base32
13047 "0g4h8mfm5ima0izy4h0c65q478473xsj4hskh15dzg5z1fx9g7hn"))))
13048 (properties
13049 '((updater-extra-native-inputs . ("r-stringr"))))
13050 (build-system r-build-system)
13051 (propagated-inputs
13052 (list r-cli r-glue r-lifecycle r-rlang r-vctrs r-withr))
13053 (native-inputs
13054 (list r-knitr r-stringr r-testthat))
13055 (home-page "https://cran.r-project.org/web/packages/tidyselect")
13056 (synopsis "Select from a set of strings")
13057 (description
13058 "This package provides a backend for the selecting functions of the
13059tidyverse. It makes it easy to implement select-like functions in your own
13060packages in a way that is consistent with other tidyverse interfaces for
13061selection.")
13062 (license license:gpl3)))
13063
13037(define-public r-tidyverse 13064(define-public r-tidyverse
13038 (package 13065 (package
13039 (name "r-tidyverse") 13066 (name "r-tidyverse")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index ce83de80b2c..55350c0e0a2 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1586,33 +1586,6 @@ Features:
1586@end itemize") 1586@end itemize")
1587 (license license:asl2.0))) 1587 (license license:asl2.0)))
1588 1588
1589(define-public r-tidyselect
1590 (package
1591 (name "r-tidyselect")
1592 (version "1.2.1")
1593 (source
1594 (origin
1595 (method url-fetch)
1596 (uri (cran-uri "tidyselect" version))
1597 (sha256
1598 (base32
1599 "0g4h8mfm5ima0izy4h0c65q478473xsj4hskh15dzg5z1fx9g7hn"))))
1600 (properties
1601 '((updater-extra-native-inputs . ("r-stringr"))))
1602 (build-system r-build-system)
1603 (propagated-inputs
1604 (list r-cli r-glue r-lifecycle r-rlang r-vctrs r-withr))
1605 (native-inputs
1606 (list r-knitr r-stringr r-testthat))
1607 (home-page "https://cran.r-project.org/web/packages/tidyselect")
1608 (synopsis "Select from a set of strings")
1609 (description
1610 "This package provides a backend for the selecting functions of the
1611tidyverse. It makes it easy to implement select-like functions in your own
1612packages in a way that is consistent with other tidyverse interfaces for
1613selection.")
1614 (license license:gpl3)))
1615
1616(define-public r-spams 1589(define-public r-spams
1617 (package 1590 (package
1618 (name "r-spams") 1591 (name "r-spams")