summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2026-02-16 17:06:57 +0100
committerAndreas Enge <andreas@enge.fr>2026-03-07 11:57:22 +0100
commitdeee09590e58bcd65e7f9539ece7e8356768e38b (patch)
tree5f7fbc7d5b1f9d19f12e8af58bf9ef2f44158908
parent45cffdc087393871b1221090713909412da18fc7 (diff)
gnu: r-rversions: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-rversions): Move from here... * gnu/packages/cran.scm (r-rversions): ...to here. Change-Id: I84f1264333cd5750af9c68963b579e988df2458e
-rw-r--r--gnu/packages/cran.scm21
-rw-r--r--gnu/packages/statistics.scm21
2 files changed, 21 insertions, 21 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 058c2083690..cf4e11df4f4 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -7640,6 +7640,27 @@ through a Redis database. Key features include task queues, local caching,
and sophisticated error handling.")
(license license:expat)))
+(define-public r-rversions
+ (package
+ (name "r-rversions")
+ (version "3.0.0")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "rversions" version))
+ (sha256
+ (base32
+ "1q9k169vd31pvigf8q5lwc0zvacbycv7nl584kdh2mzbbyfjb06s"))))
+ (build-system r-build-system)
+ (propagated-inputs (list r-curl))
+ (native-inputs (list r-testthat r-webfakes r-withr))
+ (home-page "https://github.com/metacran/rversions")
+ (synopsis "Query R versions, including 'r-release' and 'r-oldrel'")
+ (description
+ "This package provides functions to query the main R repository to find
+the versions that @code{r-release} and @code{r-oldrel} refer to, and also all
+previous R versions and their release dates.")
+ (license license:expat)))
+
(define-public r-prettydoc
(package
(name "r-prettydoc")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index b6139b77a6f..65b746f275b 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1660,27 +1660,6 @@ Features:
@end itemize")
(license license:asl2.0)))
-(define-public r-rversions
- (package
- (name "r-rversions")
- (version "3.0.0")
- (source (origin
- (method url-fetch)
- (uri (cran-uri "rversions" version))
- (sha256
- (base32
- "1q9k169vd31pvigf8q5lwc0zvacbycv7nl584kdh2mzbbyfjb06s"))))
- (build-system r-build-system)
- (propagated-inputs (list r-curl))
- (native-inputs (list r-testthat r-webfakes r-withr))
- (home-page "https://github.com/metacran/rversions")
- (synopsis "Query R versions, including 'r-release' and 'r-oldrel'")
- (description
- "This package provides functions to query the main R repository to find
-the versions that @code{r-release} and @code{r-oldrel} refer to, and also all
-previous R versions and their release dates.")
- (license license:expat)))
-
(define-public r-segmented
(package
(name "r-segmented")