guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit 5733b49bddb41d6837b0014ad2129b6540ce0340
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 18:37:43 2026 +0100
gnu: r-sourcetools: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-sourcetools): Move from here...
* gnu/packages/cran.scm (r-sourcetools): ...to here.
Change-Id: I3ab0bcfbca1d1835fa84729d71febab0f1048d85
---
gnu/packages/cran.scm | 21 +++++++++++++++++++++
gnu/packages/statistics.scm | 21 ---------------------
2 files changed, 21 insertions(+), 21 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index ada08fcba2..64e36f7da6 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -10458,6 +10458,27 @@ compatibility with authentication approaches supported
by the Snowflake
Connector for Python and the Snowflake CLI.")
(license license:expat)))
+(define-public r-sourcetools
+ (package
+ (name "r-sourcetools")
+ (version "0.1.7-1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "sourcetools" version))
+ (sha256
+ (base32
+ "1l9i9ram12pjks8h2gzmj119wf4ixwyhljsfv289dn8dgbdjp0cn"))))
+ (build-system r-build-system)
+ (native-inputs (list r-testthat))
+ (home-page "https://cran.r-project.org/web/packages/sourcetools")
+ (synopsis "Tools for reading, tokenizing and parsing R code")
+ (description
+ "The sourcetools package provides both an R and C++ interface for the
+tokenization of R code, and helpers for interacting with the tokenized
+representation of R code.")
+ (license license:expat)))
+
(define-public r-spatial
(package
(name "r-spatial")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 49331ceb47..91db6f5e96 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1842,27 +1842,6 @@ following problems:
@end enumerate\n")
(license license:gpl3+)))
-(define-public r-sourcetools
- (package
- (name "r-sourcetools")
- (version "0.1.7-1")
- (source
- (origin
- (method url-fetch)
- (uri (cran-uri "sourcetools" version))
- (sha256
- (base32
- "1l9i9ram12pjks8h2gzmj119wf4ixwyhljsfv289dn8dgbdjp0cn"))))
- (build-system r-build-system)
- (native-inputs (list r-testthat))
- (home-page "https://cran.r-project.org/web/packages/sourcetools")
- (synopsis "Tools for reading, tokenizing and parsing R code")
- (description
- "The sourcetools package provides both an R and C++ interface for the
-tokenization of R code, and helpers for interacting with the tokenized
-representation of R code.")
- (license license:expat)))
-
(define-public r-statmod
(package
(name "r-statmod")