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

commit d25f5c98d5a02297ded6a134ea173a66413d221a
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 16:25:06 2026 +0100

    gnu: r-r-rsp: Move to (gnu packages cran).
    
    * gnu/packages/statistics.scm (r-r-rsp): Move from here...
    * gnu/packages/cran.scm (r-r-rsp): ...to here.
    
    Change-Id: I191366043b56b99f7cac306e195dd15e51ab6cd0
---
 gnu/packages/cran.scm       | 41 +++++++++++++++++++++++++++++++++++++++++
 gnu/packages/statistics.scm | 41 -----------------------------------------
 2 files changed, 41 insertions(+), 41 deletions(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index a3b55c586c..ef4ee6c1c0 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6473,6 +6473,47 @@ making definition of methods as simple as possible with 
a minimum of
 maintenance for package developers.")
     (license license:lgpl2.1+)))
 
+(define-public r-r-rsp
+  (package
+    (name "r-r-rsp")
+    (version "0.46.0")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "R.rsp" version))
+              (sha256
+               (base32
+                "1frkgjc2mzvjnay8g5nky1bvxv60wvsypmmdj6mbsfjnzq7ni7qs"))))
+    (properties `((upstream-name . "R.rsp")))
+    (build-system r-build-system)
+    (arguments
+     (list
+      ;; Vignettes require r-r-devices, which uses r-r-rsp.
+      #:test-types '(list "tests")
+      #:phases
+      '(modify-phases %standard-phases
+         (add-after 'unpack 'set-HOME
+           (lambda _ (setenv "HOME" "/tmp")))
+         (add-after 'unpack 'delete-broken-test
+           (lambda _
+             ;; The multi,selfcontained.R tests fail because r-r-devices is
+             ;; missing.  It depends on r-r-rsp, so we can't add it.
+             (delete-file "tests/multi,selfcontained.R"))))))
+    (propagated-inputs
+     (list r-digest r-r-cache r-r-methodss3 r-r-oo r-r-utils))
+    (home-page "https://github.com/HenrikBengtsson/R.rsp";)
+    (synopsis "Dynamic generation of scientific reports")
+    (description
+     "The RSP markup language provides a powerful markup for controlling the
+content and output of LaTeX, HTML, Markdown, AsciiDoc, Sweave and knitr
+documents (and more), e.g. @code{Today's date is <%=Sys.Date()%>}.  Contrary
+to many other literate programming languages, with RSP it is straightforward
+to loop over mixtures of code and text sections, e.g.  in month-by-month
+summaries.  RSP has also several preprocessing directives for incorporating
+static and dynamic contents of external files (local or online) among other
+things.  RSP is ideal for self-contained scientific reports and R package
+vignettes.")
+    (license license:lgpl2.1+)))
+
 (define-public r-r6
   (package
     (name "r-r6")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index e866ec0ce0..65e84e0198 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -2203,47 +2203,6 @@ message passing.")
 developing R packages.")
     (license license:lgpl2.1+)))
 
-(define-public r-r-rsp
-  (package
-    (name "r-r-rsp")
-    (version "0.46.0")
-    (source (origin
-              (method url-fetch)
-              (uri (cran-uri "R.rsp" version))
-              (sha256
-               (base32
-                "1frkgjc2mzvjnay8g5nky1bvxv60wvsypmmdj6mbsfjnzq7ni7qs"))))
-    (properties `((upstream-name . "R.rsp")))
-    (build-system r-build-system)
-    (arguments
-     (list
-      ;; Vignettes require r-r-devices, which uses r-r-rsp.
-      #:test-types '(list "tests")
-      #:phases
-      '(modify-phases %standard-phases
-         (add-after 'unpack 'set-HOME
-           (lambda _ (setenv "HOME" "/tmp")))
-         (add-after 'unpack 'delete-broken-test
-           (lambda _
-             ;; The multi,selfcontained.R tests fail because r-r-devices is
-             ;; missing.  It depends on r-r-rsp, so we can't add it.
-             (delete-file "tests/multi,selfcontained.R"))))))
-    (propagated-inputs
-     (list r-digest r-r-cache r-r-methodss3 r-r-oo r-r-utils))
-    (home-page "https://github.com/HenrikBengtsson/R.rsp";)
-    (synopsis "Dynamic generation of scientific reports")
-    (description
-     "The RSP markup language provides a powerful markup for controlling the
-content and output of LaTeX, HTML, Markdown, AsciiDoc, Sweave and knitr
-documents (and more), e.g. @code{Today's date is <%=Sys.Date()%>}.  Contrary
-to many other literate programming languages, with RSP it is straightforward
-to loop over mixtures of code and text sections, e.g.  in month-by-month
-summaries.  RSP has also several preprocessing directives for incorporating
-static and dynamic contents of external files (local or online) among other
-things.  RSP is ideal for self-contained scientific reports and R package
-vignettes.")
-    (license license:lgpl2.1+)))
-
 (define-public r-tidyselect
   (package
     (name "r-tidyselect")

Reply via email to