From b52a0dd5655f97a8f0c97583d01a69c1ff2a6838 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 11 Mar 2025 12:05:15 +0100 Subject: [PATCH] gnu: r-gtools: Move to (gnu packages cran). * gnu/packages/statistics.scm (r-gtools): Move from here... * gnu/packages/cran.scm (r-gtools): ...to here. Change-Id: I8f0c80fc1959af85ec62f26da7838f28b6822a67 --- gnu/packages/cran.scm | 22 ++++++++++++++++++++++ gnu/packages/statistics.scm | 22 ---------------------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 230d164de85..949e6f90e39 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4858,6 +4858,28 @@ to process this file format.") \"tables\" of grobs.") (license license:gpl2+))) +(define-public r-gtools + (package + (name "r-gtools") + (version "3.9.5") + (source + (origin + (method url-fetch) + (uri (cran-uri "gtools" version)) + (sha256 + (base32 + "0jqpvygxgr4m1rgaj5rzd048fwxvpcr4n1vx8bfabc9d2p0vdsfy")))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/web/packages/gtools") + (synopsis "Various R programming tools") + (description + "This package contains a collection of various functions to assist in R +programming, such as tools to assist in developing, updating, and maintaining +R and R packages, calculating the logit and inverse logit transformations, +tests for whether a value is missing, empty or contains only @code{NA} and +@code{NULL} values, and many more.") + (license license:gpl2))) + (define-public r-guix-install (package (name "r-guix-install") diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 542fb900106..3921af2dcf1 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -2561,28 +2561,6 @@ framework, with additional code inspection and report generation tools.") Zurich, including many that are related to graphics.") (license license:gpl2+))) -(define-public r-gtools - (package - (name "r-gtools") - (version "3.9.5") - (source - (origin - (method url-fetch) - (uri (cran-uri "gtools" version)) - (sha256 - (base32 - "0jqpvygxgr4m1rgaj5rzd048fwxvpcr4n1vx8bfabc9d2p0vdsfy")))) - (build-system r-build-system) - (home-page "https://cran.r-project.org/web/packages/gtools") - (synopsis "Various R programming tools") - (description - "This package contains a collection of various functions to assist in R -programming, such as tools to assist in developing, updating, and maintaining -R and R packages, calculating the logit and inverse logit transformations, -tests for whether a value is missing, empty or contains only @code{NA} and -@code{NULL} values, and many more.") - (license license:gpl2))) - (define-public r-rocr (package (name "r-rocr")