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

commit 4dada2e88bab5e4ba47bbed9c1ef1413d0e9a6d7
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 16:51:00 2026 +0100

    gnu: r-rematch: Move to (gnu packages cran).
    
    * gnu/packages/statistics.scm (r-rematch): Move from here...
    * gnu/packages/cran.scm (r-rematch): ...to here.
    
    Change-Id: I7d2253a4f5e4fcfc4bcbbf09fc55a860f8bb2cc7
---
 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 cdee9c03bf..f17837250a 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6881,6 +6881,27 @@ significance (Johnson & Neyman, 1936; cf.  Spiller et 
al., 2012), etc.")
 package registries.")
      (license license:gpl2+)))
 
+(define-public r-rematch
+  (package
+    (name "r-rematch")
+    (version "2.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "rematch" version))
+       (sha256
+        (base32
+         "09jwg3glp32q4ml4khhzi8j7bzg9zhqqdg1m6r8gibh756zzgnhm"))))
+    (build-system r-build-system)
+    (native-inputs (list r-testthat))
+    (home-page "https://github.com/MangoTheCat/rematch";)
+    (synopsis "Match regular expressions with a nicer API")
+    (description
+     "This package provides a small wrapper on @code{regexpr} to extract the
+matches and captured groups from the match of a regular expression to a
+character vector.")
+    (license license:expat)))
+
 (define-public r-reshape2
   (package
     (name "r-reshape2")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 7004604013..5a0aaaed0e 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -2087,27 +2087,6 @@ 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-rematch
-  (package
-    (name "r-rematch")
-    (version "2.0.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (cran-uri "rematch" version))
-       (sha256
-        (base32
-         "09jwg3glp32q4ml4khhzi8j7bzg9zhqqdg1m6r8gibh756zzgnhm"))))
-    (build-system r-build-system)
-    (native-inputs (list r-testthat))
-    (home-page "https://github.com/MangoTheCat/rematch";)
-    (synopsis "Match regular expressions with a nicer API")
-    (description
-     "This package provides a small wrapper on @code{regexpr} to extract the
-matches and captured groups from the match of a regular expression to a
-character vector.")
-    (license license:expat)))
-
 (define-public r-spams
   (package
     (name "r-spams")

Reply via email to